Home › Forums › CSS › mobile menu is gone (wordpress) › Reply To: mobile menu is gone (wordpress)
April 28, 2015 at 10:37 am
#201264
Participant
It looks like you don’t have a menu to replace your main menu (.menu-primary) one once the media screen is less 800px
@media only screen and (max-width: 800px)
.menu-primary {
width: auto;
display: none;
}