By center the whole thing, I gather your menu bar has been modified to span less than 100% of the page horizontally? Only then would centering it make any difference visually, as otherwise the menu bar is touching both ends of the page already. Anyhow, assuming that's true, inside ddsmoothmenu.css, try the changes in red to center the menu bar:
Code:
.ddsmoothmenu{
font: bold 12px Verdana;
background: #414141; /*background of menu bar (default state)*/
width: 95%;
margin: auto;
}
Now, if by center you actually mean each of the top menu items so they appear centered within the menu bar, there's no easy way to do this unfortunately. This is due to the menu's use of "float:left" inside each LI element to achieve its look. If you remove this rule from the CSS then it becomes easy, though the look of the menu falls apart without additional changes to the CSS.
Bookmarks