I have used the following css to increase the font size of my "Main" sub menu headings (MegaMenu No Link Titles) - using this code:
nav.std-menu ul.sub-menu {
font-size: 18px!important;
}
That works great on desktop / iPad Views, however my code for mobile is not changing the font size to 18 as done on my desktop version. This is the code I have tried:
@media only screen and (max-width: 480px) {
nav.std-menu ul.sub-menu {
font-size: 18px!important;
}
}