I am trying to edit the template of my Joomla site and am trying to create 2 module positions side by side (in the body area of the template). How can I do this?
example
Thanks
Post edited by: fijian, at: 2007/05/10 14:22
The administrator has disabled public write access.
#1483
Graphixx(User)
Junior Boarder
Posts: 5
Re:2 modules side by side 2007/05/12 15:43
Karma: 0  
You can try by adding this code where you would like the modules to appear:
Code:
<!-- Your Place -->
<table class="contentpane" border="0" cellpadding="2" cellspacing="0" width="100%">
<tr>
<td width="50%" valign="top"><?php mosLoadModules ( "your module position here" ); ?></td>
<td width="50%" valign="top"><?php mosLoadModules ( "your module position here" ); ?></td>
</tr>
</table><p />
</div>
</div>
<!-- END: Your place -->
Post edited by: Graphixx, at: 2007/05/12 15:45
The administrator has disabled public write access.