How do I center my navigation bar items?
-
I’m wondering if someone can help me figure out how to center my navigation bar items on my blog. I’m using the Chateau theme. Thanks.
The blog I need help with is: (visible only to logged in users)
-
Try adding the following CSS:
#menu { width: 960px; text-align: center; } #menu li { float: none; display: inline-block; } -
Oops, the previous CSS screwed things a bit on smaller screens, so try this one instead:
#menu { width: 100%; text-align: center; } #menu li { float: none; display: inline-block; } -
- The topic ‘How do I center my navigation bar items?’ is closed to new replies.