S_USERNAME

Will be in this code:

Code:
<marquee onmouseover="this.setAttribute('scrollamount', 0, 0);" onmouseout="this.setAttribute('scrollamount', 6, 0);">
Welcome {S_USERNAME} | Don't forget to Introduce yourself! 
</marquee>

It will be going across the top of the page
 
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
 
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
 
Back
Top Bottom