Okay
  Public Ticket #285067
Main Nav spacing
Closed

Comments

  • James started the conversation

    When the resolution is reduced and the menu starts to move to the left, at a certain point it moves over the logo.

    is it possible to add padding to the top and push the main nav down so it slides under the logo?

  •  8,839
    Tahir replied

    Hey!

    Add this into the Custom CSS box located in your Salient Options panel :
    @media only screen and (min-width : 1000px) {
        .col.span_3 {
            float: none;
            margin-left: 33%;
        }
        .col.span_9.col_last {
            margin-left: 7%;
        }
    }
    
    
    
    
    /* Desktop */
    @media only screen
    and (min-width : 1px) and (max-width : 1000px) {
        
        body header#top #logo img {
            height: 54px!important;
            margin-top: -9px !important;
        
        }
    }
    


    ThemeNectar Support Team