Okay
  Public Ticket #278319
Logo size
Closed

Comments

  • Calvin started the conversation

    I am trying to make the logo appear bigger on the screen. I want to keep the logo height to "30". Understand that I could use some CSS to do that but I have limited knowledge on that. Could you assist to enlarge my logo, eg cut away the top and bottom spacing (if this is how its done).

    Thanks!

  •  8,839
    Tahir replied

    Hey Calvin!

    Add this into the Custom CSS box located in your Salient Options panel :
    /* Desktop greater then 1000px */
    @media only screen
    and (min-width : 1000px) {
        
        body header#top #logo img {
            height: 74px!important;
            margin-top: -23px !important;
        
        }
    }
    /* Desktop */
    @media only screen
    and (min-width : 1px) and (max-width : 1000px) {
        
        body header#top #logo img {
            height: 50px!important;
            margin-top: -17px !important;
        
        }
    }
    
    
    
    Thanks


    ThemeNectar Support Team