-
AuthorPosts
-
June 18, 2008 at 8:13 am #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 FriendSherlock
- Join date:
- September 2014
- Posts:
- 11453
- Downloads:
- 0
- Uploads:
- 88
- Thanks:
- 221
- Thanked:
- 2478 times in 2162 posts
June 19, 2008 at 6:53 am #254568HI 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 } ?>
1 user says Thank You to Sherlock for this useful post
-
AuthorPosts
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