I’d like to know what class I need to target to customise WooCommerce buttons globally?
Hey there,
Thank you for reaching out to us. Try targeting the woocommerce buttons with .woocommerce .button
selector. For example:
.woocommerce .button {
background: blue;
border: darkblue;
box-shadow: none;
}
However you can find out the button classes using chrome’s developers tool and use it accordingly (see screenshot)
I am sharing the resource that you can refer to get started with dev tools.
https://developers.google.com/web/tools/chrome-devtools/css/
Hope this helps!
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.