I would like to make all buttons rounded, except for the “Add To Cart” buttons in all collection pages and the product pages (also checkout button)
Thank you
I would like to make all buttons rounded, except for the “Add To Cart” buttons in all collection pages and the product pages (also checkout button)
Thank you
please try
/* Rounded buttons */
button:not(.btn-cart) {
border-radius: 20px;
}
/* Add to cart button */
button.btn-cart {
border-radius: 0;
}
This code will apply the border-radius property to all buttons except for the “Add to Cart” button, which will have a border-radius of 0, effectively making it not rounded.