I've got an image which is sized at 32 x 32 (i.e. the width and height attributes). However, the image remains sized at its default of 150 x 150.
Looking at the CSS I can see there's a width: auto in the parent CSS file. When I switch this off the image then resizes to 32 x 32.
I'd like to override this without altering the parent CSS file. How do I do this?
Note: I initially tried width: none which is not valid CSS.