Click to See Complete Forum and Search --> : adding an image right at the very very very top of the page?


mostdef56
06-02-2003, 12:34 PM
hi people, can someone please tell me how i can add an image right at the very top of page like on the http://www.htmlgoodies.com homepage. Look at the 'digital computer expo' advert, it is nearly touching the top of the page. Everytime i add an image there is always the same set space between the top of the image and the top of the page, is there a way i can nudge it up a bit?thanks

pyro
06-02-2003, 12:46 PM
Yes, with this css:

<style type="text/css">
body {
margin: 0px;
/*Or, uncomment the below line to only change the top margin*/
/*margin-top: 0px;*/
}
</style>

mostdef56
06-02-2003, 12:51 PM
wow,cool thank you:D

pyro
06-02-2003, 01:03 PM
You're welcome... :)