bassjobsen / woocommerce-twitterbootstrap

This plugin wraps your Woocommerce views in the Twitter's Bootstrap Grid. Makes your views full responsive. No changes to your theme or other plugins needed.
85 stars 34 forks source link

check the grid for col-*-12 classes #1

Closed bassjobsen closed 10 years ago

bassjobsen commented 11 years ago

See: http://stackoverflow.com/questions/18428450/bootstrap-3-layout-with-panel-display-not-correct-on-small-device/18433782 and https://github.com/twbs/bootstrap/issues/10152#issuecomment-23247254

bassjobsen commented 10 years ago

Since version 1.1 all grids have responsive columns resets (http://getbootstrap.com/css/#grid-responsive-resets). Note the grid is not spit in rows now. All items are add to the same row. This seems to fix some issue in the case one column taller then the others in the same row and col-*12 columns. For more information see: https://github.com/twbs/bootstrap/issues/10938

The above also helps to fix issue #2. The columns for all grids don't have to sum up to 12 any more. Instead of col-xs-12 col-sm-12 col-md-4 also col-xs-12 col-sm-6 col-md-4 will be allowed.