@taus,
<blockquote>in that case how would i show the login option in mobile screen ?</blockquote>
you need to open the file templatesja_appoliotplsblocksoff-canvas-login.php,
Find and change:
[PHP]<div class=”action hidden-xs”>
<button class=”btn btn-primary off-canvas-toggle” type=”button” data-nav=”#t3-off-canvas-login” data-pos=”right” data-effect=”<?php echo $this->getParam(‘addon_offcanvas_effect’, ‘off-canvas-effect-3’) ?>”>
<?php echo JText::_(‘TPL_TRY_DISCOVER_FREE’);?>
</button>
</div>[/PHP]
To
[PHP]<div class=”action”>
<button class=”btn btn-primary off-canvas-toggle” type=”button” data-nav=”#t3-off-canvas-login” data-pos=”right” data-effect=”<?php echo $this->getParam(‘addon_offcanvas_effect’, ‘off-canvas-effect-3’) ?>”>
<?php echo JText::_(‘TPL_TRY_DISCOVER_FREE’);?>
</button>
</div>[/PHP]