test
Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • Pankaj Sharma Moderator
    #961420

    Hi
    Kindly check the template style assigned to your landing page and then delete or change logo for that template style . Clean cache and check .

    natali.klochan Friend
    #961485

    yes
    landins page is landing.php
    and other pages is default.php
    but
    in landing.php we have

    <div class="t3-wrapper"> 
      <?php $this->loadBlock('header') ?>
      <?php $this->loadBlock('slideshow') ?>
    </div>

    and header.php we have

    <!-- LOGO -->
        <div class="col-xs-4 col-sm-2 col-md-2 logo">
            <div class="logo-<?php echo $logotype, ($logoimgsm ? ' logo-control' : '') ?>">
                <a href="<?php echo JURI::base(true) ?>" title="<?php echo strip_tags($sitename) ?>">
                    <?php if($logotype == 'image'): ?>
                        <img class="logo-img" src="<?php echo JURI::base(true) . '/' . $logoimage ?>" alt="<?php echo strip_tags($sitename) ?>" />
                    <?php endif ?>
                    <?php if($logoimgsm) : ?>
                        <img class="logo-img-sm" src="<?php echo JURI::base(true) . '/' . $logoimgsm ?>" alt="<?php echo strip_tags($sitename) ?>" />
                    <?php endif ?>
                    <span><?php echo $sitename ?></span>
                </a>
                <small class="site-slogan"><?php echo $slogan ?></small>
            </div>
        </div>
        <!-- //LOGO -->

    and when I remove the piece of code <img…, landing page is loses the main photo

    How can I remove img, that landing page is remained normal, with main photo

    Pankaj Sharma Moderator
    #961547

    Hi
    For logo you have not need to open php files , just go to template options > Theme > Logo .
    Do this for the landing page template style .

    natali.klochan Friend
    #961610

    I understand.
    But in the logo settings, I can select only the text or image.
    And I need to turn it off.
    How can i do this?

    Pankaj Sharma Moderator
    #961786

    Hi
    If you want to hide the logo , simply add below code in custom.css file

    .logo {display:none;}

    You can also remove the logo image from the Theme > Logo .

    natali.klochan Friend
    #962145

    CSS it works.
    But if I remove the logo image from the Theme > Logo, then I have the image.. T3 Blank
    How can I delete this image?


    1. 11
    Pankaj Sharma Moderator
    #962196

    Hi
    its defined in the /tpls/header.php

    
    $logoimage = $logotype == 'image' ? $this->params->get('logoimage', T3Path::getUrl('images/logo.png', '', true)) : '';

    This is the logo file : images/logo.png
    You can change the path to your logo or just hide it using css code , since you also do not want to show the logo space in that part .

    natali.klochan Friend
    #962427

    I got it. Thanks..

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

This topic contains 8 replies, has 2 voices, and was last updated by  natali.klochan 8 years, 3 months ago.

The topic ‘Delete logo from landing page’ is closed to new replies.