You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am having difficulty getting the burger menu to work using the starter template. Is a working example available?
Thanks!
EDIT:
I found the solution on the site (I just cannot remember where) -- the JavaScript code on the header page did not work. Adding the following to the bottom of the page did just fine:
<script>
// Show dropdown when clicked
$('#header-btn').on('click', function (e) {
$('#header-menu').toggleClass('active');
$('.nav-btn').toggleClass('active');
});
</script>
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I am having difficulty getting the burger menu to work using the starter template. Is a working example available?
Thanks!
EDIT:
I found the solution on the site (I just cannot remember where) -- the JavaScript code on the header page did not work. Adding the following to the bottom of the page did just fine:
Beta Was this translation helpful? Give feedback.
All reactions