Hi,
I've got two carousel views on the front page of a site I am working on. They work on FF2 but not on IE. Here is the behavior I am getting;
- one is always blank
- the other sometimes displays, sometimes doesn't, and sometimes disappears when I scroll the page

Has anyone encountered this ? Are you getting this to work with multiple carousels on one page ?

Thanks

Comments

PGiro’s picture

Ok, I have figured out one source of randomness : the carousel disappears when the views slideshow module is being used on the same page. It disappears right at the time of the first transition. This only applies to IE. Any ideas ?

Of course, I still have the issue of one carousel never displaying altogether in IE

PGiro’s picture

Status: Active » Closed (fixed)

For those interested, I simply stopped using this module, downloaded jcarousel module and added the following to my view header with a PHP code filter:
jcarousel_add("#YOUR_VIEW_ID ul", array(), "custom", "PATH_TO_YOUR_SKIN/skin.css");

Works perfectly with 2 carousels and a view slideshow on a single page with IE, FF and chrome

Gabrieles’s picture

Here is an example that shows how to add some more fancy stuff to your jcarousel-enhanced view.
(To find the view ID save the view an use firebug.)
If you are using a standard view you do not need to specify the path to the css.

<?php
jcarousel_add('#block-views-Public_Events_Block_new-block_1 ul', array('vertical' => 'true', 'scroll' => '3', 'auto' => '3', 'wrap'=> 'last', 'animation'=> 'slow'), 'tango');
?>