My question is how you can center the pills?
I\'ve tried to add center block around and also to change the float:left to float:center but n
float:left
float:center
If you want the pills to be centered instead of left aligned you will need to change the css. You will need to specifiy a width and change the margin to be auto. For example:
.tabs, .pills { margin: 0 auto; padding: 0; width: 400px; }