Twitter’s bootstrap .span classes are floated to the left so they won’t center by usual means. So, if you want it to center your span simply add float:none to your #main rule.
CSS
#main {
margin:0 auto;
float:none;
}
Twitter’s bootstrap .span classes are floated to the left so they won’t center by usual means. So, if you want it to center your span simply add float:none to your #main rule.
CSS
#main {
margin:0 auto;
float:none;
}