well, that is:
i want to link the image that is in the background of my webpage or get a joomla positions in the sides of the templates to put some banners.
thank your in advice.
<positions>
<!-- Template specific Module Positions -->
(...)
<position>bleft</position>
<position>bright</position>
// definitions of module positions default styles
$GK_TEMPLATE_MODULE_STYLES = array(
(...)
'bleft' => 'none',
'bright' => 'none',
<body<?php echo $tpl_page_suffix; ?>>
<!--[if IE 6]>
<div id="gkInfobar"><a href="http://browsehappy.com"><?php echo JText::_('TPL_GK_LANG_IE6_BAR'); ?></a></div>
<![endif]-->
<?php if($this->modules('bleft')) : ?>
<div id="gkBleft">
<jdoc:include type="modules" name="bleft" style="<?php echo $this->module_styles['bleft']; ?>" />
</div>
<?php endif; ?>
<?php if($this->modules('bright')) : ?>
<div id="gkBright">
<jdoc:include type="modules" name="bright" style="<?php echo $this->module_styles['bright']; ?>" />
</div>
<?php endif; ?>
#gkBleft {
left: 50%;
width: 140px;
height: 600px;
position: fixed !important;
right: 0;
display: block;
z-index: 1000;
margin-left: -623px;
margin-top: 70px;
}
#gkBright {
left: 50%;
width: 140px;
height: 600px;
position: fixed !important;
right: 0;
display: block;
z-index: 1000;
margin-left: 497px;
margin-top: 70px;
}
div.banneritem {
border-top: none;
}