gurdip1
Hi
Try this
open /tpls/default.php
Find this code
<div class="t3-wrapper"> <!-- Need this wrapper for off-canvas menu. Remove if you don't use of-canvas -->
<div class="container">
<?php $this->loadBlock('topbar') ?>
<?php $this->loadBlock('header') ?>
<?php $this->loadBlock('mainnav') ?>
<?php $this->loadBlock('slideshow') ?>
<?php $this->loadBlock('spotlight-1') ?>
<?php $this->loadBlock('spotlight-2') ?>
<?php $this->loadBlock('sections') ?>
<?php $this->loadBlock('mainbody') ?>
<?php $this->loadBlock('spotlight-3') ?>
<?php $this->loadBlock('navhelper') ?>
<?php $this->loadBlock('spotlight-4') ?>
<?php $this->loadBlock('footer') ?>
</div>
</div>
replace it with
<div class="t3-wrapper"> <!-- Need this wrapper for off-canvas menu. Remove if you don't use of-canvas -->
<?php $this->loadBlock('topbar') ?>
<?php $this->loadBlock('header') ?>
<?php $this->loadBlock('mainnav') ?>
<?php $this->loadBlock('slideshow') ?>
<div class="container">
<?php $this->loadBlock('spotlight-1') ?>
<?php $this->loadBlock('spotlight-2') ?>
<?php $this->loadBlock('sections') ?>
<?php $this->loadBlock('mainbody') ?>
<?php $this->loadBlock('spotlight-3') ?>
<?php $this->loadBlock('navhelper') ?>
<?php $this->loadBlock('spotlight-4') ?>
<?php $this->loadBlock('footer') ?>
</div>
</div>
I moved the container below slideshow, so the container width will not apply on it.
Regards