Hi,
I’m trying to make the search icon show up on mobile devices. I’ve added this:
@media only screen and (max-width: 989px) {
.responsive .av_mobile_menu_tablet .main_menu, #top #menu-item-search { display: block; }
.av-main-nav > li { display: none; }}
However it is still not showing up on mobile devices. Any help?
Thanks!
Hey!
Please add following code to Quick CSS as well
@media only screen and (max-width: 767px) {
.responsive #header .main_menu ul {
display: block;
}}
Regards,
Yigit
Hi,
Just tried that and it still isn’t showing up. I have the following in the quick CSS.
@media only screen and (max-width: 767px) {
.responsive #header .main_menu ul {
display: block;
}}
@media only screen and (max-width: 989px) {
.responsive .av_mobile_menu_tablet .main_menu, #top #menu-item-search { display: block; }
.av-main-nav > li { display: none; }}