Hi
Well you can try doing like this:
Open ../gk_yourshop/layouts/default.php and find this line:
- Code: Select all
<body id="bd" class="fs<?php echo $this->getParam(GK_TOOL_FONT);?> <?php echo $this->browser();?> <?php echo 'style'.$template_style; ?>">
replace it with:
- Code: Select all
<body id="bd" class="fs<?php echo $this->getParam(GK_TOOL_FONT);?> <?php echo $this->browser();?> <?php echo 'style'.$template_style; ?>">
<div id="bottom-bg" class="main">
At the end of same page, find this lines:
- Code: Select all
<?php if($this->_tpl->params->get('t3_logo')) : ?>
<a href="http://wiki.joomlart.com/wiki/JA_Template_Framework/Overview" target="_blank" id="t3_logo">Powered by T3 Framework</a>
<?php endif; ?>
</div>
</div>
and replace with
- Code: Select all
<?php if($this->_tpl->params->get('t3_logo')) : ?>
<a href="http://wiki.joomlart.com/wiki/JA_Template_Framework/Overview" target="_blank" id="t3_logo">Powered by T3 Framework</a>
<?php endif; ?>
</div>
</div>
</div>
Now open template.css file and add this line:
- Code: Select all
#bottom-bg {width: 100%; background: transparent url('../images/yourimage.jpg') no-repeat 50% bottom;}
That should do the trick.
Cheers
Cheers