Carousel
(→FAQ) |
(→FAQ) |
||
| Line 48: | Line 48: | ||
#pb_carousel_next-1 { | #pb_carousel_next-1 { | ||
right: -70px !important; | right: -70px !important; | ||
| + | } | ||
| + | </pre> | ||
| + | |||
| + | '''The Carousel container is too large until the page finishes loading. How do I fix this?''' | ||
| + | |||
| + | The CSS styling below will cap the height of the Carousel so that overflowing content will not show before the page is done loading. Change the 75 to your desired height: | ||
| + | <pre class="brush:html"> | ||
| + | #pb_carousel-1 { | ||
| + | height: 75px; | ||
| + | overflow: hidden; | ||
} | } | ||
</pre> | </pre> | ||
Revision as of 15:46, November 30, 2010
Series: DisplayBuddy
Release date: October 26, 2010
Contents |
Description
Carousel lets you display a rotating set of images anywhere on your site with customizable content and effects. Multiple groups of images may be created for use anywhere on your site. Each group can be fully customized.
Features
- Display multiple images at once.
- Horizontal & vertical modes.
- Two optional navigation methods.
- Optional automatic transitioning.
- Upload images or use existing Media Library images.
- Customizable image size.
- Some Carousel options include:
- Pause on hover.
- Bullet navigation.
- Full speed control.
- Navigation arrows.
- Unlimited Carousel groups.
- Widget support.
- Shortcode support.
- Support for changing layouts. More coming soon.
- Customizable animation speeds.
- Automatic upgrades.
FAQ
How can I move the arrows from overlapping the Carousel?
The CSS styling below can be added to your theme's style.css. Adjust the -60 and -70 pixel values as needed.
To apply the change to all Carousels:
a.pb_carousel_default_prev {
left: -60px !important;
}
a.pb_carousel_default_next {
right: -70px !important;
}
To apply the change to an individual Carousel (replace the 1 with the specific entity you want to style):
#pb_carousel_prev-1 {
left: -60px !important;
}
#pb_carousel_next-1 {
right: -70px !important;
}
The Carousel container is too large until the page finishes loading. How do I fix this?
The CSS styling below will cap the height of the Carousel so that overflowing content will not show before the page is done loading. Change the 75 to your desired height:
#pb_carousel-1 {
height: 75px;
overflow: hidden;
}