Yes, it is possible.
+ To merge two positions, please open index.php file in templates/ja_teline_ii folder, at about line 261, find following code:
[PHP]<div id=”ja-cols” class=”clearfix”>
<?php if ($ja_left) { ?>
<div id=”ja-col1″>
<div class=”ja-innerpad”>
<jdoc:include type=”modules” name=”left” style=”xhtml” />
</div>
</div>
<?php } ?>
<?php if ($ja_right) { ?>
<div id=”ja-col2″>
<div class=”ja-innerpad”>
<jdoc:include type=”modules” name=”right” style=”xhtml” />
</div>
</div>
<?php } ?>
</div>
[/PHP]
and change to:
[PHP]<div id=”ja-cols” class=”clearfix”>
<?php if ($ja_right) { ?>
<div id=”ja-col2″>
<div class=”ja-innerpad”>
<jdoc:include type=”modules” name=”right” style=”xhtml” />
</div>
</div>
<?php } ?>
</div>
[/PHP]
+ Open file templates/ja_teline_ii/css/template.css, at about line 614, find following code:
#ja-col2 {
float:right;
overflow:hidden;
width:49.9%;
}
and change to:
#ja-col2 {
float:right;
overflow:hidden;
width:100%;
}
Hope it helps.