Library's CSS file never gets loaded on cloud_zoom.module, line 44 :

$library_base .'/cloud-zoom.css' => array('group' => JS_LIBRARY),

Should be replaced by

$path .'/cloud-zoom.css' => array('group' => JS_LIBRARY),

(I'm on drupal 7.22)

Comments

Anonymous’s picture

I found this also to be the case. I think you need dirname rather than basename

$library = _cloud_zoom_check_path($path);
$library_base = dirname($library->uri);
lsolesen’s picture