Hi Neil,
[FONT=”Arial Black”]HERE’S THE FIX[/FONT]
Open the “index.php” file in the folder “templates/ja_sanidine/” or “templates/ja_sanidineii_light/”
FIND THE FOLLOWING BLOCK OF CODE:
<?php if( $this->countModules('topsl1') && $this->countModules('topsl2') ) { ?>
<!-- BEGIN: TOP SPOTLIGHT -->
<div id="ja-topsl" class="clearfix">
<div id="ja-topsl1">
<jdoc:include type="modules" name="topsl1" style="raw" />
</div>
<div id="ja-topsl2">
<jdoc:include type="modules" name="topsl2" style="xhtml" />
</div>
</div>
<!-- END: TOP SPOTLIGHT -->
<?php } ?>
AND CHANGE IT TO THE FOLLOWING:
<!-- BEGIN: TOP SPOTLIGHT -->
<div id="ja-topsl" class="clearfix">
<?php if( $this->countModules('topsl1') ) { ?>
<div id="ja-topsl1">
<jdoc:include type="modules" name="topsl1" style="raw" />
</div>
<?php } ?>
<?php if ( $this->countModules('topsl2') ){ ?>
<div id="ja-topsl2">
<jdoc:include type="modules" name="topsl2" style="xhtml" />
</div>
<?php } ?>
</div>
<!-- END: TOP SPOTLIGHT -->
CAUTION: Make sure you grab EVERYTHING in the top code block…especially the
<?php } ?>
at the end..
That should do it.
Let me know if you need further.
John