I created a spotlight: zz-spotlight3.php in blocks
<?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-3', 'full-width-position')) : ?>
<!-- SPOTLIGHT 3 -->
<div class="container spot-3 t3-sl t3-sl-2">
<?php $this->spotlight('spotlight-3', 'full-width-position') ?>
</div>
<!-- //SPOTLIGHT 3 -->
<?php endif ?>
and zz-default.php in tpls
...
<?php $this->loadBlock('mainnav') ?>
<?php $this->loadBlock('zz-spotlight-3') ?>
<?php $this->loadBlock('spotlight-1') ?>
...
But I'm having this problem as you can see in the attachment ... the width of the slider is going over 1170px when i remove the padding-left/right of the container everything is fine but in mobile it's not...
I'm using LayerSlider as a module but I tried other modules all with the same problem...
Any help would be appreciated.
Thanks