Open sub-menu by default on responsive layout
Hi guys, Thanks for a great theme. This works really well for us but I have a quick question about the 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
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; }
}