Quote:
Originally Posted by jedimaster
Nice mod- installed it tonight. Was the question of how to place the column on the right ever addressed?
|
Just change the footer piece as follows:
From:
Code:
<!-- Sidebar -->
<!-- Update -->
</td>
</tr>
</table>
<!-- /Update -->
</td>
</tr>
</table>
<!-- /Sidebar -->
To:
Code:
<!-- Sidebar -->
<!-- Update -->
</td>
</tr>
</table>
<!-- /Update -->
</td>
<td style="width:150px" valign="top">$rightsidebar</td>
</tr>
</table>
<!-- /Sidebar -->
Then you must create another template as you did before and call it rightsidebar and edit global.php as follows:
Find:
Code:
eval('$sidebar = "' . fetch_template('sidebar') . '";');
Add below:
Code:
eval('$rightsidebar = "' . fetch_template('rightsidebar') . '";');
Then edit your template and add your content....