Views Rotator Issue

Joined: 12/08/2008
User offline. Last seen 2 years 10 weeks ago.

I'm using Views Rotator to create rotating ads on my home page. On first page load all the ads are visible briefly and then disappear. How can you avoid this? I assume its just a css issue?

example:
http://drupal.fountainyouthchurch.com

-jamie

Joined: 03/09/2009
User offline. Last seen 1 year 28 weeks ago.
I get this from bugs for

I get this from bugs for Views Rotator on Drupal.org:

Set the css div id of the views rotator (which can be done when inserting the block into a panel/panel page), or use the id generated by Drupal
Set a width/height for the div
Set overflow to hidden
Set the *rotator item* (this 'Views' field name is generated by Drupal)
I believe you can use 'display: none;' or 'overflow: hidden;' - in my case I had more success using 'display: none;'

#home-rotator {
    width: 600px;
    height: 300px;
    overflow: hidden;
}

#home-rotator .views-rotator-item {
    display: none;
}

Hope that does the trick!

Joined: 12/08/2008
User offline. Last seen 2 years 10 weeks ago.
worked like a charm,

worked like a charm, thanks!

-jamie