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. Joao
  2. General Discussion
  3. Friday, 22 November 2013
  4.  Subscribe via email
Hello guys, im desesperating already cause I don't know how can i add a box like "scoreboard" at the left of the "component". Can't see where I can change component width and put a new module position at right with span 3.

http://i.imgur.com/zT0kZ4R.png

The code for the block is:
<?php
/**
* @package T3 Blank
* @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/

defined('_JEXEC') or die;
?>

<?php if ($this->checkSpotlight('spotlight-2', 'position-5, position-6, position-7, position-8')) : ?>

<div class="container t3-sl t3-sl-2">
<?php
$this->spotlight ('spotlight-2', 'position-5, position-6, position-7, position-8')
?>
<jdoc:include type="component"/>


</div>


<?php endif ?>


Thanks in advance.
Attachments (1)
Comment
There are no comments made yet.
Accepted Answer Pending Moderation
0
Votes
Undo
Hi Joao,

You should take a look at the grid system at bootstrap document.
http://getbootstrap.com/2.3.2/scaffolding.html#gridSystem

for simple, you need to put the component and the module in a span div tag.
<div class="row">
<div class="span3"><jdoc:include type="modules" name="<?php $this->_p('scoreboard') ?>" style="raw" /></div>
<div class="span9"><jdoc:include type="component"/></div>
</div>


Hope it helps,

Regards
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.