Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #973475

    Hello!

    How do I suppress the logo image on phone screens? Obviously I want the logo on a desktop, and I’m good with it on tablets, but on smaller devices (Apple and Android phones) I want to stop the logo from being displayed.

    Is this possible?

    Thanks!

    #973476

    I’m modeling on the Gym demo, by the way.

    #973505

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

    CSS Snippet:

    
    /* Hide logo on mobile */
    @media only screen and (max-width: 480px) { 
    .responsive .logo { display: none !important; }} 
    
    

    Best regards,
    Yigit

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.