Tagged: 

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #368682
    #368684
    This reply has been marked as private.
    #368973

    Hi!

    Change this.

    @media only screen and (max-width: 767px) {
    .responsive .logo img { display: none;}
    }

    To this.

    @media only screen and (max-width: 767px) {
    .responsive .logo { display: none;}
    #header { height: 200px !important; } /* remove this if you don't want to set a specific height */
    }

    Best regards,
    Elliott

    #370579

    Hello Elliott,

    Thnx for this!

    Can you also tell me how to make this logo link to the homepage? Like the standard logo does.

    Greets tim

    #370783

    Hi!

    Is this the code your using?

    echo avia_logo(AVIA_BASE_URL.’images/layout/logo.png’, $addition, ‘strong’, true);
    

    If so then try changing it to this.

    echo '<a href = "'.get_bloginfo("url").'">';
    echo avia_logo(AVIA_BASE_URL.’images/layout/logo.png’, $addition, ‘strong’, true);
    echo '</a>';
    

    Regards,
    Elliott

    #372715

    Hey Elliott,

    I edit this but I dont get a good result.

    echo '<a>';
    						echo avia_logo(AVIA_BASE_URL.’images/layout/logo.png’, $addition, ‘strong’, true);
    						echo '</a>';
    						echo "<div class='bb-logo'><img src='http://bb.testsites-swipemedia.nl/wp-content/uploads/2014/12/bb-logo-mobile.png' /></div>";

    Greets Tim

    • This reply was modified 9 years, 10 months ago by Elliott.
    #372761

    Hey!

    Your code does not look like the code I posted and it sounds like your wanting to surround the bb-logo image with the link instead of the default logo.

    Best regards,
    Elliott

    #373062

    Hey Elliot,

    That is right the default logo already links to home chanced it, now it works.

    Thanks again for the good support!

    Greets Tim

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘second logo’ is closed to new replies.