Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Nav lists won’t space correctly!!! Re: Nav lists won’t space correctly!!!

#57754
John Harris
Member

Your problem is

Code:
margin-top: -30px;

it would make more sense to use

Code:
margin-bottom: 30px;

OR

Code:
margin:0px 0px 30px 0px;

Also once the spacing is corrected you will notice that your navigation will appear "backwards" like

Code:
ABOUT US FAQS FEATURES HOME

To fix this u will need to change

Code:
#header ul {
float:right;
}
#header ul li {
float: right;
}

TO

Code:
#header ul {
float:left;
}
#header ul li {
float: left;
}

You may want to clean up the code some more though. It will definitely fix some of your problems down the road.