Reputation: 55
I'm using a Extra Wordpress Theme and I want that the menu go to mobile menu at certain resolution. So I found a Divi code @media only screen and max-width: 1243px and min-width: 980px { #top-menu-nav { display:none; }} @media only screen and max-width: 1243px and min-width: 980px { #et_mobile_nav_menu { display:block }} But #top-menu-nav don't exist on Extra theme, I already search on Extra Style CSS but I can't find the right one.
Upvotes: 0
Views: 104
Reputation: 1072
In Extra Wordpress Theme, top menu is inside 'et-navigation' css id. So instead of using #top-menu-na, use #et-navigation and apply the media only screen codes.
Upvotes: 1