Milkymoon7896
02-23-2003, 05:33 AM
Hi I am making a website layout for a blog webpage. And when i try to make my header image reach the top the page ot falls short and u can see my lined background, which u are not uppse to see till after the header image, unfortunately this layout has not been uploaded to the webyet but if you know what I mean, please help ^_^ Thanks a bunch
epolady
02-23-2003, 06:12 AM
may we see the coding that you're using or perhaps the page that it's on? Thank you.
Did you set the page margins to zero?
<body topmargin=0 leftmargin=0 marginheight=0 marginwidth=0>
epolady
02-23-2003, 07:04 AM
Actually, it's better to use something like this
<style type="text/css">
body{
margin : 0;
padding : 0;
</style>
instead of the topmargin="0", etc.