Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #859417

    Hi

    How can I reduce the size of the mobile header and logo? Comes across quite big on screen…

    WEBSITE LINK

    #859418

    Hey brenmcc1,

    Add this to quick css and adjust the number to whatever you need:

    
    @media only screen and (max-width: 767px){
    .responsive .logo img {
    max-width:20%!important;
    }
    .responsive #header_main .container {
    height:70px!important;
    }
    }

    Best regards,
    Jordan Shannon

    #859468

    Thanks, tried this but it only seems to adjust the container. The burger menu doesn’t get any smaller?

    #859870

    Hi,

    It should have adjusted the logo image as well. Add this updated code to target the menu as well:

    @media only screen and (max-width: 767px){
    .responsive .logo img {
    max-width:20%!important;
    }
     #header{
    height:70px!important;
    }
    .av-hamburger-box{
    height:30px!important;
    width:20px!important;
    }
    }

    Best regards,
    Jordan Shannon

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.