I’m looking to adjust the footer padding to 0 in the cart drawer at the bottom of text on dawn theme for mobile and desk top
password samurai
A user needed to remove padding from the cart drawer footer in Shopify’s Dawn theme for both mobile and desktop views. The issue involved unwanted spacing at the bottom of the cart drawer.
Solution provided:
.drawer__footer and small.tax-note.caption-large.rte elementspadding-bottom and margin-bottom to 0 using !important flagsOutcome: The solution successfully resolved the padding issue. The user confirmed it worked as intended.
I’m looking to adjust the footer padding to 0 in the cart drawer at the bottom of text on dawn theme for mobile and desk top
password samurai
Step 2: Find file base.css and add this code at the end of the file
small.tax-note.caption-large.rte {
margin-bottom: 0 !important;
}
.drawer__footer {
padding-bottom: 0 !important;
}
Result:
Best,
Liz
It worked thank you