• Resolved trm1991

    (@trm1991)


    Hello,

    The logo of my webpage doesn’t resize for movile, so it impedes users to use the menu correctly. How can I solve this problem?

    On the other hand, I would like that the logo was bigger in the pc view. Is it possible?

    Thanks.

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Theme Author themevision

    (@themevision)

    Hello, @trm1991!

    Insert next code in Customize->General->Additional CSS:

    @media only screen and (max-width: 480px){
    #masthead .logo {
        max-height: 150px!important;
    }
    }
    
    #vision-mobile-nav{
    	margin-top:160px!important;
    }

    https://prnt.sc/jxhu7a

    Change the max-height value per your needs.

    Regards

    Thread Starter trm1991

    (@trm1991)

    Thank you for your help. I could resize the logo in movile, but I can not make the logo bigger in pc view.

    Theme Author themevision

    (@themevision)

    Hello,

    To resize the logo for the bigger screens use next code:

    @media only screen and (min-width: 993px){
    #masthead .logo {
        max-height: 350px!important;
    }
    

    Change the max-height value per your needs.

    https://prnt.sc/jxnbg5

    Regards

    Thread Starter trm1991

    (@trm1991)

    It’s perfect now. Thank you.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Logo’ is closed to new replies.