[jQuery] Re: Cycle plugin an absolute positioning

2009-01-24 Thread illuminati78
illuminati78 wrote: > > > > malsup wrote: >> >> >>> > I'm sorry but where would i put the: $.noConflict() - and is that all >>> it >>> > has to say/type where it should be? - as i said I'm not good at this, >>> in >>> > wich script and where? >> >> In your case your custom jQuery code is

[jQuery] Re: Cycle plugin an absolute positioning

2009-01-24 Thread illuminati78
malsup wrote: > > >> > I'm sorry but where would i put the: $.noConflict() - and is that all >> it >> > has to say/type where it should be? - as i said I'm not good at this, >> in >> > wich script and where? > > In your case your custom jQuery code is all in an external script, > slideshow.j

[jQuery] Re: Cycle plugin an absolute positioning

2009-01-24 Thread Mike Alsup
> > I'm sorry but where would i put the: $.noConflict() - and is that all it > > has to say/type where it should be? - as i said I'm not good at this, in > > wich script and where? In your case your custom jQuery code is all in an external script, slideshow.js. In that file you can simply replac

[jQuery] Re: Cycle plugin an absolute positioning

2009-01-24 Thread illuminati78
illuminati78 wrote: > > I'm sorry but where would i put the: $.noConflict() - and is that all it > has to say/type where it should be? - as i said I'm not good at this, in > wich script and where? > I've put this script in the top after all other scripts have loaded: jQuery.noConflict()

[jQuery] Re: Cycle plugin an absolute positioning

2009-01-24 Thread illuminati78
I'm sorry but where would i put the: $.noConflict() - and is that all it has to say/type where it should be? - as i said I'm not good at this, in wich script and where? -- View this message in context: http://www.nabble.com/Cycle-plugin-an-absolute-positioning-tp16039437s27240p21638390.html Sen

[jQuery] Re: Cycle plugin an absolute positioning

2009-01-23 Thread Mike Alsup
> Ok - I got the centering thing working on FF Opera and IE7 - not tested in > IE6 yet - but now i have another problem - the slideshow dont work when > using with Lightbox2 - i made a test page - anyone have an idea on how to > fix this?  http://test.ywn.no/jQuery/test Looks to me like the slide

[jQuery] Re: Cycle plugin an absolute positioning

2009-01-23 Thread illuminati78
Ok - I got the centering thing working on FF Opera and IE7 - not tested in IE6 yet - but now i have another problem - the slideshow dont work when using with Lightbox2 - i made a test page - anyone have an idea on how to fix this? http://test.ywn.no/jQuery/ test -- View this message in contex

[jQuery] Re: Cycle plugin an absolute positioning

2009-01-21 Thread Mike Alsup
> also how and where to put in your codes if i have the slides in class="slideshow" id="jQuerySlideshow"> and my script is as follows: > > $(function() { >         $('#jQuerySlideshow').cycle({ >                 fx:    'fade', >                 speed:  1000 >          }); > > }); I don't underst

[jQuery] Re: Cycle plugin an absolute positioning

2009-01-21 Thread illuminati78
Very useful article but have you guys checked to see if it works in IE7 or IE6 - dont work there for me. just stacks the images there. also how and where to put in your codes if i have the slides in and my script is as follows: $(function() { $('#jQuerySlideshow').cycle({

[jQuery] Re: Cycle plugin an absolute positioning

2008-04-24 Thread [EMAIL PROTECTED]
Cycle needs all of the images to be in the DOM - but M. Alsup made an 'add images' option to load images after Cycle has set itself up. I couldn't get it to work right, but I think it was my fault for trying to be clever ;) Thread in this group here: http://tinyurl.com/6s2e2s . It has a link to M

[jQuery] Re: Cycle plugin an absolute positioning

2008-04-24 Thread Ken Gregg
Another follow up. I ran into cases where the first few photos were centered fine but the later ones were not. When you refreshed the page they were all centered. If the code is run in jquery ready() the photos may not all be loaded yet. Fix for this is to make sure they have width and height tag

[jQuery] Re: Cycle plugin an absolute positioning

2008-04-22 Thread Ken Gregg
Thanks helped a lot. An added note. For Firefox the $('div.pics a').each(function() { $(this).css({left: '50%', marginLeft: -$(this).width()/ 2}); }); needs to happen before you start the cycle plugin. Otherwise for some reason only the first photo is centered.

[jQuery] Re: Cycle plugin an absolute positioning

2008-04-07 Thread flex
thanks ! i was in need for that..