Reputation: 551
I and trying to move the navigation menu (which is a list) to the left side below the slogan and logo.I have tried various things but somehow the problem is not being solved. Despite my efforts the navigation bar seems to float besides the logo but not under it as it should. Here is the link http://contestlancer.com/greenFields/
Any help would be appreciated Regards, Ahmar
Upvotes: 0
Views: 50
Reputation: 24703
Remove the float from ul#top-menu
and then adjust the left margin on the slogan to
p#slogan {
margin-left:-185px;
}
Upvotes: 0
Reputation: 1550
This moved the menu under the slogan for me:
ul#top-menu {
float: none;
}
Upvotes: 2