Okay
  Public Ticket #235290
Logo size, how to make it bigger and wider
Closed

Comments

  • Abdullah started the conversation

    Hi,

    I have seen the threads about this topic but I still cannot achieve the task, my knowledge about css is limited really . I have tried changing some things in the css file but it didnt take me anywhere.

    Please advice on how to change the logo to make it bigger.

    Cheers

  •  8,425
    Tahir replied

    Hey Abdullah!

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

    /* Desktop */
    @media only screen
    and (min-width : 1px) and (max-width : 1000px) {
        
        body header#top #logo img {
            height: 37px!important;
            margin-top: -6px !important;
        
        }
    }
    /* Desktop greater then 1000px */
    @media only screen
    and (min-width : 1000px) {
        
        body header#top #logo img {
            height: 50px!important;
            margin-top: -8px !important;
        
        }
    }
    
    
    

    Cheers


    ThemeNectar Support Team