• ZIC

    (@metalscorpion)


    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!

    http://wordpress.org/plugins/responsive-lightbox/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author dFactory

    (@dfactory)

    We didn’t think of IE7 compatibility, but thank you for the tip!

    I have also come across this error. Thank you to Metalscorpion for posting a solution.
    Where do I post the css file? On the ‘Edit’ option of the plugin I do not see the above classes.
    Do I need to go on to my FTP to paste the css?
    Thanks,
    Ollie

    It won’t let me edit my previous message!

    I added in the code to the wp-like-ui-theme.css file and it did not fix the problem.

    Any ideas?

    Thanks,
    Ollie

    Plugin Author dFactory

    (@dfactory)

    You should add this to your theme CSS (preffered) or edit the swipebox CSS in plugin folder. The wp-like-ui-theme.css is for admin settings pages only.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘From 2nd images are not show on IE7’ is closed to new replies.