2 Column Page Layout in Dashboard
Permalink
I'm trying to figure out what the best way to do a 2-column layout for a single page in the dashboard is. This should be for 5.5.x.
What's the best structure / code for doing this?
What's the best structure / code for doing this?
just divide a dashboard pane down the center?
Hey let me know when you figure it out :)
The dashboard uses the bootstrap on a 16 column grid from twitter bootstrap of version 1.4, then new version 2.0 defaults to a 12 point grid. In my attached image you can see i got it pretty close, but it actually uses an 8 and a 7 or a 9 and a 6 or something like that.
Basically is a <div="container">
<div class="row">
<div class="span8">1</div>
<div class="span8">2</div>
</div>
</div>
You'll want a copy of the docs for 1.4 which you will have to download, the 2.0 version is all that is online.
The dashboard uses the bootstrap on a 16 column grid from twitter bootstrap of version 1.4, then new version 2.0 defaults to a 12 point grid. In my attached image you can see i got it pretty close, but it actually uses an 8 and a 7 or a 9 and a 6 or something like that.
Basically is a <div="container">
<div class="row">
<div class="span8">1</div>
<div class="span8">2</div>
</div>
</div>
You'll want a copy of the docs for 1.4 which you will have to download, the 2.0 version is all that is online.
also pay attention to the optional 4th parameter on the dashboard helper for the header and the footer, without the trues there you get what I think is a "clean" grid that you can maybe sneak two 8s into.
Again i didn't want to waste a whole lot of time really getting to the bottom of this, i got it working well enough then moved on.
Again i didn't want to waste a whole lot of time really getting to the bottom of this, i got it working well enough then moved on.