-
AuthorPosts
-
conforturis Friend
conforturis
- Join date:
- April 2010
- Posts:
- 256
- Downloads:
- 0
- Uploads:
- 58
- Thanks:
- 59
- Thanked:
- 7 times in 1 posts
November 19, 2013 at 11:05 am #192376Hi,
In template Teline IV for new T3 framawork, how can undo the positions “home-feature-2” and “home-feature-3” just in one position with width 100%?
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
November 21, 2013 at 8:18 am #512950Hi conforturis,
You can change the with to 100% by opening file: templatesja_teline_ivtplsblocksmainbody.php and look for this code:
<div class="feature-module row-fluid">
<?php if ($this->countModules('home-feature-2')) : ?>
<div class="home-feature-2 span6<?php $this->_c('home-feature-2')?>">
<jdoc:include type="modules" name="<?php $this->_p('home-feature-2') ?>" style="T3Xhtml" />
</div>
<?php endif ?>
<?php if ($this->countModules('home-feature-3')) : ?>
<div class="home-feature-3 span6<?php $this->_c('home-feature-3')?>">
<jdoc:include type="modules" name="<?php $this->_p('home-feature-3') ?>" style="T3Xhtml" />
</div>
<?php endif ?>
</div>
you can replace it with:
<div class="feature-module row-fluid">
<?php if ($this->countModules('home-feature-2')) : ?>
<div class="home-feature-2 <?php $this->_c('home-feature-2')?> <?php echo $home-feature-2 ? 'span6' : 'span12' ?>">
<jdoc:include type="modules" name="<?php $this->_p('home-feature-2') ?>" style="T3Xhtml" />
</div>
<?php endif ?>
<?php if ($this->countModules('home-feature-3')) : ?>
<div class="home-feature-3 <?php $this->_c('home-feature-3')?><?php $this->_c('home-feature-3')?> <?php echo $home-feature-2 ? 'span6' : 'span12' ?>">
<jdoc:include type="modules" name="<?php $this->_p('home-feature-3') ?>" style="T3Xhtml" />
</div>
<?php endif ?>
</div>
In case you don’t want to use home-feature-3 position, you can go to backend > template manager > Layout tab and set it to None: http://prntscr.com/25njld
1 user says Thank You to Saguaros for this useful post
AuthorPostsViewing 2 posts - 1 through 2 (of 2 total)This topic contains 2 replies, has 2 voices, and was last updated by Saguaros 11 years, 1 month ago.
We moved to new unified forum. Please post all new support queries in our New Forum
increase the width of the position feature-home-2
Viewing 2 posts - 1 through 2 (of 2 total)