Hi
You can open this file:
root/templates/ja_autoshop/tpls/blocks/home.php
Line 19-25:
<?php if ($this->countModules('section')) : ?>
<div id="t3-section" class="t3-section-wrap t3-section">
<jdoc:include type="modules" name="<?php $this->_p('section') ?>" style="T3Xhtml" />
<?php $this->loadBlock('tabs') ;?>
</div>
<?php endif ?>
change it to:
<?php if ($this->countModules('section')) : ?>
<div id="t3-section" class="t3-section-wrap t3-section">
<?php $this->loadBlock('tabs') ;?>
<jdoc:include type="modules" name="<?php $this->_p('section') ?>" style="T3Xhtml" />
</div>
<?php endif ?>