Hi masterwebman,
I think you just open the file of templatesja_raiteindex.php at the bottom of file you would see this block of code
[PHP]
<?php
$spotlight = array (‘user6′,’user7′,’user8’);
$sl = $tmpTools->calSpotlight ($spotlight,$tmpTools->isOP()?100:99.9);
if ($sl) {
?>
<!– BOTTOM SPOTLIGHT –>
<div id=”ja-botsl” class=”wrap”>
<div class=”main clearfix”>
<?php if ( $this->countModules(‘user6’) ) { ?>
<div class=”ja-box<?php echo $sl[‘user6’][‘class’]; ?>” style=”width: <?php echo $sl[‘user6’][‘width’]; ?>;”>
<jdoc:include type=”modules” name=”user6″ style=”xhtml” />
</div>
<?php } ?>
<?php if ( $this->countModules(‘user7’) ) { ?>
<div class=”ja-box<?php echo $sl[‘user7’][‘class’]; ?>” style=”width: <?php echo $sl[‘user7’][‘width’]; ?>;”>
<jdoc:include type=”modules” name=”user7″ style=”xhtml” />
</div>
<?php } ?>
<?php if ( $this->countModules(‘user8’) ) { ?>
<div class=”ja-box<?php echo $sl[‘user8’][‘class’]; ?>” style=”width: <?php echo $sl[‘user8’][‘width’]; ?>;”>
<jdoc:include type=”modules” name=”user8″ style=”xhtml” />
</div>
<?php } ?>
</div>
</div>
[/PHP]
here you can see that the user blocks are generated and you can modify as your wish.