Having trouble toggling my mobile menu at 1172px when the default is set to 850px. The code below is not working for me.
You can visit my website here: www.maria-educandoconamor.com
I have implemented the following CSS to make it work:
@media only screen and (max-width: 1172px) {
.header-nav, .header-nav-main, .nav-line-grow, .nav-size-small, .nav-spacing-medium, .nav-uppercase {
display: none !important;
}
.mobile-nav, .nav.nav-left {
display: flex !important;
}
}
Unfortunately, the solution is not achieving the desired result. Can anyone pinpoint what I might be doing wrong?
Thank you.