Blog de Keran » Développement Web, Featured » Multibox – Apparition scrollbar horizontale
Multibox – Apparition scrollbar horizontale
Complément de l’article Lightbox versus Multibox
Un problème d’apparition de scrollbar horizontale peut se produire après l’implémentation de multibox. Le soucis est provoqué par le fichier overlay.js. Pour le résoudre éditez le fichier javascript et modifier le frameborder en le passant de 1 à 0:
this.iframe = new Element(‘iframe’).setProperties({
‘id’: ‘OverlayIframe’,
‘name’: ‘OverlayIframe’,
‘src’: ‘javascript:void(0);’,
‘frameborder’: 0,
‘scrolling’: ‘no’
Filed under: Développement Web, Featured · Tags: debug, Lightbox, Multibox, Web











Yes this hack works ! thanks a lot !!!
Happy you find this hack usefull ! I should translate it in english too
A horizontal scrollbar problem may occur after multibox implementation. This bug is caused by overlay.js file. To resolve it, edit the javascript and change the frameborder value from 1 to 0.