ok I just remembered seeing something in the php and changed it myself
I just added the $ja_head so the appropriate layout would be chosen for the content when there was no right module
$ja_left = mosCountModules( 'left' );
$ja_right = mosCountModules( 'right' );
$ja_head = mosCountModules( 'header' );
if ( $ja_left && $ja_right ) {
$divid = '';
} elseif ( $ja_left && $ja_head ) {
$divid = '';
} elseif ( $ja_left ) {
$divid = '-fr';
} elseif ( $ja_right ) {
$divid = '-fl';
} elseif ( $ja_head ) {
$divid = '-fl';
} else {
$divid = '-f';
}
and this is the code insterted into the index.php right before the code for the right column
<?php if ($ja_head) { ?>
<!-- BEGIN: HEADER -->
<div id="ja-rightcol">
<?php if( mosCountModules('header') ) {?>
<div id="ja-sh" class="clearfix">
<?php mosLoadModules('header', -1); ?>
</div>
</div><br />
<!-- END: HEADER -->
<?php } ?>
This is what I changed in the css file
#ja-sh {
clear: both;
overflow: hidden;
background: #000000;
border-bottom: 1px solid #000000;
height: 300px;
width: 176px;
margin-bottom: 8px;
margin-top: 3px;
}
only thing left to do is make it change width when using the user tools at the top right