MyBB Community Forums

Full Version: center contents of navbar
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Here is the css for the navbar in the header. 

<ul id="menu">			 
    <li><a href="{$mybb->settings['bburl']}/index.php">Forum</a></li>
    <li><a href="{$mybb->settings['bburl']}/memberlist.php">Member List</a></li>
	<li><a href="http://legendforums.net/showthread.php?tid=6">Upgrades</a></li>
	<li><a href="{$mybb->settings['bburl']}/awards.php">Awards</a></li>
</ul> 


Im sure its obvious but I am unable to figure out how to center the contents of the navbar.
What do I do?
Change
#menu li {
    float: left;
    display: block;
    position: relative;
    z-index: 500;
    margin: 0 1px;
    line-height: 33px;
}

with

#menu li {
    display: inline-block;
    position: relative;
    line-height: 33px;
}
Oh that worked! Thanks