John
John

Reputation: 627

How do I center the text in the navigation?

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.

Upvotes: 0

Views: 73

Answers (1)

AlexMorley-Finch
AlexMorley-Finch

Reputation: 6955

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.

Upvotes: 3

Related Questions