PenciDesign Supporter replied
Hi,
1. Please go to Appearance → Customize → WooCommerce → Single Product: turn off the "Convert select into the button" option,
2. Navigate go to Appearance → Customize → Custom CSS then add the following custom CSS code:
.woocommerce div.product form.cart .button {
box-shadow: 0 0px 0px 2px rgba(255,255,255,1) inset;
-webkit-box-shadow: 0 0px 0px 2px rgba(255,255,255,1) inset;
-moz-box-shadow: 0 0px 0px 2px rgba(255,255,255,1) inset;
-webkit-border-top-right-radius: 10px;
-webkit-border-bottom-left-radius: 10px;
-moz-border-radius-topright: 10px;
-moz-border-radius-bottomleft: 10px;
border-top-right-radius: 10px;
border-bottom-left-radius: 10px;
border: 2px solid var(--pcpage_btn_atc_bg_cl);
}
.woocommerce div.product form.cart .button:hover {
border-color: var(--pcpage_btn_atc_bg_hv_cl);
}
Regards,
PenciDesign.