How to keep Divi Menu in footer from going Mobile

Divi Theme builder is great. It allows me to build headers and footers globally. But using  menus in the footers can cause problems – when they go mobile / burger drop down menu – they might not fit in the footer if they have more than 2 or 3 items. So, i want to keep the menu as a visible  inline  text links: How to keep Divi Menu in footer from going Mobile: HIde the mobile menu and keep the mornal menu in css at 980px: @media only screen and (max-width : 980px) { footer .et_pb_menu__menu { display: block !important; } footer .et_mobile_nav_menu { display: none!important; } }

Divi Theme builder is great. It allows me to build headers and footers globally.

But using  menus in the footers can cause problems – when they go mobile / burger drop down menu – they might not fit in the footer if they have more than 2 or 3 items.

So, i want to keep the menu as a visible  inline  text links:

How to keep Divi Menu in footer from going Mobile: HIde the mobile menu and keep the mornal menu in css at 980px:

@media only screen and (max-width : 980px) {

footer .et_pb_menu__menu {
display: block !important;
}

footer .et_mobile_nav_menu {
display: none!important;
}

}