Hi pinkfloyd !
You can do it following some steps below :
1.Open index.php file in templates/ja_pyrite folder find following code section at about line 147 :
<?php if ( $this->countModules('topsl') ) : ?>
<!-- BEGIN: SLIDESHOW -->
<div id="ja-topsl">
<jdoc:include type="modules" name="topsl" style="raw" />
</div>
<!-- END: SLIDESHOW -->
<?php endif; ?>
change to :
<?php if ( $this->countModules('topsl') ) : ?>
<!-- BEGIN: SLIDESHOW -->
<div id="ja-topsl">
<div id="ja-topsl1">
<jdoc:include type="modules" name="topsl" style="raw" />
</div>
<div id="ja-topsl2">
<--load module here -->
</div>
</div>
<!-- END: SLIDESHOW -->
<?php endif; ?>
2. Open template.css file in templates/ja_pyrite/css folder , find following code section at about line 999 :
/* Top spotlight */
#ja-topsl {
clear: both;
margin: 0 0 20px;
padding: 0;
height: 200px;
overflow: hidden;
}
change to :
/* Top spotlight */
#ja-topsl {
clear: both;
margin: 0 0 20px;
padding: 0;
height: 200px;
overflow: hidden;
}
#ja-topsl1 {
margin: 0 0 20px;
padding: 0;
display:block;
width:75%;
float:left;
}
#ja-topsl2 {
margin: 0 0 20px;
padding: 0;
display:block;
width:24%;
float:right;
}