Hi Hi @erincityguide,
It looks like the menu is visible on mobile devices because you have some custom styles in there that are making the menu visible.
It looks like the following bit of CSS is the culprit:
.main-navigation {
font-size: 2.25rem;
font-weight: 300;
display: block;
}
You should be able to remove the display: block; bit from the code block, and things should work just fine.
Let us know if that works.
Evan
Yes! Thank you, I didn’t see that. Worked perfectly.