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

    Good morning, I have some problem with the header of the web site only on mobile, the header is not responsive, I put the logo on the left and the picture on the right but on the mobile overlap. Can you help me understand what the problem is? Thank you.

    #818667

    Hey SusyST,

    There’s not enough room in the header on smaller screens, so I think you would have to remove either the logo or the image for those sizes.

    Best regards,
    Rikard

    #818701

    Ok Rikard,
    Is it possible to remove the image only for mobile?
    Thank you.

    #818781

    Hi,

    Yes, you can use media queries for that:

    @media only screen and (max-width: 767px) {
      .element {
        display:none;
      }
    }

    I couldn’t find exactly how you got it in there, but just replace the class in my example with your class or ID.

    Best regards,
    Rikard

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