As mention in the title.
I tested the site with chrome, Firefox and IE.
works OK in both Chrome and Firefox.
but in IE, the images are not showing for the “latest posts” section.
website link
i use firebug in firefox to troubleshoot. but no idea what to look at in IE.
please help. thank you. im not even sure if this is a CSS problem.
Simply remove the attribute height=“auto” from the images.
Hi thanks for the reply.
works like a charm now.
height=“auto” doesn’t work in IE?
The “height” attribute can be pixels or a percentage - “auto” is not a valid value. Most browsers just ignore it, but IE gets pissy about it.
It does work in CSS, however, so something like this won’t explode:
CSS:
img.normal {height: auto;}
HTML:
<img class="normal" src="whatever.jpg" .... />