1

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?

https://i.stack.imgur.com/8XOQq.jpg

asprtrmp
  • 1,034
  • 5
  • 14

1 Answers1

1

You can give the icon the width of 32px

HTML:

<img src="#" class="exampleClass">

CSS:

.exampleClass {
  width: 32px;
}
Julius
  • 81
  • 1
  • 7