Archived topic
Hide Search Icon on Desktop only
2 replies · Started by David on October 30, 2020
Viewing posts 1–3 of 3
I have it enabled Navigation search via the check box. BUT I don't' want it to show in the header on desktops. I tried adding this code in additional CSS but it doesn't work.
@media (min-width: 769px) {
.main-navigation li.search-item {
display: none;
}
}
I figured it out finally.
@media (min-width: 769px) {
.menu-bar-items .search-item {
display: none !important;
}
}
Glad to hear that!
This archived topic is closed to new replies.