ah thank you for that help, that clears up most of the issue. THe home
page bug is very "buggy" it happens once in a while and with a refresh
generally fixes itself.
I guess the vast majorit of the time there is no issue. Thank you very
much! I really appreciate it.
On Jan 13, 12:15 pm, "danny.c
On another note, if you use fx: 'slideHorz' it will slide in the
appropriate direction(left/right), depending on button you click
(downwards = left, upwards = left).
On Jan 13, 10:33 am, keli marks wrote:
> Hey all:
>
> I'm having some odd bugs with 2 different kind slideshows.
>
> www.exhaciend
Homepage slideshow seems to work fine for me. Have you since found the
error?
As for the events slideshow, you should be able to avoid image size
issues, try adding height and width attributes to the tags.
Should fix that.
-Dan
On Jan 13, 10:33 am, keli marks wrote:
> Hey all:
>
> I'm having
> Thanks for any help on this.
.slideshow li {
width: 100% !important
}
Try this:
after: function(curr, next, opts) {
var alt = $(next).find('img').attr('alt');
$('#caption').html(alt);
}
On Nov 22, 12:12 am, Wroathe wrote:
> You're on the right track!!! I added an alt attribute to the
> first .featured-image and it displayed exactly where I wanted it!!!
> T
You're on the right track!!! I added an alt attribute to the
first .featured-image and it displayed exactly where I wanted it!!!
The question is now how to select the img tag nested in it (in the
interest of writing valid xhtml).
On Nov 21, 11:06 pm, Wroathe wrote:
> I tried it and it didn't work
I tried it and it didn't work Mike. I did a console.log of the alt
variable afterwards and it was tossing undefined. I think this is
because I have all of the slides wrapped in divs. I'm not sure how to
remedy that problem. Is there a way of selecting the img's alt
attribute using the code you just
I'll give that try and see how it works - thanks in advance for the
reply. I really appreciate it.
On Nov 21, 7:01 pm, Mike Alsup wrote:
> Try using the 'after' callback:
>
> $(function() {
> $('div#slides').cycle({
> timeout: 7000,
> pause: 1,
> pager: 'div#buttons',
Try using the 'after' callback:
$(function() {
$('div#slides').cycle({
timeout: 7000,
pause: 1,
pager: 'div#buttons',
pagerAnchorBuilder: function(idx) {
return '' + idx + '';
},
after: function(curr, next, opts) {
var alt
Finally discovered my own answer to this - the original code only
fails if the fx: parameter is set to 'none' - if set to any other
transition effect it works perfectly. Not sure why this should be, but
there you go.
Can anyone help with this at all?
Matthew
> Given that, how would you allocate a timeout for say the first 3
> slides and then have the other slides all running at the default
> timeout?
Keep a counter and reference/update it in the timeoutFn. After 3
calls to the timeoutFn, return false thereafter.
Given that, how would you allocate a timeout for say the first 3
slides and then have the other slides all running at the default
timeout?
On Sep 9, 8:06 pm, Mike Alsup wrote:
> On Sep 8, 6:48 pm, Mike Alsup wrote:
>
>
>
> > > Hey thanks Mike, I got the random timeouts working, however all the
> When you first visit the page, firefox fails to render the images
> correctly with the first overflowing it's container and the rest
> appearing as squashed thumbnails. When you refresh the page (but not
> shift+refresh) it all works fine.
> Seehttp://www.thecathedraldeli.com/beta.html
> for
On Sep 8, 6:48 pm, Mike Alsup wrote:
> > Hey thanks Mike, I got the random timeouts working, however all the
> > slideshows fade in at the same time on the first transition... is
> > there any way around that? Here is my code:
>
> >
> Hey thanks Mike, I got the random timeouts working, however all the
> slideshows fade in at the same time on the first transition... is
> there any way around that? Here is my code:
>
>
Hey thanks Mike, I got the random timeouts working, however all the
slideshows fade in at the same time on the first transition... is
there any way around that? Here is my code:
$(document).ready(function() {
$('.slideshow').cycle({
fx: 'fade',
timeout: 1,
> Hey, does anyone know how I can have the timeout change randomly for
> every slide?
>
These demos might get you going in the right direction:
http://www.malsup.com/jquery/cycle/timeout.html
http://www.malsup.com/jquery/cycle/timeout2.html
Hi there,
I am having a similar issue, but the functionality I want to achieve
is a bit simpler. Right now I want to apply a link of my choosing to
each slide (in the HTML of the slide), but t this breaks the alt
information pulled from the the pager and displays an "undefined"
error on the page.
the details you want to display can also be contained elsewhere if you
want by using the index of the current slide to match the index of
another set of containers
function onAfter(curr, next, opts) {
var index = opts.currSlide;
// use index to refernece other contai
Thanks guys,
Using that, this is what i have:
$(function() {
$('#slides').before('').cycle({
fx: 'fade',
speed: 'fast',
timeout: 0,
pager: '#nav',
after: onAfter
});
});
f
> I would like to add another attribute to the img tag called "link."
>
> This attribute would define where the image would link to if someone
> clicks the image.
>
> Then i could do something like: .append('' + this.alt + ' Read more ›');
>
> Does anyone know what/where i can add in the cycle js
you can use the "before" and "after" options in the API to write
functions that trigger on each slide to do what you want
Mescalero wrote:
I would like to add another attribute to the img tag called "link."
This attribute would define where the image would link to if someone
clicks the i
Thanks! Problem solved. It is always the simple things. I appreciate
the help.
On Jul 1, 8:54 am, Mike Alsup wrote:
> > I am having an odd error where the pager generates links but they
> > don't change the slide in FF and Safari. The biggest surprise of all
> > is that it actually works in IE.
> I am having an odd error where the pager generates links but they
> don't change the slide in FF and Safari. The biggest surprise of all
> is that it actually works in IE.
>
> Here is the page I am referring to:http://76.12.208.222/
Try this:
#slideshowPage { position: relative: z-index: 100;
I am having the exact same issue.
On firefox and safari the cycle woks fine.
In ie7 the images are displayed beneath each other.
I hope someone will reply :)
Cheers, Robert
On 8 jun, 14:00, buschii wrote:
> Hi folks,
>
> I am new here and I seached vor problems with IE7 and JQuery Cycle
> Plug
slideExpr: null,
Trailing commas in arrays cause JavaScript errors in IE. Please
enable debugging in your browser so that you can see these errors
reported on the status bar.
On Jun 8, 8:00 am, buschii wrote:
> Hi folks,
>
> I am new here and I seached vor problems with IE7 and JQuery Cyc
> I have been using jQuery cycle plugin for a banned with some content
> that fades in and out in a slideshow sort of thing but I would like to
> be able to div individually. Rather than saying all instances of
> #projects become a slide, i would like #project_img, #project_title
> and #project_de
2009/6/3 Arie :
>
> Hello,
>
> I tried to use Cycle Plugin, and it works great. I have the "Previous
> and Next" navigation work without any problem.
>
> This is the code I have:
>
> -
>
> $(function() {
> $('#feat-container').cycle({
> prev: '#prev',
> next: '#next',
> timeou
Oops. Sorry I misspelled your name, Adrian.
--Karl
On Jun 1, 2009, at 3:58 PM, Karl Swedberg wrote:
On Jun 1, 2009, at 2:27 PM, Adrian Chen wrote:
Use CSS to control the initial display of the images.
How would that be done? Right now this is what I'm using
.pics {
height: 220p
On Jun 1, 2009, at 2:27 PM, Adrian Chen wrote:
Use CSS to control the initial display of the images.
How would that be done? Right now this is what I'm using
.pics {
height: 220px;
width: 960px;
margin-left: auto;
margin-right: auto;
}
.pics img {
width: 960px;
Found how how to do it:
.pics {
width: 960px;
height: 220px;
margin-left: auto;
margin-right: auto;
overflow: hidden;
}
.pics img {
width: 960px;
height: 220px;
}
overflow: hidden did the trick. Thanks!
On Jun 1, 1:27 pm, Adrian Chen wrote:
>
> Use CSS to control the initial display of the images.
How would that be done? Right now this is what I'm using
.pics {
height: 220px;
width: 960px;
margin-left: auto;
margin-right: auto;
}
.pics img {
width: 960px;
height: 220px;
}
> I'm trying this Cycle Plugin, but whenever I load, lets say I have 5
> images in the rotation pool, they all show up (briefly) whenever the
> page reloads, and then they dissapear (starting the rotation).
>
> Is there any way to avoid this? The images I'm using are 960 x 220, so
> it pretty much
> I would like cycle to use my existing anchors
These demos show how to use existing markup for the pager links:
http://www.malsup.com/jquery/cycle/pager3.html
http://www.malsup.com/jquery/cycle/pager4.html
Ok, I think I've got it.
I am now setting up the second slide show at the click event and then
showing it immediately following. Like this:
[code]jQuery('#buttons [href]').click(
function(){
var element = jQuery(this);
var href=element.attr("href");
jQuery('#
Ok,
http://mid-awe.com/webs/presidential/index.html
I'm noticing also now that an additional #s2 slide show is missing
from the initial page load. I'll look at that to see if the issues are
related. Any help is greatly appreciated.
> Can you post a link to your test page?
> Just to clarify; I have two slide shows using the cycle plugin. They
> are both set to display using the same css. Only one should display at
> a time, I want the page to load with one shown and the other hidden,
> then after a link is clicked the slide shows should toggle to display
> the previ
Just to clarify; I have two slide shows using the cycle plugin. They
are both set to display using the same css. Only one should display at
a time, I want the page to load with one shown and the other hidden,
then after a link is clicked the slide shows should toggle to display
the previously hidd
> Thanks for your help the issue is solved. One question to Mike: on the
> jqery site the newest version is 2.34, why did you not put your actual
> version 2.63 - the one that solved my problem - to the jquery site?
Fair question - sorry about the confusion. I don't update that page
very often b
Hi Mike
Hi Thomas
Thanks for your help the issue is solved. One question to Mike: on the
jqery site the newest version is 2.34, why did you not put your actual
version 2.63 - the one that solved my problem - to the jquery site?
Beside updating the cycle plugin I had to build an img class in my c
Hello flyfisherman,
Do you have solved the issues with the solution provided by Mike ?
Thanks,
Thomas
On 14 mai, 00:16, Mike Alsup wrote:
> 2.63 is the latest version of Cycle. And your images do not have
> width/height attributes.
>
> Mike
>
> On May 13, 5:42 pm, flyfisherman wrote:
>
>
>
2.63 is the latest version of Cycle. And your images do not have
width/height attributes.
Mike
On May 13, 5:42 pm, flyfisherman wrote:
> Hello Mike
>
> I have the newest version 2.34 installed and I also gave a width und
> height for the picture id in my css-file (view source code).
> So what
Hello Mike
I have the newest version 2.34 installed and I also gave a width und
height for the picture id in my css-file (view source code).
So what else could it be?
txs
Markus
On 13 Mai, 23:01, Mike Alsup wrote:
> > I am using the cycle plugin on a start page to cycle 5 pictures in a
> > div
> I am using the cycle plugin on a start page to cycle 5 pictures in a
> div id "picture". The first load of the site the pictures are shown to
> small (firefox) or outside the container (opera, safari Win), after a
> reload all is ok!!
>
> I have no clue why this happens. Is there any advice?
>
>
Ok, found the solution.
I am not using the slideExpr but the parent of the container to add
slides and it works.
Also with the a pageranchorbuilder it works when I append the new
pager items.
What is missing is to keep track of images already loaded in the
jQuery script to prevent that images ar
Experimented some more:
When I add
opts.addSlide(ddblockGetSlideHTML(data.slideImg), fwd == false);
The images are appended after the other images, but still not in the
slideExpr
When I add
opts.$cont = '#ddblock-' + opts.ddblocknr + ' .ddblock-container';
before the addslide
It puts the sl
Maybe the issue is really addSlide in combination with slideExpr.
When images are added they are prepended instead of appended.
So the issue will be how to use slideExpr with addSlide.
If more info is needed, please let me know
On Apr 13, 8:12 am, ppblaauw wrote:
> I read a lot of posts about
Thanks a lot!
That's finally it... phew.
I really appreciate your help.
On Apr 10, 1:11 pm, Skinnyl wrote:
> Hi
>
> Thanks so much for that it works perfectly... except...
>
> If I add a text filled div to be included in the cycle like this:
>
>
>
>
>
>
> text text text
>
>
>
>
> ... Once i've cycled to 4 the 3 images disapp
Hi
Thanks so much for that it works perfectly... except...
If I add a text filled div to be included in the cycle like this:
text text text
... Once i've cycled to 4 the 3 images disappear and only the text div
works. I've used classes instead of IDs
> Ok so i've solved it by changing all the tags and adding new scripts
> for each one
>
> http://www.lukeskinnerdesigns.co.uk/jq-test.html
>
> It looks good but i'm concerned that i'm gonna have a huge amount of
> css and javascript with all the different slideshows.
>
> So is there a better way t
Ok so i've solved it by changing all the tags and adding new scripts
for each one
http://www.lukeskinnerdesigns.co.uk/jq-test.html
It looks good but i'm concerned that i'm gonna have a huge amount of
css and javascript with all the different slideshows.
So is there a better way to do it?
Thanks for your reply but no luck...
That does bring up two sets of navs that work but they are both with
the first #portfolio div as i mentioned in my fist post (situation 2)
They work fine but in the wrong place.
I'm sorry in my previous reply replace the words portrait with the word
portfolio ... sorry.
Ralph
On Fri, Apr 10, 2009 at 12:17 AM, Ralph Whitbeck
wrote:
> Hey Luke,
>
> You have two ID's with the same ID "portrait" You can only have one ID
> named portrait on the page...name the other portrai
Hey Luke,
You have two ID's with the same ID "portrait" You can only have one ID
named portrait on the page...name the other portrait2 or something.
In your jQuery code change $("#portrait")... to $(".pics")...
Both will then work.
Although there seems to be other issues both cycles now cycle.
> $('#imgBox').after('').cycle({
> fx:'fade',
> timeout:4000,
> speed:1500,
> pager: '#imgCycle',
> pagerAnchorBuilder: function(idx, slide) {
> return ' href="#">img'+idx+'';
>
Hey Mike, thanx for your answer. I put the two divs into one and
positioned the elements with css. it works now.
On 16 Feb., 13:22, Mike Alsup wrote:
> > $('#gastroThumbs').cycle({
> > fx: 'fade',
> > speed: 500,
> > timeout: 0,
> >
Hey Mike, thanx for your answer. I put the two divs into one and
positioned the elements with css. it works now.
On 16 Feb., 13:22, Mike Alsup wrote:
> > $('#gastroThumbs').cycle({
> > fx: 'fade',
> > speed: 500,
> > timeout: 0,
> >
> $('#gastroThumbs').cycle({
> fx: 'fade',
> speed: 500,
> timeout: 0,
> next: '#next',
> pager: '#thumbNav'
> }),
> $('#gastroBilder').cycle({
> fx: 'fade',
> s
> I'm having a problem with cycle which refuses to see the links I have
> put in the divs.
> When I click on my links it just move on the next slide (next div)
> I don't now how to fix this problem.
> I have seen there is a parameter "pagerAnchorBuilder: null" ... maybe
> there is any chance
> to
Still no joy, very frustrating :( Although Im no expert...
Would really appreciate to hear from anyone who has had a similar
issue, and if they ever found a fix...
A.
On Feb 3, 5:51 pm, Ado wrote:
> Thanks for looking, cant see much on Google at the moment apart from
> people having similar
Thanks for looking, cant see much on Google at the moment apart from
people having similar problems with flash video when they try and make
it display:none (which is esentially cycle plug-in is doing)
Anybody else have any code for this? I will keep hunting and post back
here if I come across any
> I dont suppose you have a quick demo, or code to hand to show me how
> this would be done. Would be most appreciated...
Hmm, I thought I did but can seem to find it. It depends what
functions are exposed on the element so you may want to google it.
Maybe someone else will chime in with a sugge
Thanks Mike.
I dont suppose you have a quick demo, or code to hand to show me how
this would be done. Would be most appreciated...
Adi
On Feb 3, 4:46 pm, Mike Alsup wrote:
> > Im trying to create a rotating promo area using the cycle plug-in.
>
> > I have to to embed YouTube videos (example
> Im trying to create a rotating promo area using the cycle plug-in.
>
> I have to to embed YouTube videos (example
> herehttp://www.grouptools.com/adrian/sbc-new/promo/)
>
> The main issue is FF works fine in that if a video is playing and you
> go to another 'slide' the video/sound stops. Where
Mike
Perfect advice. You're awsome. Works now. Thank you.
acuitas
On Jan 25, 12:55 pm, Mike Alsup wrote:
> > Can someone help? I have two problems. Both I think are tiny.
>
> > First problem: I'm almost done successfully installing the Cycle
> > plugin.
> > If you use FireFox to go here:
>
> >
> Can someone help? I have two problems. Both I think are tiny.
>
> First problem: I'm almost done successfully installing the Cycle
> plugin.
> If you use FireFox to go here:
>
> http://acuitas.com/index.php
>
> then click on the Refresh button, you'll see it works great.
> Please tell me why I n
> wow that works awesome. even able to apply it to several cycles. i saw
> a posting about applying a delay to several cycles so that one starts
> a couple seconds after another cycle (http://groups.google.com/group/
> jquery-en/browse_thread/thread/fa74609bb63f46a/40f0bec91d0c6574?
> lnk=gst&q=jq
wow that works awesome. even able to apply it to several cycles. i saw
a posting about applying a delay to several cycles so that one starts
a couple seconds after another cycle (http://groups.google.com/group/
jquery-en/browse_thread/thread/fa74609bb63f46a/40f0bec91d0c6574?
lnk=gst&q=jquery+cycle
> I have been searching for a way to have 1 pager to control 2
> slideshows with the same number of slides. Where one slideshow can
> have a scrollLeft and another just with a fade. Is this possible with
> the current plugin?
Here's a demo:
http://jquery.malsup.com/cycle/pagers.html
> But if you could test in a pentium, the cpu ups to 90-100% and the
> memory will increase until the pc will block. I had tested in 2
> different pc ( more than 15 minutes but it´s a problem if you have the
> window open).
Yes, as I mentioned, JavaScript animation is very CPU intensive. If
you'
On 7 nov, 19:00, Mike Alsup <[EMAIL PROTECTED]> wrote:
> > There is a problem with pc memmory when the plugin is working ( Tested
> > in a few pcs). At Least you need a 2 core duo for a not problem
> > experiencie, but try in a pentium 4 with 1gb of ram... and you will
> > Khnow.
> > Open the tas
> There is a problem with pc memmory when the plugin is working ( Tested
> in a few pcs). At Least you need a 2 core duo for a not problem
> experiencie, but try in a pentium 4 with 1gb of ram... and you will
> Khnow.
> Open the task administrator and test de memmory.
It's not clear to me wheth
Thanks Mike,
I got it working, i have to add inline widths to the first slide for
the background endcap containers.
The IE 6 problem is frustrating. The CSS looks fine. Could you take a
look at the CSS and code to see if I am doing ti right?
I have this for js call
$('#s7').cycle({
> Explorer 7 there seems to be a graphic glitch on the initial slide/
> frame, the top header looks like it is overwriting part of the box,
> same with bottom. It's fine after the first frame.
>
> In Explorer 6, there is a blue background that is showing behind the
> testimonial box.
Hmm, I d
I solved the problem in IE 7, it seems the top and bottom divs/spans
that contains the background image were collapsing width wise, so I
have to add a width inline on the first slide to get it to work.
I am still having trouble with the blue background problem in IE 6. It
seems that the backgroun
Hi Mike,
Absolutely awesome! That is exactly what I wanted. It seems that I
didn't quite understand the custom transition effects, I was trying to
alter the position with $(curr).outerWidth()
Now where was that Paypal button
Warm regards
juro
On Jul 11, 11:12 pm, Mike Alsup <[EMAIL PR
> > I have been trying to get a certain effect using the jQuery.cycle
> > plugin but have falied miserably.
>
> > Similar to the top example on this page:
>
> >http://www.malsup.com/jquery/cycle/cover2.html
>
> > I want to cover the images from right to left. The only (and
> > substantial) differe
> I have been trying to get a certain effect using the jQuery.cycle
> plugin but have falied miserably.
>
> Similar to the top example on this page:
>
> http://www.malsup.com/jquery/cycle/cover2.html
>
> I want to cover the images from right to left. The only (and
> substantial) difference to the
Many thanks fort the extra links. I shall have a good old play with
this over the weekend. Great Plugin btw.
On Jun 27, 12:23 pm, Mike Alsup <[EMAIL PROTECTED]> wrote:
> Here are some links:
>
> http://www.malsup.com/jquery/cycle/pager2.htmlhttp://www.malsup.com/jquery/cycle/pager3.html
>
> On Ju
Here are some links:
http://www.malsup.com/jquery/cycle/pager2.html
http://www.malsup.com/jquery/cycle/pager3.html
On Jun 27, 4:15 am, greencode <[EMAIL PROTECTED]> wrote:
> Does anyone know how I can change the links to text links rather than
> continuous numbers? I'm new to all of this and can
> I have a portfolio page with multiple slideshows (there are four tabs
> and each tab displays a different slideshow). All is well in Mozilla,
> but after a couple of clicks to change the tabs in IE, it chrashes. I
> have tried placing the code in the body of HTML, but still get the
> same crash!
Another Mike ... sounds like I'm talking to myself!
Thanks very much for that note. I think that approach will work - I
might have to be a bit creative, and set up some way for the Cycle
plugin to request more slideshow items when it needs them, but this is
an extremely good start. Just what I ne
> I have a problem with the Cycle plugin (jQuery-based
> slideshow,http://malsup.com/jquery/cycle/) that I hope someone here can help
> me
> out with.
>
> Currently, Cycle loads all the images up front. That's a problem for
> me - the slideshow I'm working on may have a very large number of
> im
It sounds like maybe you want a carousel effect rather than cycle. I think
jCarousel is the most popular carousel plugin.
-- Josh
- Original Message -
From: "danieluis" <[EMAIL PROTECTED]>
To: "jQuery (English)"
Sent: Tuesday, May 13, 2008 11:50 AM
Subject: [jQuery] jQuery Cycle
Hi Donna,
According to your pager selector ("#nav") its markup, you should use
the pagerAnchorBuilder option like this:
$(document).ready(function(){
$('#featuretabs').cycle({
fx: 'turnLeft',
speed: 'fast',
timeout: 0,
pager: '#nav',
Argh! So simple and such a big problem when you don't know what to
do! :)
Thanks for a fast reply, the problem is solved.
> I am havim problems with the jquery cycle plugin (http://
> www.malsup.com/jquery/cycle/int2.html - the one titles "Callbacks". I
> modified it a bit so that it displays my, a bit larger images. Now, I
> do not want it to display the code which prints out the code needed
> the plugin to work
Sorry for the bad description Diego!
In fact I also assumed that the currently (not explicitly) hidden divs that
the ScrollUp function scrolls in during the cycle are having this image size
problem because of being asigned to visibility:hidden.
But I didn't declare a visibility explicitly - I jus
I am finding it hard to understand your problem, but I'm guessing it
may be because when the image is hidden, the cycle plugin cannot find
its dimensions (hidden elements have dimensions 0x0).
Instead of display:none, have you considered off-screen positioning or
visibility:hidden instead?
Diego
You're absolutely right ... I knew it was going to be something simple
that I'm too dense to catch! :-)
Thanks so much!!!
Nathan
On Feb 16, 8:53 am, "Mike Alsup" <[EMAIL PROTECTED]> wrote:
> > it looks like I'm a little late to the game on this thread, but I
> > found it via google, and you guy
> it looks like I'm a little late to the game on this thread, but I
> found it via google, and you guys seem to know what you're talking
> about :-)
>
> I'm trying to get this to work on a WordPress theme that I'm
> developing for my site, but for some reason it just won't work. I'm
> new to jQuer
it looks like I'm a little late to the game on this thread, but I
found it via google, and you guys seem to know what you're talking
about :-)
I'm trying to get this to work on a WordPress theme that I'm
developing for my site, but for some reason it just won't work. I'm
new to jQuery, but this
testing ...
On Jan 25, 6:18 pm, visitorQ <[EMAIL PROTECTED]> wrote:
> thanks mike i'll try that and get back to you guys! you're all
> great
>
> On Jan 25, 3:40 pm, "Mike Alsup" <[EMAIL PROTECTED]> wrote:
>
> > > image and have it say 'read article >' and a user could click it. then
> > > whe
BIG Thanx Mike
I change code:
$(document).ready(function() {
$('#news').cycle({
fx:'scrollLeft',
slideExpr: 'p',
speed: 1000,
delay: 100,
>
> Sorry for my bad english.
> I use jQuery Cycle Plugin
> http://www.malsup.com/jquery/cycle/
>
> it work very well, but i could not change delay option
>
> $(document).ready(function() {
>$('#news').cycle({
>fx:'scrollLeft',
>
thanks mike i'll try that and get back to you guys! you're all
great
On Jan 25, 3:40 pm, "Mike Alsup" <[EMAIL PROTECTED]> wrote:
> > image and have it say 'read article >' and a user could click it. then
> > when the image fades, the link does also, until the next image fades
> > in, with it'
>
> image and have it say 'read article >' and a user could click it. then
> when the image fades, the link does also, until the next image fades
> in, with it's own text link to its own article. i'm not having much
> luck since i need to write each link it's own class in the stylesheet
> because t
yeah thanks to mike for a friggin awesome plugin!
i'm glad you liked checking out the labradoodles! this site is for a
friend of mine. they sold tiger woods his labradoodle! awesome huh?
they're beautiful dogs. anyway, i'm having one more little issue.
everything works GREAT, but i want to add so
1 - 100 of 128 matches
Mail list logo