<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1016430" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1016430</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/text-mouseover-colors#comment-1095319</link>
    <description> &lt;p&gt;Thanks everyone, &lt;/p&gt;
&lt;p&gt;I have it working now &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/big.png&quot; title=&quot;Laughing out loud&quot; alt=&quot;Laughing out loud&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Mika&lt;/p&gt;
 </description>
     <pubDate>Mon, 03 Dec 2001 14:01:19 +0000</pubDate>
 <dc:creator>yabber</dc:creator>
 <guid isPermaLink="false">comment 1095319 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/text-mouseover-colors#comment-1095238</link>
    <description> &lt;p&gt;It works in IE and NS 6 and above. It doesn&#039;t error out in NS but it just doesn&#039;t have the rollover effect that it does in IE.&lt;/p&gt;
&lt;p&gt;Here is the code that you would insert into your  tag. You will have to fill in the blanks for the colors.&lt;br /&gt;
----------------------------------------------------------&lt;br /&gt;
onMouseOut=&quot;this.style.backgroundColor=&#039;#&#039;;&quot; onMouseOver=&quot;this.style.backgroundColor=&#039;#&#039;;&quot;&lt;br /&gt;
-----------------------------------------------------------&lt;/p&gt;
&lt;p&gt;It is not a bad idea to add a bgcolor=&quot;#&quot; attribute itself, if the table bgcolor is different. One like this would give you a darker gray background to a lighter gray background.&lt;br /&gt;
-----------------------------------------------------------&lt;br /&gt;
&lt;A href=&quot;/&quot;&gt;Link&lt;/a&gt;&lt;br /&gt;
------------------------------------------------------------&lt;br /&gt;
In addition, you may want to change the hover color in a stylesheet or in between some style tags by:&lt;br /&gt;
------------------------------------------------------------&lt;br /&gt;
A { text-decoration:none; font-weight:bold }&lt;/p&gt;
&lt;p&gt;A:link { color:#000099}&lt;/p&gt;
&lt;p&gt;A:visited { color:#000099}&lt;/p&gt;
&lt;p&gt;A:active { color:#000099}&lt;/p&gt;
&lt;p&gt;A:hover { text-decoration:underline; color:#990000 }&lt;/p&gt;
&lt;p&gt;.nav 	{&lt;br /&gt;
	text-decoration:none;&lt;br /&gt;
	font-weight: 900;&lt;br /&gt;
	font-size : 10px;&lt;br /&gt;
	color:#000099;&lt;br /&gt;
	font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;&lt;br /&gt;
	}&lt;br /&gt;
.nav:active {&lt;br /&gt;
	text-decoration:none;&lt;br /&gt;
	font-weight: 900;&lt;br /&gt;
	font-size : 10px;&lt;br /&gt;
	color:#000099;&lt;br /&gt;
	font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;&lt;br /&gt;
	}&lt;br /&gt;
.nav:link {&lt;br /&gt;
	text-decoration:none;&lt;br /&gt;
	font-weight: 900;&lt;br /&gt;
	color:#000099;&lt;br /&gt;
	font-size: 10px;&lt;br /&gt;
	font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;&lt;br /&gt;
	}&lt;br /&gt;
.nav:visited {&lt;br /&gt;
	text-decoration:none;&lt;br /&gt;
	font-weight: 900;&lt;br /&gt;
	color:#000099;&lt;br /&gt;
	font-size: 10px;&lt;br /&gt;
	font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;&lt;br /&gt;
	}&lt;br /&gt;
.nav:hover {&lt;br /&gt;
	text-decoration:none;&lt;br /&gt;
	font-weight: 900;&lt;br /&gt;
	color:#990000;&lt;br /&gt;
	font-size : 10px;&lt;br /&gt;
	font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;&lt;br /&gt;
		}&lt;br /&gt;
------------------------------------------------------------&lt;br /&gt;
This would create a class that you would call like such&lt;br /&gt;
-----------------------------------------------------------&lt;br /&gt;
&lt;a class=&quot;nav&quot; href=&quot;/&quot;&gt;Link&lt;/a&gt;&lt;br /&gt;
------------------------------------------------------------&lt;/p&gt;
&lt;p&gt;Hope this helps.&lt;/p&gt;
 </description>
     <pubDate>Sun, 02 Dec 2001 02:05:03 +0000</pubDate>
 <dc:creator>mairving</dc:creator>
 <guid isPermaLink="false">comment 1095238 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/text-mouseover-colors#comment-1095227</link>
    <description> &lt;p&gt;The simple IE specific approach (possibly NN6 also?) would be to use CSS and classes. Have 2 sets of link class attributes.&lt;/p&gt;
&lt;p&gt;Busy is right though. To be crossbrowser compatible, I&#039;d go with an image mousover effect.&lt;/p&gt;
 </description>
     <pubDate>Sun, 02 Dec 2001 00:33:31 +0000</pubDate>
 <dc:creator>taff</dc:creator>
 <guid isPermaLink="false">comment 1095227 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/text-mouseover-colors#comment-1095217</link>
    <description> &lt;p&gt;I know you can change the background of table cells by way of mouse over but this only works in IE&lt;br /&gt;
It may be easier and more browser friendly if you use images for the mouseovers.&lt;/p&gt;
 </description>
     <pubDate>Sat, 01 Dec 2001 23:16:27 +0000</pubDate>
 <dc:creator>Busy</dc:creator>
 <guid isPermaLink="false">comment 1095217 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
