Dear
Here is the solution :
pls open thefile: templates/ja_rasite/layouts/default.php and find the following codes:
[PHP]
<div class=”ja-rs2-top”><div class=”ja-rs2-tl”> </div><div class=”ja-rs2-tr”> </div></div>
<div class=”ja-rs2-mid”><div class=”ja-rs2-ml”><div class=”ja-rs2-mr clearfix”>
<?php $this->loadBlock(‘breadcrumb’) ?>
<div id=”ja-mainbody” style=”width:<?php echo $this->getColumnWidth(‘mw’) ?>%”>
<?php $this->loadBlock(‘main’) ?>
<?php $this->loadBlock(‘left’) ?>
</div>
<?php $this->loadBlock(‘right’) ?>
</div></div></div>
<div class=”ja-rs2-bot”><div class=”ja-rs2-bl”> </div><div class=”ja-rs2-br”> </div></div>
[/PHP]
and replace:
[PHP]
<?php if( !$this->isFrontPage() ) : ?>
<div class=”ja-rs2-top”><div class=”ja-rs2-tl”> </div><div class=”ja-rs2-tr”> </div></div>
<div class=”ja-rs2-mid”><div class=”ja-rs2-ml”><div class=”ja-rs2-mr clearfix”>
<?php $this->loadBlock(‘breadcrumb’) ?>
<div id=”ja-mainbody” style=”width:<?php echo $this->getColumnWidth(‘mw’) ?>%”>
<?php $this->loadBlock(‘main’) ?>
<?php $this->loadBlock(‘left’) ?>
</div>
<?php $this->loadBlock(‘right’) ?>
</div></div></div>
<div class=”ja-rs2-bot”><div class=”ja-rs2-bl”> </div><div class=”ja-rs2-br”> </div></div>
<?php endif; ?>
[/PHP]
GOod luck