I managed to add another column on the right of the mainbody. You will need to tweak your css but here’s something to start with.
open your index.php and paste this between:
<div id=”ja-container” class=”clearfix”>
<!– BEGIN: RIGHT COLUMN –>
<div id=”ja-col2″>
<div class=”ja-innerpad”>
<?php echo mosLoadModules ( ‘right’,-2 ); ?>
</div>
</div>
<!– END: RIGHT COLUMN –>
<div id=”ja-mainbody<?php echo $divid; ?>”>
Open your the template_css.css
and copy all the #ja-col1 (LEFT COLUMN) and paste it below that and change all the #ja-col1 to #ja-col2.
#ja-col2 {
float: right;
width: 15.9%;
overflow: hidden;
color: #ea9c21;
padding-left: 20px;
}
Increase your width to make the 3 column fit.
#ja-wrapper {
width: 940px;
margin: 0 auto;
}