Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm going nuts trying to figure out how to center the purple text link "buttons" on this page:

http://bit.ly/TrfmXk

I've tried all the usual tricks: margin: 0 auto, etc. but with the design being responsive and it only being contained in a

, I'm at a loss. Any tips would be appreciated.

share|improve this question

1 Answer

Apply this CSS to those links, for a start.

display: block;
width: 50%;
margin: 0 auto !important;

Had to put !important on the margin, probably to override another rule somewhere else. You can change that width to whatever you'd like, as well.

share|improve this answer
You have made me a very happy man. Thank you! – user1795940 Nov 3 '12 at 4:59

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.