Woocommerce cart buttons border radius
-
Hi!
Im wondering what kind of css code i would need to enter
to give woocommerce cart button rounded edges with changing the border radius
Thanks!
Hello,
Please provide a relevant screenshot of the specific area with the URL of the website to check it myself and provide you with Custom CSS for that.
Best Regards
Rounded edges like in the picture 🙂
Atm im using css code you gave me earlier to change button coolors
.woocommerce-mini-cart__buttons .btn-cart {
background-color: blueviolet;
}
.woocommerce-mini-cart__buttons .checkout {
background-color: blue;
border-radius:absolute;
}
Attachments:
You must be
logged in to view attached files.
Hello,
I saw the screenshot you attached.
Please try adding the following Custom CSS in the Global Custom CSS area under Theme Settings >> Custom CSS.
a.button.btn-cart.wc-forward {
border-radius: 20px;
}
a.button.checkout.wc-forward {
border-radius: 20px;
}
Regards.
Xtemos Studios