I think there are at least two ways to do this here...
1. wrap the #nav in another container that can be centered...
2. cheat a little and set the left margin so that it looks centered.
for 1 - don't know for sure about this or how it would look in code.
for 2 - find the first #nav in the css and make it look like this... changing the 200px as needed.
| Code: |
#nav {
margin-left: 200px;
}
|
this isn't the best way to do it as it won't adjust with new menu items... but if your in a crunch it should work until someone comes along and lets us know the correct way.