Pausing up-down message scroller
How can I insert colored text into the scroller after messages[0]= ? I'm trying to display the titles in color (eg, **IN MEMORIAM**). Check at this site: http://rittministries.bravehost.com/.![]()
Pausing up-down message scroller
How can I insert colored text into the scroller after messages[0]= ? I'm trying to display the titles in color (eg, **IN MEMORIAM**). Check at this site: http://rittministries.bravehost.com/.![]()
To add color to the messages you can do this:instead of color names you can use hex values, ex:Code:messages[0]='<span style="color:red">Your Message Here</span>'; messages[1]='<span style="color:blue">Your Message Here</span>';for black. Or you can use rgb values:Code:messages[0]='<span style="color:#000000">Your Message Here</span>';that one's white and will be invisible on a white background.Code:messages[0]='<span style="color:rgb(255, 255, 255)">Your Message Here</span>';
- John________________________
Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate
thank you very much, jscheuer1.
Bookmarks