<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1035160" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1035160</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/ie-vs-firefox#comment-1203787</link>
    <description> &lt;p&gt;oh, about that decoration..i will remove that 0...thanks&lt;/p&gt;
 </description>
     <pubDate>Sun, 09 Jul 2006 23:29:59 +0000</pubDate>
 <dc:creator>Marvz</dc:creator>
 <guid isPermaLink="false">comment 1203787 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/ie-vs-firefox#comment-1203778</link>
    <description> &lt;p&gt;text-decoration: is either underline or none - not 0&lt;/p&gt;
 </description>
     <pubDate>Sun, 09 Jul 2006 21:20:33 +0000</pubDate>
 <dc:creator>Busy</dc:creator>
 <guid isPermaLink="false">comment 1203778 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/ie-vs-firefox#comment-1203768</link>
    <description> &lt;p&gt;If you want to give them two different sets of attributes, then yes.&lt;/p&gt;
 </description>
     <pubDate>Sun, 09 Jul 2006 17:48:07 +0000</pubDate>
 <dc:creator>waffles</dc:creator>
 <guid isPermaLink="false">comment 1203768 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/ie-vs-firefox#comment-1203765</link>
    <description> &lt;p&gt;i removed all the javascripts for link hovers and put these codes at the head of my page&lt;/p&gt;
&lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;Quote:&lt;br /&gt;
a.navi:link {text-decoration:none; font-weight:bold;}&lt;br /&gt;
a.navi:active {text-decoration:none; font-weight:bold;}&lt;br /&gt;
a.navi:visited {text-decoration:none; font-weight:bold;}&lt;br /&gt;
a.navi:hover {color:white; text-decoration:0; font-weight:bold;}&lt;/p&gt;
&lt;p&gt;a:link {text-decoration:none; font-weight:bold;}&lt;br /&gt;
a:active {text-decoration:none; font-weight:bold;}&lt;br /&gt;
a:visited {text-decoration:none; font-weight:bold;}&lt;br /&gt;
a:hover {color:blue; text-decoration:0; font-weight:bold;}&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;and i add class=&quot;navi&quot; to all my links at my navigation&lt;/p&gt;
&lt;p&gt;i used two styles..one for my navigation and the other for the rest of my links..is that correct?&lt;/p&gt;
 </description>
     <pubDate>Sun, 09 Jul 2006 17:06:59 +0000</pubDate>
 <dc:creator>Marvz</dc:creator>
 <guid isPermaLink="false">comment 1203765 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/ie-vs-firefox#comment-1203760</link>
    <description> &lt;p&gt;Thank you very much!! that css thing really helped me..i tried it in a test page and i figured it out and it works thanks..i will now apply it to my website!&lt;/p&gt;
 </description>
     <pubDate>Sun, 09 Jul 2006 15:44:23 +0000</pubDate>
 <dc:creator>Marvz</dc:creator>
 <guid isPermaLink="false">comment 1203760 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/ie-vs-firefox#comment-1203754</link>
    <description> &lt;p&gt;It&#039;s bad coding. you also still have the double up head tags as well.&lt;/p&gt;
&lt;p&gt;you have:&lt;br /&gt;
&lt;a href=&quot;http://www.phpbb88.com/fhwc&quot;&gt;forum.&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;your missing the closing  tag, in this case IE is displaying it correctly and firefox is not.&lt;/p&gt;
&lt;p&gt;Instead of using the onmouseover and onmouseout you should use CSS, using something like this in your head section&lt;/p&gt;
&lt;p&gt;a.maincontent:link {text-decoration:none; font-weight:bold;}&lt;br /&gt;
a.maincontent:active {text-decoration:none; font-weight:bold;}&lt;br /&gt;
a.maincontent:visited {text-decoration:none; font-weight:bold;}&lt;br /&gt;
a.maincontent:hover {color:#0000a0; text-decoration:underline; font-weight:bold;}&lt;/p&gt;
&lt;p&gt;and on the page, in the link you want this effect you just add class=&quot;maincontent&quot; to the link tag, using your link above, it would just be like so:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.phpbb88.com/fhwc&quot; class=&quot;maincontent&quot;&gt;forum.&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;This way it will work even if javascript is disabled, all the links this is used in can be changed with just changing the CSS, is less code.&lt;/p&gt;
&lt;p&gt;If you just want to use that colour/effect on all the links (as default), just remove the .maincontent from the a.maincontent:link, a.maincontent:visited etc like so:&lt;/p&gt;
&lt;p&gt;a:link {text-decoration:none; font-weight:bold;}&lt;br /&gt;
a:active {text-decoration:none; font-weight:bold;}&lt;br /&gt;
a:visited {text-decoration:none; font-weight:bold;}&lt;br /&gt;
a:hover {color:#0000a0; text-decoration:underline; font-weight:bold;}&lt;/p&gt;
&lt;p&gt; and your links are just a normal &lt;a href=&quot;http://www.phpbb88.com/fhwc&quot;&gt;forum.&lt;/a&gt; but has the bold and coloured on mouseover (hover) with no underline&lt;/p&gt;
 </description>
     <pubDate>Sun, 09 Jul 2006 10:39:05 +0000</pubDate>
 <dc:creator>Busy</dc:creator>
 <guid isPermaLink="false">comment 1203754 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
