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
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
