View Single Post
  #2 (permalink)  
Old Nov 26th, 2006, 14:11
stressiton stressiton is offline
New Member
Join Date: Nov 2006
Location: Finland
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Re: white space at top of page

Get to code view and put

<style type="text/css">
html, body {
margin: 0px;
padding: 0px;
}
</style>

anywhere between the <head> and </head> tags. It removes any padding or margins the document has resulting in a document that starts from the upper left corner.
Reply With Quote