Maximilian
Lifer
I love bootstrap so far, its great! I got a few questions though...
1. I gather theres meant to be 12 columns to a row, but is it valid to do this?
Or should i make another blank "col-sm-8" just so it adds up to 12? Seems to work fine as is but would be good to know.
2. Is there any reason to use a new container over a new panel? Ive been using 1 container for the whole page and separating it out with panels so far and its working fine. I did initially have multiple containers until I found the panel class.
1. I gather theres meant to be 12 columns to a row, but is it valid to do this?
HTML:
<div class="container">
<div class="row">
<div class="col-sm-4">
<!-- stuff goes here-->
</div>
</div>
</div>
Or should i make another blank "col-sm-8" just so it adds up to 12? Seems to work fine as is but would be good to know.
2. Is there any reason to use a new container over a new panel? Ive been using 1 container for the whole page and separating it out with panels so far and its working fine. I did initially have multiple containers until I found the panel class.