I would like the user1 and user2 module to appear on the Xmas version of Sargas as well, but I don’t know which part of the code to copy and paste. Would you post it here please?
Oh hey, I got it. What do you know. 🙂 If anybody else has this question, insert this code into the Sargas xmas template html in the same place it was in the regular Sargas template html (shortly after the footer starts).
<?php if ($bottommodule) { ?>
<!– BEGIN: BOTTOM SPOTLIGHT –>
<div id=”ja-botslwrap”>
<div id=”ja-botsl” class=”ja-spotlight clearfix”>
<?php if ( mosCountModules(‘user1’) ) { ?>
<div class=”ja-box<?php echo $user1divstyle; ?>” style=”width: <?php echo $divbotwidth ?>;”>
<?php mosLoadModules ( ‘user1’, -2 ); ?>
</div>
<?php } ?>
<?php if ( mosCountModules(‘user2’) ) { ?>
<div class=”ja-box<?php echo $user2divstyle; ?>” style=”width: <?php echo $divbotwidth ?>;”>
<?php mosLoadModules ( ‘user2’, -2 ); ?>
</div>
<?php } ?>
<?php if ( mosCountModules(‘top’) ) { ?>
<div class=”ja-box<?php echo $topdivstyle; ?>” style=”width: <?php echo $divbotwidth ?>;”>
<?php mosLoadModules ( ‘top’, -2 ); ?>
</div>
<?php } ?>
</div>
</div>
<!– END: BOTTOM SPOTLIGHT –>
<?php } ?>