Not sure how this will work out with everything else, but it centers the menu items. Get rid of float and add display: inline-block to (around line 90 in cisnew/cisstyles.css):
Code:
.top-nav li {
/* float:left; */
list-style:none outside none;
cursor:pointer;
display: inline-block;
}
And add text-align: center to (same file, around line 751):
Code:
nav.fixed, .fixed nav {
padding: 1em 0;
text-align: center;
}
Oh, and I think you may also want to add this style to the stylesheet (to keep the current look for the drop downs):
Code:
li.submenu li {
display: list-item;
text-align: left;
}
Bookmarks