Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Design Keeping left nav menu expanded Reply To: Keeping left nav menu expanded

#246167
deb
Participant

I think you should use jquery like:

jQuery(‘.sub-menu li a’).click( function() {
jQuery(this).parent().parent().addClass(‘open’);
});

and through css, you should do
ul.open { display: block !important; }

I have not checked it, but I think it should work :)

Cheers !!!