Hi,
We seem to have some extra padding above our mobile nav menu. Any idea how to get rid of this?
Website is https://shopcestmimi.com/
Hi,
We seem to have some extra padding above our mobile nav menu. Any idea how to get rid of this?
Website is https://shopcestmimi.com/
@PamelaL17 , do this to fix it in 20 seconds:
.mobile-nav-wrapper{
min-height: unset !important;
max-height: 60vh !important;
}
Please let me know whether it works.
Kind regards,
Diego
Please add below code in below of assets/theme.css file
.mobile-nav-wrapper {
height: auto;
min-height: auto;
}
hii, @PamelaL17
Paste this code on top of the theme.scss file.
ul#MobileNav {
margin-top: -195px !important;
}
Thank You.