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/