Open sub-menu by default on responsive layout
Is it possible to open sub-menu items by default whilst on the responsive layout only? We find that users are not using the "+" sign and are missing out on information that we need to offer them.
Many thanks for any help with this.
Jason
Comments
I just added this to the custom CSS:
/* make sub-menu always visible on mobile devices: */
@media only screen and (max-width: 760px) {
.sub-menu { display: block !important; }
}