Quote Originally Posted by marton_1 View Post
When I do an "inspect" on my free shipping icon I do indeed see

img {
max-width: 100%;
height: auto;
border: 0;
}
Be careful of altering this... you may be tempted to do this:


Code:
img {
    width: 75px;
    height: 50px;
    border: 0;
}
This will have a GLOBAL result. You need to nail down the CLASS (or perhaps its an ID) of the element in question, then write a block of css that declares ONLY for that element.