test
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • alanajames Friend
    #129814

    Hi again,

    I have to say that once the learning curve slows down this is a beautiful template and I am loving my site. check it out at http://www.reinventinglife.org

    One issue still plagues – you will see that at the top, where user 1 and 2 are supposed to be I seem to have picked up an extra column. Can’t figure out how to get it back to just the two.

    Please, if it requires editing html or css – go slow, just a beginner here!

    Thanks to whomever answers – you are a great team and I highly recommend your templates.

    Alana:D

    Sherlock Friend
    #254568

    HI alanajames !
    You can fix it following way below :
    Open index.php file in templates/ja_wistery folder , find following code section at about line 126 :


    <?php
    $spotlight = array ('user1','user2','top');
    $topspl = $tmpTools->calSpotlight ($spotlight);
    if( $topspl ) {
    ?>
    <!-- BEGIN: TOP SPOTLIGHT -->
    <div id="ja-topslwrap">
    <div id="ja-topsl" class="clearfix">
    <?php if ($this->countModules('user1')) { ?>
    <div id="ja-topsl1" class="ja-box<?php echo $topspl['user1']['class']; ?>" style="width: <?php echo $topspl['user1']['width']; ?>;">
    <jdoc:include type="modules" name="user1" style="xhtml" />
    </div>
    <?php } ?>
    <?php if ($this->countModules('user2')) { ?>
    <div id="ja-topsl2" class="ja-box<?php echo $topspl['user2']['class']; ?>" style="width: <?php echo $topspl['user2']['width']; ?>;">
    <jdoc:include type="modules" name="user2" style="xhtml" />
    </div>
    <?php } ?>

    <?php if ($this->countModules('top')) { ?>
    <div id="ja-topsl3" class="ja-box<?php echo $topspl['top']['class']; ?>" style="width: <?php echo $topspl['top']['width']; ?>;">
    <jdoc:include type="modules" name="top" style="xhtml" />
    </div>
    <?php } ?>
    </div>
    </div>
    <!-- END: TOP SPOTLIGHT -->
    <?php } ?>

    change to :


    <?php
    $spotlight = array ('user1','user2');
    $topspl = $tmpTools->calSpotlight ($spotlight);
    if( $topspl ) {
    ?>
    <!-- BEGIN: TOP SPOTLIGHT -->
    <div id="ja-topslwrap">
    <div id="ja-topsl" class="clearfix">
    <?php if ($this->countModules('user1')) { ?>
    <div id="ja-topsl1" class="ja-box<?php echo $topspl['user1']['class']; ?>" style="width: <?php echo $topspl['user1']['width']; ?>;">
    <jdoc:include type="modules" name="user1" style="xhtml" />
    </div>
    <?php } ?>
    <?php if ($this->countModules('user2')) { ?>
    <div id="ja-topsl2" class="ja-box<?php echo $topspl['user2']['class']; ?>" style="width: <?php echo $topspl['user2']['width']; ?>;">
    <jdoc:include type="modules" name="user2" style="xhtml" />
    </div>
    <?php } ?>

    </div>
    </div>
    <!-- END: TOP SPOTLIGHT -->
    <?php } ?>

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

This topic contains 2 replies, has 2 voices, and was last updated by  Sherlock 16 years, 6 months ago.

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