I’ve some cuestión about the Main-Menu behaviour in Responsive-Mode smaller than 768px:
How can I disable the specific reduced Responsive Smart-Menu and use the same complete Menu like it’s appearing in display sizes above 768 instead of this?
Thanks for your response and greetings from Germany
@Rupprecht You can try using the custom css for this. In the dashboard, go to Appearance->Theme Options->Design Options Tab->Custom CSS. Paste the following css and click on ‘Save all Changes’.
@media only screen and (max-width: 767px) {
#access {
height: auto;
}
#access ul {
display: block;
}
#access select {
display: none;
}
}