Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • micawber Friend
    #137931

    Is it possible to widen either left or right position ,or “merge” them into one? Thanks

    Anonymous Moderator
    #290866

    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.

    micawber Friend
    #290868

    Great – appreciate the help – thanks

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

This topic contains 3 replies, has 2 voices, and was last updated by  micawber 15 years, 9 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum