Hi

I have created a carousel using Views carousel that uses images scaled by Image Cache.
The carousel is working fine in FireFox but Internet Explorer is creating problem.
It shows the carousel borders and the navigation aroes but the images are not visible.

Please help!!

thanks in advance!

Comments

sej123’s picture

Following is the code of my view -


$view = new view;
$view->name = 'other_cms_book_carousel';
$view->description = 'boook carousel for Best Other CMS page';
$view->tag = '';
$view->view_php = '';
$view->base_table = 'node';
$view->is_cacheable = FALSE;
$view->api_version = 2;
$view->disabled = FALSE; /* Edit this to true to make a default view disabled initially */
$handler = $view->new_display('default', 'Defaults', 'default');
$handler->override_option('filters', array(
  'type' => array(
    'operator' => 'in',
    'value' => array(
      'best_other_cms_images' => 'best_other_cms_images',
    ),
    'group' => '0',
    'exposed' => FALSE,
    'expose' => array(
      'operator' => FALSE,
      'label' => '',
    ),
    'id' => 'type',
    'table' => 'node',
    'field' => 'type',
    'override' => array(
      'button' => 'Override',
    ),
    'relationship' => 'none',
  ),
));
$handler->override_option('access', array(
  'type' => 'none',
));
$handler->override_option('cache', array(
  'type' => 'none',
));
$handler->override_option('style_plugin', 'viewscarousel');
$handler->override_option('style_options', array(
  'skin' => 'ie7',
  'skin_path' => '',
  'vertical' => 0,
  'start' => '1',
  'offset' => '',
  'scroll' => '3',
  'visible' => 0,
  'animation' => 'slow',
  'easing' => '',
  'auto' => '3',
  'wrap' => 'both',
));
$handler->override_option('row_plugin', 'node');
$handler->override_option('row_options', array(
  'relationship' => 'none',
  'build_mode' => 'teaser',
  'links' => 1,
  'comments' => 0,
));
$handler = $view->new_display('block', 'Block', 'block_1');
$handler->override_option('block_description', '');
$handler->override_option('block_caching', -1);