humescores
humescores copied to clipboard
.toggle-on ul not triggering block property for dropdown menu
/* Toggle small menu and children on */ .toggled-on ul, .sub-menu.toggled-on { display: block; }
not sure if _s or wp update broke this...
That should say .children.toggled-on and is incorrectly specified as .sub-menu.toggled-on as far as the branch I am currently at (06_05).
navigation.js specifies both: _this.next( '.children, .sub-menu' ).toggleClass( 'toggled-on' );
It could be an _s update to class_walker.. This requires that we are merging in our local changes :)
Thanks for the answer, frontenddevguy! We had the same mistake. Just to clarify. Step 1: Go to: Header-menu.scss Step 2: Find: .sub-menu.toggled-on Step 3 Change to: .children.toggled-on