Round corners add to cart and quantity selector product page DAWN theme

Hello!

I am using the dawn theme and my URL is carcleansweden.se.

I would like to have round corners on the add to cart button and on the quantity selector:

I would hugely appreciate the help!

1 Like

Hello @CarCleanCC ,

Follow these steps:

  1. Go to Online Store → Theme → Edit code

  2. Open your base.css file and paste the following code at the bottom:

.button:after, .quantity:after{
border-radius: 6px !important;
}

Regards
Guleria

1 Like

Hello @CarCleanCC

Go to Online Store, then Theme, and select Edit Code.
Search for assets/base.css Add the provided code at the end of the file.

.product-form__submit,
.product-form__submit::before,
.product-form__submit::after {
    border-radius: 8px !important;
}
.quantity:before , .quantity:after{
    border-radius: 8px !important;
}

1 Like