How do I center the text in the navigation here?
I tried adding text-align:center to #xg_navigation and #xg_navigation ul and no dice.
text-align:center
The div and ul are automatically expanding to 100% width by default.
div
ul
You need to set the div to display: inline-block; this will make the width the same as its children content.
display: inline-block;
And then text-align: center the parent to center the div.
text-align: center
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
1 year ago
viewed
48 times
active