Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • neel99 Friend
    #135825

    How can I have toolbox (increase/decrease font) always visible on the top right hand side. In other word, I want +- where the gear icon is.

    Anonymous Moderator
    #280830

    Dear neel99,

    Please see my guide:

    + Open index.php file in templates/ja_iolite folder, at about line 86, find following script:

    <!– BEGIN: HIDEN PANEL –>
    <div id=”ja-hpwrap”>
    <div id=”ja-hp”>
    <?php if ($this->countModules(‘ja-hpanel’)) { ?>
    <div class=”ja-hpmodule”>
    <jdoc:include type=”modules” name=”ja-hpanel” style=”raw” />
    </div>
    <?php } ?>
    <?php if ($tmpTools->getParam(JA_TOOL_USER)) { ?>
    <div id=”ja-usertools”>
    <?php $tmpTools->genToolMenu($tmpTools->getParam(JA_TOOL_USER) & 7, ‘gif’); ?>
    </div><div class=”clr”></div>
    <?php } ?>
    </div>
    </div>
    <!– END: HIDEN PANEL –>

    <!– BEGIN: HEADER –>
    <div id=”ja-headerwrap”>
    <div id=”ja-header” class=”clearfix”>

    <?php
    $siteName = $tmpTools->sitename();
    if ($tmpTools->getParam(‘logoType’)==’image’) { ?>
    <h1 class=”logo”>
    <a href=”index.php” title=”<?php echo $siteName; ?>”><span><?php echo $siteName; ?></span></a>
    </h1>
    <?php } else {
    $logoText = (trim($tmpTools->getParam(‘logoText’))==”) ? $config->sitename : $tmpTools->getParam(‘logoText’);
    $sloganText = (trim($tmpTools->getParam(‘sloganText’))==”) ? JText::_(‘SITE SLOGAN’) : $tmpTools->getParam(‘sloganText’); ?>
    <h1 class=”logo-text”>
    <a href=”index.php” title=”<?php echo $siteName; ?>”><span><?php echo $logoText; ?></span></a>
    </h1>
    <p class=”site-slogan”><?php echo $sloganText;?></p>
    <?php } ?>

    <?php if ($this->countModules(‘user4’)) { ?>
    <div id=”ja-search”>
    <jdoc:include type=”modules” name=”user4″ style=”raw” />
    </div>
    <?php } ?>

    <span id=”ja-hp-switch”>Member Area</span>

    </div>

    And change to:

    <!– BEGIN: HIDEN PANEL –>
    <div id=”ja-hpwrap”>
    <div id=”ja-hp”>
    <?php if ($this->countModules(‘ja-hpanel’)) { ?>
    <div class=”ja-hpmodule”>
    <jdoc:include type=”modules” name=”ja-hpanel” style=”raw” />
    </div>
    <?php } ?>

    </div>
    </div>
    <!– END: HIDEN PANEL –>

    <!– BEGIN: HEADER –>
    <div id=”ja-headerwrap”>
    <div id=”ja-header” class=”clearfix”>

    <?php
    $siteName = $tmpTools->sitename();
    if ($tmpTools->getParam(‘logoType’)==’image’) { ?>
    <h1 class=”logo”>
    <a href=”index.php” title=”<?php echo $siteName; ?>”><span><?php echo $siteName; ?></span></a>
    </h1>
    <?php } else {
    $logoText = (trim($tmpTools->getParam(‘logoText’))==”) ? $config->sitename : $tmpTools->getParam(‘logoText’);
    $sloganText = (trim($tmpTools->getParam(‘sloganText’))==”) ? JText::_(‘SITE SLOGAN’) : $tmpTools->getParam(‘sloganText’); ?>
    <h1 class=”logo-text”>
    <a href=”index.php” title=”<?php echo $siteName; ?>”><span><?php echo $logoText; ?></span></a>
    </h1>
    <p class=”site-slogan”><?php echo $sloganText;?></p>
    <?php } ?>

    <?php if ($this->countModules(‘user4’)) { ?>
    <div id=”ja-search”>
    <jdoc:include type=”modules” name=”user4″ style=”raw” />
    </div>
    <?php } ?>

    <span id=”ja-hp-switch”>Member Area</span>
    <?php if ($tmpTools->getParam(JA_TOOL_USER)) { ?>
    <div id=”ja-usertools”>
    <?php $tmpTools->genToolMenu($tmpTools->getParam(JA_TOOL_USER) & 7, ‘gif’); ?>
    </div><div class=”clr”></div>
    <?php } ?>
    </div>

    + Open templates/ja_iolite/css/template.css file, at about line 1134, find #ja-usertools class and change to:

    #ja-usertools {
    float:right;
    font-size:11px;
    margin-right:0;
    margin-top:50px;
    }

    Hope it helps.

    safarimark Friend
    #280974

    Thank you so much for this. I have been trying to do this for a long time!!!

    – Mark

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

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

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