Hello, is someone able to help me remove this weird space beneath the header only in mobile version? Desktop version seems to be looking fine.
Thanks a lot.
Please add this code to Custom CSS in Online Store > Themes > Customize > Theme settings
@media (max-width: 749px) {
html .cart-notification-wrapper.page-width {
padding: 0 1rem;
}
}
Thank you so much Dan. That worked Perfectly.
Please use this code instead
@media (min-width: 750px) {
html .cart-notification-wrapper.page-width {
padding: 0 2rem !important;
}
}