For some reason this plugin works on all other browsers but IE, and it does something weird, instead of expanding it decides to shrink to a small small box, the other browser open and expand just fine.
Thanks,
Mike
For some reason this plugin works on all other browsers but IE, and it does something weird, instead of expanding it decides to shrink to a small small box, the other browser open and expand just fine.
Thanks,
Mike
Can you tell me some details? What Lightbox Plus theme are you using? What version of IE? Using IE can you go to http://23systems.net/plugins/lightbox-plus/ and scroll down to the Screenshots section and click on the image - tell me what happens. Thanks.
I'm using Lightbox Plus to make the front page title and image open up the that single post. It works on all safari, firefox, opera browsers on both mac and pc. But in IE7 it won't work. I tried every Lightbox Plus theme. I haven't got a chance to click on the image on the bottom of the Lightbox Plus site in IE7. The site I'm using lightbox plus is http://gorilla-force.com/
thanks!
I looked at the page source. It would appear that the culprit would be that you have this stating at line 184:
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 | <script type='text/javascript' src='http://gorilla-force.com/wp-content/plugins/lightbox-plus/js/jquery.colorbox-min.js?ver=1.3.6'></script> <script type='text/javascript' src='http://gorilla-force.com/wp-content/plugins/pixopoint-menu/scripts/hoverIntent.js.php?ver=r5'></script> <script type='text/javascript' src='http://gorilla-force.com/wp-content/plugins/pixopoint-menu/scripts/superfish.js?ver=1.4.8'></script> <script type='text/javascript' src='http://gorilla-force.com/wp-content/plugins/pixopoint-menu/scripts/superfish_settings.js.php?ver=1.0'></script> <!-- Lightbox Plus v1.6.3 --> <script type="text/javascript"> jQuery(document).ready(function($){ $.fn.colorbox.settings.transition = "elastic"; $.fn.colorbox.settings.speed = 0; $.fn.colorbox.settings.maxWidth = ""; $.fn.colorbox.settings.maxHeight = ""; $.fn.colorbox.settings.scalePhotos = false; $.fn.colorbox.settings.opacity = 0; $.fn.colorbox.settings.preloading = false; $.fn.colorbox.settings.current = "Image {current} of {total}"; $.fn.colorbox.settings.previous = "previous"; $.fn.colorbox.settings.next = "next"; $.fn.colorbox.settings.close = "close"; $.fn.colorbox.settings.overlayClose = false; $.fn.colorbox.settings.slideshow = false; $.fn.colorbox.settings.slideshowAuto = false; $.fn.colorbox.settings.slideshowSpeed = 500; $.fn.colorbox.settings.slideshowStart = "start"; $.fn.colorbox.settings.slideshowStop = "stop"; $("a[rel*=lightbox]").colorbox(); }); </script> |
The scripts are loading in the middle of the page which they shouldn't do.
And then you also have this (again) at 296:
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 | <!-- Lightbox Plus v1.6.3 --> <script type="text/javascript"> jQuery(document).ready(function($){ $.fn.colorbox.settings.transition = "elastic"; $.fn.colorbox.settings.speed = 0; $.fn.colorbox.settings.maxWidth = ""; $.fn.colorbox.settings.maxHeight = ""; $.fn.colorbox.settings.scalePhotos = false; $.fn.colorbox.settings.opacity = 0; $.fn.colorbox.settings.preloading = false; $.fn.colorbox.settings.current = "Image {current} of {total}"; $.fn.colorbox.settings.previous = "previous"; $.fn.colorbox.settings.next = "next"; $.fn.colorbox.settings.close = "close"; $.fn.colorbox.settings.overlayClose = false; $.fn.colorbox.settings.slideshow = false; $.fn.colorbox.settings.slideshowAuto = false; $.fn.colorbox.settings.slideshowSpeed = 500; $.fn.colorbox.settings.slideshowStart = "start"; $.fn.colorbox.settings.slideshowStop = "stop"; $("a[rel*=lightbox]").colorbox(); }); </script> |
Is there a stray wp_footer() call in your theme?
EDIT: Sorry I posted before I was done. So anyway, the scripts should be loading with the via the wp_footer() call in the footer.php file and they seem to be loading in the middle of the page. Then you have the actual setup function for colorbox being called twice once in the middle of the page and again in the footer. IE is very unforgiving with that kind of thing.
Thanks, I look around in the code to see if there is a stray wp_footer some where.
ok, i found a stray wp_footer and also only called the rel= once, but still in IE it shrinks.
Actually, now it works, i needed to refresh my cache! Thanks a ton!
Great, I'm glad I could help.
You must log in to post.