chevydrvr
Member
Posted 2 years ago #
I removed everything involving the search box because I don't want it there anymore, and now I want to center the navigation. When I go to the css file and go to navigation and put in center, it moves it to the center as if the search box is still there. I removed everything in the header file that mad the search box go there. What do I do?
Without a link to your site, I doubt anyone will be able to help you very much.
chevydrvr
Member
Posted 2 years ago #
Find the following code in style.css:
#header #menu {
float:left;
margin:70px 80px 0 0;
}
and change it to this:
#header #menu {
float:left;
margin:70px 80px 0 170px;
}
adjust the 170 value to fine tune.
chevydrvr
Member
Posted 2 years ago #
thank you very much! ill try that.
chevydrvr
Member
Posted 2 years ago #
IT worked! thanks so much!