Quote Originally Posted by shopyoungway View Post
ok i am getting very scared and over stressed i tried not to post but hey give up, im no good with CSS. OK if you look at shopyoungway.com in IE7 not tested in 6 you will see white border just under the menu after i removed the top menu system the home login search in header etc. how can i fix this.
also why can't i get the dang logo to work its all bunched up etc. in bot ie and firefox and i cannot figure out what i am doing wrong. i have read almost every page in this forum to help but cannot figure it out can someone please help me i want the logo to sit to the left like it is but with atleast 5 pixels from the top not resting at the top and at the full width and length i have created it at.

any help would be apreciated and thanks for this great design
Those are both really easy fixes. The logo issue is also addressed in the readme.tx, but all you have to do is remove this section of the stylesheet:

#logo {
width:19.1em /* To prevent the logo from resizing, simply delete or comment out this section */
}

To have padding above the logo, just do this:

#logo {
padding-top:5px;
}

And to adjust where the blue stripey half background sits, you can adjust this:

body {
background:url(../images/site-bg-blue.gif) 0 9em repeat-x;
}

(change the 9em to 8em)