diff --git a/js/small-menu.js b/js/small-menu.js index ec0b2783..d0e5a3cb 100644 --- a/js/small-menu.js +++ b/js/small-menu.js @@ -8,6 +8,7 @@ jQuery( document ).ready( function( $ ) { $( '.menu-toggle' ).click( function () { $( $masthead ).find( '.menu' ).toggle(); + $( this ).toggleClass( 'toggled-on' ); }); } diff --git a/style.css b/style.css index ccffdb61..6b50623f 100644 --- a/style.css +++ b/style.css @@ -385,6 +385,9 @@ a:active { } /* Small menu */ +.main-small-navigation.expanded { + background: pink; +} .menu-toggle { cursor: pointer; }