The credit card icons on the WooCommerce Orders back-end page are suddenly very large.
How would I write CSS to reduce those icons back down to something like 32px wide?
The credit card icons on the WooCommerce Orders back-end page are suddenly very large.
How would I write CSS to reduce those icons back down to something like 32px wide?
You can give the icon the width of 32px
HTML:
<img src="#" class="exampleClass">
CSS:
.exampleClass {
width: 32px;
}