DDblock displays properly in FF & chrome, but when in ie i can only see a sliver of the images which are hidden behind a gray box. Any ideas ?

Comments

ppblaauw’s picture

Status: Active » Postponed (maintainer needs more info)

Do you have a link to the page with the slideshow on your site?

JP9MM’s picture

ppblaauw’s picture

I don't see the issue with IE6, IE7, IE9, but my IE8 crashes on your site.

Which version of IE are you using?

JP9MM’s picture

Yes, I'm using IE 8.

JP9MM’s picture

Status says" needs more info" is there some other information from me you are waiting for ?

Thanks

ppblaauw’s picture

could you try to give div.slide a specified width and height.

Change:

div.ddblock-cycle-upright70p div.slide {
  display: none;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
}

To:

div.ddblock-cycle-upright70p div.slide{
 display:none;
 width:[xxx]px;
 height:[xxx]px;
 left:0;
 position:absolute;
 top:0;
}

replace [xxx] with the required width and height.

Hope this helps you further, please let me know.

JP9MM’s picture

Yes, that was it. Will change in other templates as well.
Thanks !