<marquee onmouseover="this.setAttribute('scrollamount', 0, 0);" onmouseout="this.setAttribute('scrollamount', 6, 0);">
Welcome {S_USERNAME} | Don't forget to Introduce yourself!
</marquee>
<marquee onmouseover="this.setAttribute('scrollamount', 0, 0);" onmouseout="this.setAttribute('scrollamount', 6, 0);">
Welcome <span style="color: #ff0000;">{S_USERNAME}</span> | Don't forget to Introduce yourself!
</marquee
Isn't that marquee tag IE only (so it probably isn't xhtml compliant)? To color the text you could use a span tag like below and obv in your site give the style a class.
Code:<marquee onmouseover="this.setAttribute('scrollamount', 0, 0);" onmouseout="this.setAttribute('scrollamount', 6, 0);"> Welcome <span style="color: #ff0000;">{S_USERNAME}</span> | Don't forget to Introduce yourself! </marquee
Thanks that work but you did not add a coler to "Introduce" bit