How I can move the Logo to the area left from Container? (x1)
How I can create a left sidebar in addition to Sidebar on the right side (x2)

    7 days later

    michael-gatz Hi

    The header is wrapped inside a container, you can go to Backend >> Template styles >> open the template style of JA Simpli that you're using >> Layout configuration >> Header >> and set 'Container' option to No

    With the left sidebar question, you will have to customize the code a bit, here are steps:

    • Go to file: ROOT/templates/ja_simpli/index.php
    • Move this snippet of code:
      <?php if ($helper->has('col1-class')) : ?>
      <!-- Sidebar 1-->
      <div class="sidebar sidebar-1 <?php $helper->_('col1-class') ?>">
      	<div class="sidebar-inner">
      		<jdoc:include type="modules" name="<?php $helper->_('col1-pos') ?>" style="JAxhtml" />
      	</div>
      
      </div>
      <!-- // Sidebar 1-->
      <?php endif; ?>

    to above the main content section:

    Write a Reply...
    You need to Login to view replies.