inherit
28875
0
Jun 8, 2006 5:11:11 GMT -8
Frank N Furter *RHPS*
222
August 2004
magentanriffraff
|
Post by Frank N Furter *RHPS* on Jun 27, 2005 13:55:09 GMT -8
I'm trying to change a small part of my text a different color.. through headers and footers.. my original code.. for the text I want to change...
</script> <div align="center"> <script language="javascript" type="text/javascript"> <!-- if (Count()==1){ document.write("This is your 1st visit.") When() } else if (Count()>1) document.write("Welcome back. Your last visit was on <b>" + When() +"</B>.") // --> </script> I want to change the text color of that though.. how might I go about doing so? thanks ~Laura~
|
|
inherit
Beware the ever changing head
33588
0
Nov 18, 2023 0:32:44 GMT -8
Ross
19,039
November 2004
elindir
|
Post by Ross on Jun 27, 2005 14:39:47 GMT -8
Try: <script language="javascript" type="text/javascript"> <!-- if (Count()==1){ document.write(" <font color='FF6600'>This is your 1st visit. <\/font>") When() } else if (Count()>1) document.write(" <font color='FF9933'>Welcome back. Your last visit was on <b>" + When() +"</B>. <\/font>") // --> </script> And change the 6 digit HEX color to whatever color you want
|
|
inherit
28875
0
Jun 8, 2006 5:11:11 GMT -8
Frank N Furter *RHPS*
222
August 2004
magentanriffraff
|
Post by Frank N Furter *RHPS* on Jun 27, 2005 14:48:04 GMT -8
hmm.. for some reason it didn't work.. my original one isn't anymore either...
|
|
inherit
Proboards Legend
212
0
May 11, 2006 12:32:55 GMT -8
california
21,035
December 1999
california
|
Post by california on Jun 28, 2005 1:55:17 GMT -8
Is the When() function defined in a different script, or what?
|
|