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

#246172
deb
Participant

WordPress creates ‘current-menu-parent’ by default where ever the page redirects, we can inspect the elements, there will be ‘current-menu-parent’ class on active page. With the help of this class, we can show its child ul by:

.current-menu-parent ul.sub-menu { display: block !important }