I got it working, just need some tweaking now.
Here's what I did,
first I changed/added this in index.php:
Below:
#sidecol { width: <?php echo $side_column; ?>;}
I added:
#right { width: <?php echo $side_column; ?>;}
I changed:
#main-column { margin-left: <?php echo $side_column; ?>;}
To:
#main-column { margin-left: <?php echo $side_column; ?>;
margin-right: <?php echo $side_column; ?>;}
Added:
<div id="right">
<div id="right-column">
<?php if (mosCountModules('right')) : ?>
<div class="padding">
<div class="inner">
<?php mosLoadModules('right',-2); ?>
</div>
</div>
</div>
</div>
<?php endif; ?>
Just below:
<?php endif; ?>
<?php mosLoadModules('left',-2); ?>
</div>
</div>
</div>
</div>
To template_css.css I added:
#right {
float: right;
}
Also added:
#right-column {
background: #E7F9FB;
width: 93%;
margin-left: 10px;
}
#right-column .padding {
padding: 4px;
}
#right-column .inner {
background: #fff;
padding: 4px;
}
Note the "margin-left: 10px;" there, I cant figure out why I need it... the right column will just be misplaced if not.