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

    Hi

    I have got the opposite problem of everybody else in this forum, for some reason I can not grasp.

    I have hidden the search icon in the top menu by using this short code:

    #menu-item-search {
    display:none;
    }

    but it still appears on a mobil device?

    I dont want it to show at all… on any devices. Please let me know if you can help me with this. It would be most helpful.

    Thank you Nicole

    #936767

    Hey NicoleJulNielsen,

    Add the following to quick css:

    @media only screen and (max-width: 767px)  {
    #menu-item-search a{
    display:none!important;
    }
    }

    Best regards,
    Jordan Shannon

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