<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1015435" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1015435</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/css-question#comment-1090822</link>
    <description> &lt;p&gt;NS just really doesn&#039;t like underscores in filenames for links to stylesheets.&lt;/p&gt;
&lt;p&gt;As pbaugher pointed out, if your stylesheet resides in a directory called _private you should probably move it to another directory. Maybe something like style, or stylesheet.&lt;/p&gt;
&lt;p&gt;hth&lt;/p&gt;
 </description>
     <pubDate>Tue, 02 Oct 2001 04:51:12 +0000</pubDate>
 <dc:creator>Bimjo</dc:creator>
 <guid isPermaLink="false">comment 1090822 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>_private</title>
    <link>https://www.webmaster-forums.net/webmasters-corner/css-question#comment-1090722</link>
    <description> &lt;p&gt;Could it be this directory? _private is usually a hidden directory.&lt;/p&gt;
 </description>
     <pubDate>Sat, 29 Sep 2001 23:02:22 +0000</pubDate>
 <dc:creator>pbaugher</dc:creator>
 <guid isPermaLink="false">comment 1090722 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/css-question#comment-1089533</link>
    <description> &lt;p&gt;This is just a hunch, but most likely u have spelled something wrong. Netscape is very &quot;thight&quot; requiring the same cases (a=a, not a=A) and spelling in elements and paths. It could very well be the underscore in href that is causing all the headache(ns has some problems with it in some cases)...&lt;/p&gt;
 </description>
     <pubDate>Tue, 11 Sep 2001 09:19:45 +0000</pubDate>
 <dc:creator>2K mediat.com</dc:creator>
 <guid isPermaLink="false">comment 1089533 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/css-question#comment-1089370</link>
    <description> &lt;p&gt;No, I was curious about that, so I downloaded his page, brought it into homesite and put the stylesheet into the page itself rather than using it externally and it&#039;s working that way.  It&#039;s got to have something to do with the way its linked ... I don&#039;t know!&lt;/p&gt;
 </description>
     <pubDate>Mon, 10 Sep 2001 02:08:05 +0000</pubDate>
 <dc:creator>Megan</dc:creator>
 <guid isPermaLink="false">comment 1089370 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/css-question#comment-1089369</link>
    <description> &lt;p&gt;Could be the quotes and order, just use:&lt;/p&gt;
&lt;p&gt;a:link.nav {color: red;}&lt;br /&gt;
or&lt;br /&gt;
a:link.nav {color: #FF0000;}&lt;/p&gt;
&lt;p&gt;etc&lt;/p&gt;
&lt;p&gt;note the a:link is first&lt;/p&gt;
&lt;p&gt;then on your link, add class=&quot;nav&quot;&lt;/p&gt;
&lt;p&gt;and you dont need to use title=&quot;Global&quot; in the link rel=stylesheet tag&lt;/p&gt;
 </description>
     <pubDate>Mon, 10 Sep 2001 02:00:26 +0000</pubDate>
 <dc:creator>Busy</dc:creator>
 <guid isPermaLink="false">comment 1089369 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/css-question#comment-1089366</link>
    <description> &lt;p&gt;Thnx for the reply Megan...anyone know why the NS 6.1 doesn&#039;t like the style link? I&#039;m using the following format to link the style sheet to each page.  The link is place between the  &amp;amp;  tags:&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Any ideas?&lt;/p&gt;
 </description>
     <pubDate>Sun, 09 Sep 2001 20:45:45 +0000</pubDate>
 <dc:creator>openmind</dc:creator>
 <guid isPermaLink="false">comment 1089366 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/css-question#comment-1089365</link>
    <description> &lt;p&gt;Your link to the external stylesheet isn&#039;t working in NS 6.1 for some reason - I don&#039;t know why.  &lt;/p&gt;
&lt;p&gt;What you need to do is define different classes of links.  You&#039;ll leave this the way it is to define your general links, then you&#039;ll define a second set of links using classes, so you&#039;ll have:&lt;/p&gt;
&lt;p&gt;a { text-decoration: none; }&lt;br /&gt;
a:link { color:&quot;red&quot;; }&lt;br /&gt;
a:visited { color:&quot;red&quot;; }&lt;br /&gt;
a:hover { color:&quot;#03403C&quot;; text-decoration: underline; } &lt;/p&gt;
&lt;p&gt;a.nav { text-decoration: none; }&lt;br /&gt;
a.nav:link { color:&quot;something&quot;; }&lt;br /&gt;
a.nav:visited { color:&quot;something&quot;; }&lt;br /&gt;
a.nav:hover { color:&quot;something else&quot;; text-decoration: underline; }&lt;/p&gt;
&lt;p&gt;Then your nav links will look like this:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;whatever.cfm&quot; class=&quot;nav&quot;&gt;Link Name&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Sun, 09 Sep 2001 20:41:01 +0000</pubDate>
 <dc:creator>Megan</dc:creator>
 <guid isPermaLink="false">comment 1089365 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>Cracked It...</title>
    <link>https://www.webmaster-forums.net/webmasters-corner/css-question#comment-1089364</link>
    <description> &lt;p&gt;Never mind I&#039;ve sussed it with a little help form &lt;a href=&quot;http://www.builder.com&quot; class=&quot;bb-url&quot;&gt;Builder.com&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;I&#039;ve just added the &lt;em&gt;class=&quot;nav&quot;&lt;/em&gt; attribute to the table containing the links I want to be different and added the lines:&lt;br /&gt;
&lt;em&gt;&lt;br /&gt;
.nav&lt;br /&gt;
a:link { color:&quot;white&quot;; }&lt;br /&gt;
a:visited { color:&quot;#03403C&quot;; }&lt;br /&gt;
a:hover 	{ color:&quot;#03403C&quot;; text-decoration: underline; }&lt;br /&gt;
&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Thought it was simple! &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Sun, 09 Sep 2001 20:39:51 +0000</pubDate>
 <dc:creator>openmind</dc:creator>
 <guid isPermaLink="false">comment 1089364 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
