From 2nd images are not show on IE7
-
Hello!
Great plugin!
And I want to report a bug on IE7. Bug description: please see topic title, that’s all :).
This bug happened because the IE7 is not support display: inline-block attribute.
See:#swipebox-slider .slide { background: url("img/loader.gif") no-repeat center center; height: 100%; width: 100%; line-height: 1px; text-align: center; display: inline-block; } #swipebox-slider .slide img, #swipebox-slider .slide .swipebox-video-container { display: inline-block; max-height: 100%; max-width: 100%; margin: 0; padding: 0; width: auto; height: auto; vertical-align: middle; }
Solution: just hack display attribute on IE7 to solved this bug
Here is fixed code:#swipebox-slider .slide { background: url("img/loader.gif") no-repeat center center; height: 100%; width: 100%; line-height: 1px; text-align: center; display: inline-block; *display: inline; *zoom: 1; } #swipebox-slider .slide img, #swipebox-slider .slide .swipebox-video-container { display: inline-block; *display: inline; *zoom: 1; max-height: 100%; max-width: 100%; margin: 0; padding: 0; width: auto; height: auto; vertical-align: middle; }
Thank for Great plugin!
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘From 2nd images are not show on IE7’ is closed to new replies.