@Levike98 add !important to it, so it becomes
@media screen and (max-width: 749px) {
.header{padding-left: 0 !important; padding-right: 10px !important;}
}
A user encountered a logo alignment issue in the Dawn theme’s mobile header. The logo wasn’t flush left like the cart icon was flush right, despite being left-aligned in settings.
Solution provided:
base.css file (Shopify Admin → Online Store → Theme → Edit code)!important flags were added to override existing stylesOutcome:
The issue was resolved after applying the modified CSS with !important declarations. The problem only affected mobile view; desktop display was correct.
@Levike98 add !important to it, so it becomes
@media screen and (max-width: 749px) {
.header{padding-left: 0 !important; padding-right: 10px !important;}
}