<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1002904" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1002904</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/displaying-date#comment-1012798</link>
    <description> &lt;p&gt;I have edited the script, just copy the script inside the dotted lines.&lt;/p&gt;
&lt;p&gt;It will have a white text, change to SIZE=2 if you need a larger size.&lt;/p&gt;
 </description>
     <pubDate>Sat, 19 Feb 2000 22:06:00 +0000</pubDate>
 <dc:creator>NSS</dc:creator>
 <guid isPermaLink="false">comment 1012798 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/displaying-date#comment-1012797</link>
    <description> &lt;p&gt;Change the text color to white like this: &lt;/p&gt;
&lt;p&gt;&amp;lt;FONT COLOR=&quot;#FFFFFF&quot; FACE=&quot;ARIAL&quot; SIZE=2 &amp;gt;&lt;br /&gt;
&amp;lt;B&amp;gt;&lt;br /&gt;
&amp;lt;SCRIPT&amp;gt;&lt;br /&gt;
the code&lt;br /&gt;
&amp;lt;/SCRIPT&amp;gt;&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
&amp;lt;/FONT&amp;gt;&lt;/p&gt;
&lt;p&gt;NSS&lt;/p&gt;
 </description>
     <pubDate>Sat, 19 Feb 2000 21:38:00 +0000</pubDate>
 <dc:creator>NSS</dc:creator>
 <guid isPermaLink="false">comment 1012797 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/displaying-date#comment-1012796</link>
    <description> &lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;Thanks for your help. I got the date and everything on my site except its in black not white. Use said to control the text color and font to use this script..&lt;/p&gt;
&lt;p&gt;&amp;lt;FONT COLOR=&quot;#FF0000&quot; FACE=&quot;ARIAL&quot; SIZE=2 &amp;gt;&lt;br /&gt;
&amp;lt;B&amp;gt;&lt;br /&gt;
&amp;lt;SCRIPT&amp;gt;&lt;br /&gt;
the code&lt;br /&gt;
&amp;lt;/SCRIPT&amp;gt;&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
&amp;lt;/FONT&amp;gt;&lt;/p&gt;
&lt;p&gt;Where do i place that script to get my date white? Thanks for your help.&lt;/p&gt;
&lt;p&gt;Adam&lt;/p&gt;
&lt;p&gt;PS- You would know how to make it so when you scroll over a word, it underlines? Similar to the  text at &lt;a href=&quot;http://www.cdw.com&quot; class=&quot;bb-url&quot;&gt;www.cdw.com&lt;/a&gt;&lt;br /&gt;
Thanks again!!&lt;/p&gt;
 </description>
     <pubDate>Sat, 19 Feb 2000 21:32:00 +0000</pubDate>
 <dc:creator>bilbong30</dc:creator>
 <guid isPermaLink="false">comment 1012796 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/displaying-date#comment-1012795</link>
    <description> &lt;p&gt;Try this script:&lt;/p&gt;
