css - Bootstrap isn't responding -



css - Bootstrap isn't responding -

i created wp theme template has bootstrap "installed" , ready go. utilize of projects , have never had problem.

for reason, particular website isn't responding when resize browser screen.

view here: http://staging.ceobusinessalliance.com/about/

i'm trying troubleshoot issue can't find wrong. here basics of code:

<div class="row"> <div class="col-xs-1"></div> <div class="col-xs-5"></div> <div class="col-xs-5"></div> <div class="col-xs-1"></div> </div> <div class="container"> <div class="row"> <div class="col-sm-1"></div> <div class="col-sm-5"></div> <div class="col-sm-5"></div> <div class="col-sm-1"></div> </div> <div class="row"> <div class="col-sm-12"></div> </div> <div class="row"> <div class="col-sm-12"></div> </div> <div class="row"> <div class="col-sm-1"></div> <div class="col-sm-10"></div> <div class="col-sm-1"></div> </div> </div>

thanks in advance!

you overwriting bootstrap css line of code in style.css file, gives website fixed width of 1080px.

.container { width: 1080px !important; padding: 0; }

you need remove width: 1080px !important;

css wordpress twitter-bootstrap responsive-design

Comments

Popular posts from this blog

php - Android app custom user registration and login with cookie using facebook sdk -

django - Access session in user model .save() -

php - .htaccess Multiple Rewrite Rules / Prioritizing -