Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #2758012
How to hide logo when screen is small OR when on mobile?
Closed

Comments

  • girlknowstech started the conversation

    Hello! 

    Would it be possible to hide the div "logo" when on a small screen (small enough to have the hamburger menu show up) AND when it's on mobile as well? I just don't like to have the Girl Knows Tech logo repeated twice.

    Thank you! 

    2173551972.png


  •  2,699
    PenciDesign replied

    Hi,

    You can add more this code to Customize > Custom CSS to do that:

    @media only screen and (max-width: 960px){
        #header .inner-header {
            display: none;
        }
    }
    

    Best Regards,

    PenciDesign