Ahmar Ali
Ahmar Ali

Reputation: 551

Move the navigation to the left

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

Answers (2)

Kevin Lynch
Kevin Lynch

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

eclipsis
eclipsis

Reputation: 1550

This moved the menu under the slogan for me:

ul#top-menu {
    float: none;
}

Upvotes: 2

Related Questions