Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #524295

    Hi,

    I am trying to hide the header widget (Search bar in this case) on a mobile, anything below 1100px width.

    What is the quick CSS to do this?

    Thank you in advance

    #524450

    Hey hloft!

    Add this to your custom CSS.

    @media screen and (max-width: 1100px) {
    #header .widget { display: none !important; }
    }

    Best regards,
    Elliott

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