Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #61262
    Cezary Springer
    Participant
    Premium Member

    Hi. I have a problem with the logo in the header of the mobile version on my website – it is cut off on the sides.

    It should automatically adjust the width to the device.

    Maybe someone can help me how to solve it

    http://www.shk.com.pl

    #61265
    vako
    Keymaster
    WP Royal Team

    Hi Cezary,

     

    Please navigate to Dashboard > Appearance > Customize > Additional CSS section add the following snippet:

    @media screen and (max-width: 979px) {
    .entry-header {
    height: 300px !important;
    }
    }
    @media screen and (max-width: 774px) {
    .entry-header {
    height: 200px !important;
    }
    }
    @media screen and (max-width: 514px) {
    .entry-header {
    height: 150px !important;
    }
    }
    @media screen and (max-width: 382px) {
    .entry-header {
    height: 100px !important;
    }
    }

     

    Kind Regards

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