|
Hi, I'm implementing this component on my site but I found out that in IE7 all the elements are diplayed one under the other. How can I solve this bug? |
The question has been closed for the following reason "The question is answered, right answer was accepted" by Matteo Bicocchi Feb 11 '11 at 15:52
|
The jquery.mb.scrollable component use the css attribute "display:inline-block" for each element; IE7 doesn't support this (This is really incredible!!). To solve this bug you have to change line 59: from
to
This bug will be fixed on version 1.0.1 |
|
Hi I had to add this on line 59 also in the vertical declaration display:"inline-block",float:"left" I had all the inside block of the scroller going to the right and not displaying correctly. Now solved thanks for the plugin |
|
This solution only fixes the elements for the images, but the controls does this as well in IE only. How to fix the controls part? As you can see here >> http://goldlilys.110mb.com/Goldlilys/ Edit: Nevermind, also had to change the css for the controls to include the float:left 1
Yes, but the controls are all defined in the CSS file and their display is controlled independently of the component. You should change the CSS adding "float:left" to all the controls CSS classes: controls div, #controls1 div{font-family:sans-serif; margin-top:5px; background:#fff; display:inline-block; *float:left; padding:6px; cursor:pointer; -moz-border-radius: 4px; -webkit-border-radius: 4px; -moz-box-shadow:#999 2px 2px 2px; -webkit-box-shadow:#999 2px 2px 2px; }
(Nov 17 '09 at 09:14)
Matteo Bicocchi ♦♦
|
|
Having the same issues on my vbulletin 4 styles website, i would really love to use this as i think it is awesome work :) |


