Okay
  Public Ticket #2337330
Theme customization
Closed

Comments

  • Milton Lamb started the conversation

    How do I make my logo bigger using CSS? If you view my site (www.miltonlambjr.com), the logo is small. I would like to make it at least 120px. Thanks.

  •  1,823
    Support replied

    Hi Milton,

    you can increase the height of your logo with custom CSS

    #logo img {
        height: 120px;   
    }

    in customizer -> additional CSS

    if you want a different logo size on mobile also add

    @media only screen and (max-width: 767px) {

            #logo img {     

                height: 40px; /*change the logo size on mobile in pixels*/    

           }

    }


    Thank you.

    Clapat Support

    https://www.clapat.com/

    Review Envato Item Support Policy

  • Milton Lamb replied

    Thank you it worked.