Tagged: menu icon, mobile menu
I am trying to use this code:
@media only screen and (max-width: 767px) {
.mobile_active #advanced_menu_toggle {
display: block;
right: -20px;
top: 40px; }
to move my menu icon on the mobile over to the right a bit, but it’s not working in 2.7.1…I just upgraded?? Is there a new code I can use? Thanks,
N
Hi Munford!
Try:
@media only screen and (max-width: 767px) {
#advanced_menu_toggle {
display: block;
right: -20px;
top: 40px; }
}
Cheers!
Josue
that did the trick thanks!