Okay
  Public Ticket #237156
Header thickness on device
Closed

Comments

  • Gary started the conversation

    Hi, thanks for an amazing theme.

    On my site when browsing on mobile device, my header logo touches the bottom of the header space, looking odd compared to how perfect it is when scaled up to my regular mac web browser size.

    Any way to get the logo to fit perfectly on mobile device, with equal spacing top and bottom?

    Thanks very much.

  •  8,839
    Tahir replied

    Hey Greg!

    Add this into the Custom CSS box located in your Salient Options panel :

    
    /* Mobile */
    @media only screen and (max-width: 470px) {
        body header#top #logo img {
            height: 50px!important;
            margin-top: -16px !important;
        }
    }
    
    
    

    Cheers


    ThemeNectar Support Team 

  • Gary replied

    Amazing thanks so much!