&lt;p&gt;............................................&lt;br /&gt;
&amp;lt;FONT COLOR=&quot;#FFFFFF&quot; FACE=&quot;ARIAL&quot; SIZE=1&amp;gt;&lt;br /&gt;
&amp;lt;SCRIPT LANGUAGE=Javascript&amp;gt;&lt;br /&gt;
calendar = new Date();&lt;br /&gt;
day = calendar.getDay();&lt;br /&gt;
month = calendar.getMonth();&lt;br /&gt;
date = calendar.getDate();&lt;br /&gt;
year = calendar.getYear();&lt;br /&gt;
if (year&amp;lt; 100) year = 1900 + year;&lt;br /&gt;
cent = parseInt(year/100);&lt;br /&gt;
g = year % 19;&lt;br /&gt;
k = parseInt((cent - 17)/25);&lt;br /&gt;
i = (cent - parseInt(cent/4) - parseInt((cent - k)/3) + 19*g + 15) % 30;&lt;br /&gt;
i = i - parseInt(i/28)*(1 - parseInt(i/28)*parseInt(29/(i+1))*parseInt((21-g)/11));&lt;br /&gt;
j = (year + parseInt(year/4) + i + 2 - cent + parseInt(cent/4)) % 7;&lt;br /&gt;
l = i - j;&lt;br /&gt;
emonth = 3 + parseInt((l + 40)/44);&lt;br /&gt;
edate = l + 28 - 31*parseInt((emonth/4));&lt;br /&gt;
emonth--;&lt;br /&gt;
var dayname = new Array (&quot;Sunday&quot;, &quot;Monday&quot;, &quot;Tuesday&quot;, &quot;Wednesday&quot;, &quot;Thursday&quot;, &quot;Friday&quot;, &quot;Saturday&quot;);&lt;br /&gt;
var monthname =&lt;br /&gt;
new Array (&quot;January&quot;,&quot;February&quot;,&quot;March&quot;,&quot;April&quot;,&quot;May&quot;,&quot;June&quot;,&quot;July&quot;,&quot;August&quot;,&quot;September&quot;,&quot;October&quot;,&quot;November&quot;,&quot;December&quot; );&lt;br /&gt;
document.write(dayname[day] + &quot;, &quot;);&lt;br /&gt;
document.write(monthname[month] + &quot; &quot;);&lt;/p&gt;
&lt;p&gt;if (date&amp;lt; 10) document.write(&quot;0&quot; + date + &quot;, &quot;);&lt;br /&gt;
else document.write(date + &quot;, &quot;);&lt;br /&gt;
document.write(year + &quot;    &amp;lt;font color=000000&amp;gt;&quot;);&lt;br /&gt;
document.write(&quot;&amp;lt;/font&amp;gt;&quot;);&lt;br /&gt;
&amp;lt;/SCRIPT&amp;gt;&lt;br /&gt;
&amp;lt;/FONT&amp;gt;&lt;/p&gt;
&lt;p&gt;.............................................&lt;/p&gt;
&lt;p&gt;Control the color,font size or bold like this:&lt;/p&gt;
&lt;p&gt;&amp;lt;FONT COLOR=&quot;#FF0000&quot; FACE=&quot;ARIAL&quot; SIZE=2 &amp;gt;&lt;br /&gt;
&amp;lt;B&amp;gt;&lt;br /&gt;
&amp;lt;SCRIPT&amp;gt;&lt;br /&gt;
the code&lt;br /&gt;
&amp;lt;/SCRIPT&amp;gt;&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
&amp;lt;/FONT&amp;gt;&lt;br /&gt;
If you need to display the format like go.com, just use &amp;lt;BR&amp;gt; on the script.&lt;/p&gt;
&lt;p&gt;To select color go to my site and use the background color code for your text color.  &lt;a href=&quot;http://www.unitronics.com/1color.htm&quot; class=&quot;bb-url&quot;&gt;http://www.unitronics.com/1color.htm&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;This script will give the date, month and year on the user&#039;s browser when they login to your site.(based on the user&#039;s cpu data ) &lt;/p&gt;
&lt;p&gt;Hope this helps.&lt;/p&gt;
&lt;p&gt;NSS &lt;a href=&quot;http://www.unitronics.com&quot; class=&quot;bb-url&quot;&gt;http://www.unitronics.com&lt;/a&gt;  &lt;/p&gt;
&lt;p&gt;[This message has been edited by NSS (edited 19 February 2000).]&lt;/p&gt;
&lt;p&gt;[This message has been edited by NSS (edited 19 February 2000).]&lt;/p&gt;
&lt;p&gt;[This message has been edited by NSS (edited 19 February 2000).]&lt;/p&gt;
&lt;p&gt;[This message has been edited by NSS (edited 19 February 2000).]&lt;/p&gt;
 </description>
     <pubDate>Sat, 19 Feb 2000 21:17:00 +0000</pubDate>
 <dc:creator>NSS</dc:creator>
 <guid isPermaLink="false">comment 1012795 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
