Hi,
So after hours of scanning through I worked out the issue to having a white screen, all your directories are corrrect and you retrieve this error only in firebug -
$("#slider").nivoSlider not found.
FIX:
Go to your widget you made, scroll to very end almost and edit this line:
$("#slider").nivoSlider
to
JQuery("#slider").nivoSlider
This is actually the correct way it should be called. a $ is the common way, it may not pick up the last imported library is JQuery especially if it isn't.
Regards, and Good luck!
|