Quote:
I would like to add responsive content to some static pages of a 4.5.5 site with Reboot installed. The content look/layout would be similar to the x-cart's home page main content, eg, having 2 columns layout in desktop screens, with all the text headings and graphics. What would be the most efficient way to create it?
|
In reBOOT v1.x you just have to utilise the Bootstrap 2 responsive grid framework, which is made up of 12 columns...
http://getbootstrap.com/2.3.2/scaffolding.html
Code:
<div class="row-fluid">
<div class="span6">Col 1</span>
<div class="span6">Col 2</span>
</div>
reBOOT v2 uses Bootstrap 3, so the grid coding is slightly different...
http://getbootstrap.com/css/#grid
Code:
<div class="row">
<div class="col-md-6">Col 1</span>
<div class="col-md-6">Col 2</span>
</div>
I don't advise using Dreamweaver when editing Smarty templates.