Views
Accordion Help
From YourHead
Images show even when the Accordion is closed only in Internent Explorer
Your images are probably formatted with align image right or align image left and in some themes that can make images pop up in IE. They're styled with both "float" and "position" which is a no-no for IE. It causes them to float in less than predictable ways. In any case, you can get the floating more predictably by adding a little bit to the theme.
In your accordion page open up the Page Inspector window and choose the Code tab. Paste the snippet below in the CSS section:
.acStretch .image-left {
z-index: auto;
position:static;
}
.acStretch .image-right { z-index: auto; position:static; }
