Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • pavit Moderator
    #898497

    Hi

    You can try in this way

    edit this file /templates/ja_magz_ii/tpls/blocks/sections.php and change it

    FROM :

    <div id="t3-section" class="t3-section-wrap wrap">
      <div class="container">
        <?php if ($this->countModules('section')) : ?>
            <jdoc:include type="modules" name="<?php $this->_p('section') ?>" style="T3xhtml" />
        <?php endif ?>
      </div>

    TO :

    <div id="t3-mainbody" class="container t3-mainbody">
    <div class="row">
      <div id ="t3-content" class="t3-content col-xs-12 col-md-9 ">
        <?php if ($this->countModules('section')) : ?>
            <jdoc:include type="modules" name="<?php $this->_p('section') ?>" style="T3xhtml" />
        <?php endif ?>
      </div>
      <!-- SIDEBAR 2 -->
            <div class="t3-sidebar t3-sidebar-2 col-xs-12  col-md-3">
                <jdoc:include type="modules" name="<?php $this->_p('sidebar-2') ?>" style="T3xhtml" />
            </div>
            <!-- //SIDEBAR 2 -->
    </div>
    </div>

    You can change sidebar-2 name to a name you prefer in this way you do not mix positions

    Take a backup of your sections.php file first to modify it

    Hope it helps

    Best regards


    1. Screenshot_10-1
    Stergiou Limited Friend
    #898510

    Hi,
    yes it works.
    Thank you very very much!!!
    Leonidas

Viewing 2 posts - 1 through 2 (of 2 total)

This topic contains 2 replies, has 2 voices, and was last updated by  Stergiou Limited 8 years, 8 months ago.

The topic ‘Sidebar on the right of Section position’ is closed to new replies.