Hellooooo,
Building a new site using jQuery Cycle for a slider. The design has both a pager and next/prev buttons. Found an example of using both, but the design calls for them to be all in one row. The number of sliders is dynamic as well (can add as custom post types in WP) so I can't just absolute position them.
Design looks like...
Got the pager part working. jQuery looks like...
- jQuery('#slider-inner')
- .before('<div id="pager">')
- .cycle({
- fx: 'fade',
- timeout: 1000,
- delay: -2000,
- pause: 1,
- pager: '#pager',
- pagerAnchorBuilder: function(idx, slide) {
- return '<li><a href="#"></a></li>';
- }
- });
Any ideas??? Thanks for any help!
Philip