Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
post some code here – Sergio Tulentsev Dec 22 '11 at 12:43
1  
Where's the code? What have you tired? – Scott Dec 22 '11 at 12:44

1 Answer

up vote 3 down vote accepted

The div and ul are automatically expanding to 100% width by default.

You need to set the div to display: inline-block; this will make the width the same as its children content.

And then text-align: center the parent to center the div.

share|improve this answer
i would add more of a description but im on my lunch break... its mac donalds thursday today:P – AlexMorley-Finch Dec 22 '11 at 12:44
Nah, that's perfect. Thanks, it works! – John Dec 22 '11 at 12:48
Yeah, I'll do it in 3 minutes. It says I can't do it now. – John Dec 22 '11 at 12:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.