iJoomla Forum

iJoomla Magazine => Suggestions/Ideas => Topic started by: sorema on March 22, 2008, 08:24:07 AM



Title: banner position in layout 9
Post by: sorema on March 22, 2008, 08:24:07 AM
hi, i'm using layout9 for my website  (http://www.il-dono.org) i'd like to insert a banner between horizontal zone and vertical zone. is it possible?


Title: Re: banner position in layout 9
Post by: RicardoCorai on March 24, 2008, 01:36:37 PM
Hi sorema,
Edit your layout and remplace for something like that:
Code:
<style type="text/css" media="screen">
@import url( {LAYOUT_PATH}/css/{CSS} );
</style>

<table width='100%'>
<tr>
<td colspan='2' >{MAGAZINE_NAME}{MAGAZINE_DESC}</td>
</tr>
<tr>
<td valign='top' width='100%'>
<table width='100%'>
<tr>
<td valign='top' width='50%'>{ZONE_2}</td>
<td valign='top' width='50%' style="padding-top:4px;">{EDITION_NAME}{EDITION_DESC}{EDITION_IMAGE}</td>
</tr>
</table>
</td>
</tr>
<tr>
<td valign='top' width='100%'>YOUR BANNER HERE</td>
</tr>
<tr>
<td valign='top' width='100%'>{ZONE_1}</td>
</tr>
</table>

</body>
</html>
Best regards,