Hi sunny72 ,
I would like to anwser your question as follows:
1. I want to extend the body article sizes or be able to put another module underneath the Body section…
=> To put another module underneath the body section, please open index.php file in templates/ja_quartz folder, at about line 177, find following code:
<div id="ja-current-content" class="clearfix">
<jdoc:include type="component" />
</div>
and change to:
[php] <div id=”ja-current-content” class=”clearfix”>
<jdoc:include type=”component” />
</div>
<?php if( $this->countModules(‘new_module’) ) {?>
<div id=’ja-new_module’>
<jdoc:include type=”modules” name=”new_module” style=”xhtml” />
</div>
<?php } ?>[/php]
– In Administrator, please go to Extensions -> Module Manager to create new module, select new_module position for this module.
2. If I want to insert a scroller above the JA slideshow, how do I do it?
=> This module does not support your idea.