An image on my site is showing as the wrong image [closed]

You are only seeing the top of the image, because your background image is much larger than the size you have for #smoothup in the css:

in style.css #smoothup {height: 40px; width: 90px;}

The actual image is 122 x 105.

You need either:

1: modify the css defining #smoothup to fit the size of the background image

or

2 modify the background image to fit the size of the container

or

3: use CSS3 background-size to scale the background image (not supported in IE8 and below) and would look wrong because you are not matching the aspect ratio.

If you are deliberately scaling the image down for retina display, you put it in the code as an img element and scale down with css, but maintain the aspect ratio