Hi,
I have images in my footer that don’t show up in IE8, there are 4 images and from what I’ve been told it is only the .png images that aren’t showing.
Many thanks for the assistance.
Best,
Jonathan
Adding “img” before the “{” in my custom stylings where I was aligning the images worked to fix this but changed the alignment. What does this do?
Hey!
I checked your website using IE8 and the 4 images show as expected. This is the screenshot.
Regards,
Ismael
Thanks Ismael – yes that’s because I added “img” to my custom css.
I have custom stylings for these images for alignment, before when they weren’t showing, one (for example) was written as:
#widget_sp_image-2{
margin-left:-65px !important;
margin-top:10px !important;
float:left !important;
}
That didn’t work, but the one image that did had “img” in the code, so I changed to be the following:
#widget_sp_image-2 img{
margin-left:-65px !important;
margin-top:10px !important;
float:left !important;
}
Now they work. What did adding the “img” change that would fix this?
Thanks for your help.