I'm using the JJ Nextgen JQuery Carousel plugin and want to use the vertical option. I'm trying to get the vertical height the same as the browser height and I added this code (found it here) to my header file.

    <script type="text/jscript">
$(document).ready(function() {
    var galleryHeight = $(window).height() - 170; // just arbitrary offset for testing
    $('.jcarousel-container-vertical').css('height', galleryHeight); 
    $('.jcarousel-clip-vertical').css('height', galleryHeight);

});

// for the window resize
$(window).resize(function() {
    var galleryHeight = $(window).height() - 170; // just arbitrary offset for testing
    $('.jcarousel-container-vertical').css('height', galleryHeight); 
    $('.jcarousel-clip-vertical').css('height', galleryHeight);
});
</script>

I cant seem to get this to work. My Java script isn't that great so some help would be nice

Thanks Hanè

http://wordpress.org/extend/plugins/jj-nextgen-jquery-carousel/

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.