Okay
  Public Ticket #800384
mobile logo
Closed

Comments

  •  1
    Carolyn started the conversation

    Do you have code that I can add for showing an alternative mobile logo?

  •  1,624
    Barry replied

    Hi Carolyn

    The theme don't have an option for a alternative mobile logo. But with some small code changed it would be possible.

    Please upload your mobile logo via the Media tab and copy the URL of the logo image.

    Then use the following CSS to display the logo:

    @media (max-width: 480px) { 
    .header .navigation .navbar-brand img { display: none; }
    .navbar-brand { width: 250px; height: 90px; background-image: url( 'your-path-to-logo-image.png' ); 
    }

    That should do the trick.

    Best regards,
    Barry
    QreativeThemes.com  |  WordPress Themes

  •  1
    Carolyn replied

    Thank you that is perfect!!