We moved to new unified forum!

Please post all new support queries in our New Forum.

T3 Community Discussion & Support

Let's build the best free Joomla template framework, together!
  1. William Slaughter
  2. Sherlock Holmes
  3. General Discussion
  4. Tuesday, 29 July 2014
  5.  Subscribe via email
for the t3-bs-blank template I see a postion - mast_col but I don't see it available in the layout. Where is this position? I do have sidebar 2 active but not sidebar1.
Comment
There are no comments made yet.
Accepted Answer Pending Moderation
0
Votes
Undo
Hi William,

The position is defined in the following blocks: mainbody-content-left.php, mainbody-content-right.php, one-sidebar-left-with-mastcol.php and one-sidebar-right-with-mastcol.php. By default, those blocks are not used, you can load the blocks to the layout you want to use and you will get the mast_col position in the layout.

Here is a sample block:

<div id="t3-mainbody" class="container t3-mainbody">
<div class="row">

<!-- MAIN CONTENT -->
<div id="t3-content" class="t3-content col-xs-12 col-sm-8 col-sm-push-4 col-md-9 col-md-push-3">
<?php if($this->hasMessage()) : ?>
<jdoc:include type="message" />
<?php endif ?>
<jdoc:include type="component" />
</div>
<!-- //MAIN CONTENT -->

<div class="t3-sidebar t3-sidebar-left col-xs-12 col-sm-4 col-sm-pull-8 col-md-3 col-md-pull-9">
<div class="row">

<!-- MASSCOL 1 -->
<?php if ($vars['mastcol']) : ?>
<div class="t3-mastcol t3-mastcol-1 <?php $this->_c($vars['mastcol']) ?>">
<jdoc:include type="modules" name="<?php $this->_p($vars['mastcol']) ?>" style="T3Xhtml" />
</div>
<?php endif ?>
<!-- //MASSCOL 1 -->

<!-- SIDEBAR LEFT -->
<?php if ($vars['sidebar']) : ?>
<div class="t3-sidebar col-xs-12 <?php $this->_c($vars['sidebar']) ?>">
<jdoc:include type="modules" name="<?php $this->_p($vars['sidebar']) ?>" style="T3Xhtml" />
</div>
<?php endif ?>
<!-- //SIDEBAR LEFT -->
</div>
</div>

</div>
</div>


Gardner.
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 1
  • Page :
  • 1


There are no replies made for this post yet.
However, you are not allowed to reply to this post.