ClioSport.net

Register a free account today to become a member!
Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

  • When you purchase through links on our site, we may earn an affiliate commission. Read more here.

More html help needed :\



  None
Trying to do some scrolling text and have this code:

<MARQUEE bgcolor="#CCCCCC" loop="-1" scrollamount="2" width="100%">Example Marquee</MARQUEE>

Thing is theres no code to change the text colour and was wondering if anyone knows what code to add to change the text colour?? Many thanks

While im posting this dont suppose any clever ppl can can give me some code so basically I get lines of text scrolling from the bottom to the top of a box?? :D
 
Last edited:
You mean have the scrolling go upwards instead of sideways? Best way would be javascript, but you can make a quick one with the marquee tag.

Code:
<marquee direction="up" height="400" width="400" speed="2">SCROLLING TEXT</marquee>
 


Top