| View previous topic :: View next topic |
| Author |
Message |
Tomi 500+ Club

Joined: 26 Jun 2006 Posts: 818
|
Posted: Sat Jul 01, 2006 1:48 pm Post subject: Help! |
|
|
How do i make this scroll script scroll down ?
| Code: |
<marquee scrollamount="4" loop="true" onmouseover='this.stop()' onmouseout='this.start()' scrolldelay= "15">
<a href="ADDRESS OF SITE HERE"target="_blank"><img src="IMAGE URL HERE" border="0" alt="image discription"></a>
</marquee> |
|
|
| Back to top |
|
 |
|
|
grommit
Joined: 29 Jun 2006 Posts: 28 Location: Netherlands
|
Posted: Sat Jul 01, 2006 2:08 pm Post subject: Re: Help! |
|
|
Use direction="up" or direction="down":
| Code: |
<marquee scrollamount="4" loop="true" direction="up" onmouseover='this.stop()' onmouseout='this.start()' scrolldelay= "15">
<a href="ADDRESS OF SITE HERE"target="_blank"><img src="IMAGE URL HERE" border="0" alt="image discription"></a>
</marquee>
|
Last edited by grommit on Sat Jul 01, 2006 2:12 pm; edited 1 time in total |
|
| Back to top |
|
 |
lalalogic 100+ Club
Joined: 16 Aug 2005 Posts: 200
|
Posted: Sat Jul 01, 2006 2:10 pm Post subject: Re: Help! |
|
|
Just combine the two replies you got on your post here http://www.devppl.com/forum/scroller-vt3166.html and you have that :
| Code: |
<marquee scrollamount="4" direction="down" loop="true" onmouseover='this.stop()' onmouseout='this.start()' scrolldelay= "15">
<a href="ADDRESS OF SITE HERE"target="_blank"><img src="IMAGE URL HERE" border="0" alt="image discription"></a>
</marquee>
|
|
|
| Back to top |
|
 |
lalalogic 100+ Club
Joined: 16 Aug 2005 Posts: 200
|
Posted: Sat Jul 01, 2006 2:13 pm Post subject: Re: Help! |
|
|
grommit I had to edit the post and didn't notice you already replied.
Well the first one goes up and the second down, whatever suits you Tomi. |
|
| Back to top |
|
 |
Tomi 500+ Club

Joined: 26 Jun 2006 Posts: 818
|
Posted: Sat Jul 01, 2006 2:23 pm Post subject: Re: Help! |
|
|
lol thanks,  |
|
| Back to top |
|
 |
Tomi 500+ Club

Joined: 26 Jun 2006 Posts: 818
|
Posted: Sat Jul 01, 2006 2:37 pm Post subject: Re: Help! |
|
|
how can i change how big its is... at the momant it can show about 5 affiliate i only want it to show about 3 at a time...  |
|
| Back to top |
|
 |
grommit
Joined: 29 Jun 2006 Posts: 28 Location: Netherlands
|
|
| Back to top |
|
 |
|