Dear cjmicro!
Please open the file templates/ja_ruby/index.php and try to find codes
[PHP]
<?php if ( $this->countModules(‘ja-slideshow’) ) {?>
<!– TOP SPOTLIGHT –>
<div id=”ja-slideshow” class=”clearfix”>
<jdoc:include type=”modules” name=”ja-slideshow” style=”raw” />
</div>
<!– //TOP SPOTLIGHT –>
<?php } ?>
[/PHP]
You replace:
[PHP]
<?php if ( $this->countModules(‘ja-slideshow’) ) {?>
<!– TOP SPOTLIGHT –>
<div id=”ja-slideshow” class=”clearfix”>
<jdoc:include type=”modules” name=”ja-slideshow” style=”raw” />
</div>
<!– //TOP SPOTLIGHT –>
<?php } else { ?>
<div id=”ja-slideshow” class=”clearfix”>
<jdoc:include type=”modules” name=”static-slideshow” style=”raw” />
</div>
<?php } ?>
[/PHP]
With the above codes allow the display modules on the “static-slideshow” position if the “ja-slideshow” has not any modules display.
Now you put a custom module and put a image in its content, you set this module display on all pages with the “static-slideshow” position
Good luck