-
AuthorPosts
-
June 12, 2008 at 6:19 pm #129620
When using the split menu, the subnav appears in the left position. But if there is no other modules loaded in the left position, then the left position disappears completely along with the subnav. How can I make the subnav appear in the right position?
-
Sherlock Friend
Sherlock
- Join date:
- September 2014
- Posts:
- 11453
- Downloads:
- 0
- Uploads:
- 88
- Thanks:
- 221
- Thanked:
- 2478 times in 2162 posts
June 13, 2008 at 6:57 am #253379Hi lytrotis !
You can fix this bug by the following way :
open index.php file in templatesja_iolite folder , find following code section :
<?php if ($ja_left) { ?>
<div id="ja-col1">
<div class="ja-innerpad">
<?php if ($hasSubnav) { ?>
<div id="ja-subnav" class="moduletable_menu">
<h3>On this page</h3>
<?php $jamenu->genMenu (1,1); ?>
</div>
<?php } ?><jdoc:include type="modules" name="left" style="xhtml" />
</div>
</div>
<?php } ?>
change to :
<?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 ($hasSubnav) { ?>
<div id="ja-subnav" class="moduletable_menu">
<h3>On this page</h3>
<?php $jamenu->genMenu (1,1); ?>
</div>
<?php } ?>
1 user says Thank You to Sherlock for this useful post
June 13, 2008 at 12:56 pm #253421Almost got it! I made the changes to the index and it works except it’s not lining up with the rest of the modules in the right position… any thoughts?
Thanks.
Sherlock FriendSherlock
- Join date:
- September 2014
- Posts:
- 11453
- Downloads:
- 0
- Uploads:
- 88
- Thanks:
- 221
- Thanked:
- 2478 times in 2162 posts
June 14, 2008 at 1:47 am #253508Hi lytrotis !
You replace obove red code section by following code section :
<?php if ($hasSubnav) { ?>
<div id="ja-subnav" class="moduletable_menu" style="padding-left:20px;">
<h3>On this page</h3>
<?php $jamenu->genMenu (1,1); ?>
</div>
<?php } ?>
1 user says Thank You to Sherlock for this useful post
June 14, 2008 at 1:56 am #253510Thanks a bunch!
AuthorPostsViewing 5 posts - 1 through 5 (of 5 total)This topic contains 5 replies, has 2 voices, and was last updated by lytrotis 16 years, 5 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum
Jump to forum
-