PDA

View Full Version : probably asked a million times before


turbanhead
February 24th, 2006, 04:19
I did a search in the forums and couldn't find the answer to this. How do I get rid of the white space above the header image?

Mavto
February 24th, 2006, 05:09
Ok, this work for me. In the style.css go to this line:
#page {
background: white;
text-align: left;
margin: 0 auto;
padding: 20px 0 10px;
position: relative;
/* The entire template's width is set in this class. */
width: 780px;
_width: 740px;
border: 0px solid #ddd;
border-top: none;

Ok, now change in padding . In my style I use this:
#page {
background: white;
text-align: left;
margin: 0 auto;
padding: 0px;
position: relative;
/* The entire template's width is set in this class. */
width: 780px;
_width: 740px;
border: 0px solid #ddd;
border-top: none;


I hope this can help you, good luck

turbanhead
February 24th, 2006, 05:20
it worked thanks!