Quote Originally Posted by rbarbour View Post
The plugin you are using on the above site is not zen magnific, and the images are loading fine in my browser.

You may need to clear your catch.

If you have in fact swapped out zen magnific for another, it will be hard to diagnose the issue but my first guess would be a jQuery conflict in which case you could swap any jQuery code

from this:
Code:
$(document).ready(function() {
$('#whatever_class_or_id').whatever_function({
to:
Code:
var jq = $.noConflict();
jq(document).ready(function() {
    jq('#whatever_class_or_id').whatever_function({
I had actually just uninstalled zen_magnific and installed fual slimbox. I am sure I will like zen_magnific much better so I will uninstall fual slimbox and reinstall zen_magnific and let you know when I have reinstalled it so you can look at it.