nextgen pro horizontal filmstrip moves up as browser narrows

It appears that various elements are having their height set dynamically via javascript, when the viewport width changes. This would probably override any css settings you’ve set. Looking at the code, there’s an embedded iframe, within which there’s javascript like this: var calculateHeight = function (settings) { … The code then calculates a height to … Read more

Output Custom Field value to shortcode

Depending on the ngg_images shortcode, you maybe need to echo the do_shortcode function. You can try function lilap_gid($atts, $content = “”){ $gid = get_post_meta(get_the_ID(), ‘gallery_id’, TRUE); ob_start(); echo do_shortcode( ‘[ngg_images tag_ids=”‘. $gid .'”]’); $content = ob_get_clean(); return $content; } add_shortcode( ‘gallery_display’, ‘lilap_gid’ );

How to enlarge thumbnail on mouseover?

Try this jQuery plugin: http://www.mind-projects.it/projects/jqzoom/ If you need help in making it interact with NextGEN gallery, let me know. You ultimately need to add the script via wp_enqueue_script and then setting it to fire on the NextGEN Gallery objects. (If you do this modularly enough, you might even have the makings of a pretty decent … Read more