humescores icon indicating copy to clipboard operation
humescores copied to clipboard

.toggle-on ul not triggering block property for dropdown menu

Open da5id5 opened this issue 7 years ago • 2 comments

/* Toggle small menu and children on */ .toggled-on ul, .sub-menu.toggled-on { display: block; }

not sure if _s or wp update broke this...

da5id5 avatar Apr 20 '17 09:04 da5id5

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 :)

frontenddevguy avatar Oct 16 '17 15:10 frontenddevguy

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

Jessicaraethomsen avatar Apr 10 '18 10:04 Jessicaraethomsen