Home › Forums › CSS › Nav lists won’t space correctly!!! › Re: Nav lists won’t space correctly!!!
May 18, 2009 at 9:01 pm
#57754
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;
}
float:right;
}
#header ul li {
float: right;
}
TO
Code:
#header ul {
float:left;
}
#header ul li {
float: left;
}
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.