Gap at top of browser

Submitted by williamrouse on Fri, 12/11/2009 - 18:20

As I was laying out my first site with BlueTrip I noticed in my first sketch and then in the index file that comes with the zip file that there is a gap at the top of the web page. What is the reason for this?
Thanks!
WBR

This could be due to a lot of reasons. Your best bet is to get to know and love Firebug, a Firefox addon which makes it really easy to debug stuff like this. It sounds like there might be some padding or margin on the body tag in which case you could do something like this in style.css:

body {
padding-top: 0;
margin-top: 0;
}

But that's just a guess.

Thanks!