Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • harrisonmitchell Friend
    #128087

    Hi there,

    Thanks for the great theme, fits perfectly with our business.

    I want to remove the narrow width option on the template. How would I go about doing this? I am using joomla 1.5, but for some reason when I change the “Display template tool” option to just font size, it doesn’t remove the width option. Likewise if I change it to ‘no display’.

    It says this as well – I wonder if it is related?

    The Parameter-File /templates/ja_mageia/params.ini is Unwritable!

    I appreciate your help – thanks in advance

    Sherlock Friend
    #247468

    Hi harrisonmitchell !
    You remove width option tool by way :
    Open index.php file find following code section :


    <div id="ja-usertoolswrap">
    <div id="ja-usertools">
    <?php if($supported_browsers) $tempTools->genToolMenu(1); else $tempTools->genToolMenu_ie6(1); ?>
    <?php if($supported_browsers) $tempTools->genToolMenu(2); else $tempTools->genToolMenu_ie6(2); ?>
    </div>
    </div>

    or


    <div id="ja-usertoolswrap">
    <div id="ja-usertools">
    <?php if($JAconfig->ja_tool & 1) $tempTools->genToolMenu(1); ?>
    <?php if($JAconfig->ja_tool & 2) $tempTools->genToolMenu(2); ?>
    </div>
    </div>

    change into :


    <div id="ja-usertoolswrap">
    <div id="ja-usertools">

    <?php if($supported_browsers) $tempTools->genToolMenu(2); else $tempTools->genToolMenu_ie6(2); ?>
    </div>
    </div>

    or


    <div id="ja-usertoolswrap">
    <div id="ja-usertools">

    <?php if($JAconfig->ja_tool & 2) $tempTools->genToolMenu(2); ?>
    </div>
    </div>

    harrisonmitchell Friend
    #247469

    worked a charm, thanks a lot

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

This topic contains 3 replies, has 2 voices, and was last updated by  harrisonmitchell 16 years ago.

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