Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • mudotmy Friend
    #164810

    How do I disable the logo?

    TomC Moderator
    #394687

    Well, one way you could try is completely remove the code calling out the logo … which should be within path templates – ja_travel – blocks – header.php


    ?>

    <?php
    $app = & JFactory::getApplication();
    $siteName = $app->getCfg('sitename');
    if ($this->getParam('logoType', 'image')=='image'): ?>
    <h1 class="logo">
    <a href="index.php" title="<?php echo $siteName; ?>"><span><?php echo $siteName; ?></span></a>
    </h1>
    <?php else:
    $logoText = (trim($this->getParam('logoText'))=='') ? $siteName : JText::_(trim($this->getParam('logoText')));
    $sloganText = JText::_(trim($this->getParam('sloganText'))); ?>
    <div class="logo-text">
    <h1><a href="index.php" title="<?php echo $siteName; ?>"><span><?php echo $logoText; ?></span></a></h1>
    <p class="site-slogan"><span><?php echo $sloganText;?></span></p>
    </div>
    <?php endif; ?>

    Another, less permanent way that could work is modifying the relative css rule for the logo … look for this within the template.css file (starting at line 666) …


    /* Logo Text ---*/
    div.logo-text h1 {
    font-family: Arial, sans-serif;
    font-size: 200%;
    font-weight: bold;
    }

    div.logo-text h1 a { text-decoration: none; }

    /* Logo Image ---*/
    h1.logo { height: 70px; width: 135px; }

    h1.logo a {
    background: url(../images/logo.png) no-repeat left;
    display: block;
    height: 70px;
    width: 135px;
    }

    h1.logo, div.logo-text h1 { font-size: 250%; line-height: 1; }
    }

    As always, make sure you have a back-up for any changes you make – in case you have to undo what you do.

    Let us know if that worked.

    Yves Keller Friend
    #394749

    or

    joomla -> admin -> template manager -> ja_travel -> Profiles -> Select logo type = text (write whatever you want)

    or

    replace the logo with a transparent image

    both options will stay when you update the template.

    pritam Friend
    #394835

    Hello ,

    To Disable Logo

    You need to find this code to templates/ja_travel/css/template.css line no. 678

    h1.logo a {
    background: url(“../images/logo.png”) no-repeat scroll left center transparent;
    display: block;
    height: 70px;
    width: 135px;
    }

    Change this code to :-

    h1.logo a {

    display: block;
    height: 70px;
    width: 135px;
    }

    Again Find this code to plugins/system/jat3/base-themes/default/css/template.css line no 676

    h1.logo a {
    background: url(“../images/t3_logo_light.png”) no-repeat scroll left center transparent;
    display: block;
    height: 28px;
    width: 184px;
    }

    Change this code to :-

    h1.logo a {
    display: block;
    height: 28px;
    width: 184px;
    }

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

This topic contains 4 replies, has 4 voices, and was last updated by  pritam 13 years, 4 months ago.

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