I am adding a block to Blank T3-BS3 and I have a question. The block I am adding will contain two Positions.
In t3v2 the size for each position was set by using the variable “span 4” for example:
<div class=”left-slideshow span8<?php $this->_c(‘slideshow’)?>”>
In t3v3 the size for each position is set by using (numbers are not accurate):
<div class=”t3-sidebar t3-sidebar-1 col-xs-6 col-md-3 col-md-pull-6 <?php $this->_c($vars[‘sidebar1’]) ?>”>
How do I convert from the old t3v2 size of span to the new t3v3 span size?
Ultimately, I wish to have a span8 position on the left and a span4 position on the right.
An example can be found at http://seacrestcockers.com, with the slideshow on the left and a module position on the right.