Thanks Mike!
It's currently on the development page at www.imagine.yidio.com. I've
put some placeholders in for the time being.
Besides that the pertinent files are:
www.imagine.yidio.comscripts/jquery-code.js
www.imagine.yidio.com/jquery-style.css
Zach
On Oct 16, 10:53 pm, Mike Alsup <[EMAIL PROTECTED]> wrote:
> Hi Zach,
>
> Post a link or send me one. We'll get it worked out.
>
> Mike
>
> On Oct 16, 6:35 pm, Zach Dunn <[EMAIL PROTECTED]> wrote:
>
> > Appreciate the help Mike, unfortunately when I plugged that in it
> > stopped the slideshow all together. Is there something that might
> > interfere with that?
>
> > On Oct 16, 6:26 pm, Mike Alsup <[EMAIL PROTECTED]> wrote:
>
> > > > $('#headline-rotation').before('<ul id="nav">').cycle({
> > > > fx:'fade',
> > > > speed:'slow',
> > > > timeout: 4000,
> > > > pager:'#nav',
>
> > > > // callback fn that creates a thumbnail to use as pager
> > > > anchor
> > > > pagerAnchorBuilder: function(idx, slide) {
> > > > slide = $('#headline-rotation .headline-item
> > > > img:eq('idx')').src
> > > > return '<li><a href="#"><img src="' + slide.src
> > > > + '" width="100"
> > > > height="50" /></a></li>';
> > > > }
> > > > });
>
> > > Try this:
>
> > > pagerAnchorBuilder: function(idx, slide) {
> > > var src = $('img',slide).attr('src');
> > > return '<li><a href="#"><img src="'+src+'" width="100"
> > > height="50" /></a></li>';
> > > }