Problems with my css layout.?

Ok, just found this in your css
You don't need a <style> tag in external stylesheets. Remove it and adjust the top and left settings accordingly.

Change this
<style>
#picture{
positionabsolute; left-30px; top -30px;
}

to this
#picture {
positionabsolute;
top 0px;
}

and get rid of the closing style tag at the end of the source. always remember to validate your css and html before you post!
 
Thanks for sharing this nice tips to me. I use this tips in my website. Recently I made web application in php language. This css layout is also important for page to display in browser.
 
Back
Top