• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Some bootstrap questions.

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?
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.
 
1. no problem with doing this, just so long as you don't go over the 12 you should render fine.

2. panel is the higher level construct, container is the low level construct. Panel is like a table container is like a div. Which you use and where you use it is up to you.
 
Back
Top