Hi there
I would like to make the following changes:
-
remove the header and footer border
-
remove the underline under the Remove
-
change the size / color text to body text
Hi there
I would like to make the following changes:
remove the header and footer border
remove the underline under the Remove
change the size / color text to body text
Go to your online store → Customize → Settings ->Custom Css
and paste this code in the custom css section
.drawer::part(header) {
border: none !important;
}
.cart-drawer:not(:has(.cart-drawer__footer:only-child))::part(footer) {
border: none !important;
}
.link, .prose a:not(.h1,.h2,.h3,.h4,.h5,.h6,.button,.link-faded,.link-faded-reverse) {
background: no-repeat !important;
}
.v-stack {
color: red !imprtant;
}
.text-subdued {
color: red !imprtant;
}
Hi @admintb
Please, provide another preview. Thanks!
Doesn’t work
Thanks for the info, Just to clarify which body text you like to have a color and change the sizes?
Check this one.
.drawer::part(header) {
border-block-end: none !important;
}
.drawer::part(footer) {
border-block-start: none !important;
}
.link, .prose a:not(.h1,.h2,.h3,.h4,.h5,.h6,.button,.link-faded,.link-faded-reverse) {
background: none !important;
transition: none !important;
}
.v-stack.justify-items-start.gap-2 * {
color: red;
}
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
I still see the borders and I don’t need the color red.
Find this one in your theme.css

change the border-block-end: none.

also this one.
border-block-start.
Note: you can change any color you like on the color code.
Please, dont forget to refresh and save. Thanks!