<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1038691" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1038691</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/css-question#comment-1220450</link>
    <description> &lt;p&gt;@webwiz, look carefully at the tags Wguild presented, first the html tags are capitalized which would work per se, but not XHTML valid, look at the class calls, some have quotes and some have no quotes... It&#039;s best to guide them with best practices, although I said I agree with multiple classes, it&#039;s best to still use single class, and classes without dashes, or classes with quotes... It would still work either way, but making the markup semantic by starting at the basic coding practice of properly quoting, small letters for html tags, etc...&lt;/p&gt;
&lt;p&gt;And answering his question is the main purpose of the thread, I guess it&#039;s answered now...&lt;/p&gt;
 </description>
     <pubDate>Wed, 13 Jun 2007 07:14:18 +0000</pubDate>
 <dc:creator>demonhale</dc:creator>
 <guid isPermaLink="false">comment 1220450 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/css-question#comment-1220428</link>
    <description> &lt;p&gt;&lt;strong&gt;@demonhale:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;But you wrote:&lt;/p&gt;
&lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;Quote: first you need to properly tag your html codes, and set classes that have no spaces and are properly quoted like so:&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;You seemed to be saying that the OP&#039;s code is somehow wrong or invalid, which is not true. I didn&#039;t want webmaster_guild to be left with the impression that his code was being criticised. It seemed to me a perfectly valid question that deserved a constructive response.&lt;/p&gt;
&lt;p&gt;I don&#039;t see what this has to do with semantics, either. Sorry.&lt;/p&gt;
&lt;p&gt;Cordially, David.&lt;br /&gt;
--&lt;/p&gt;
 </description>
     <pubDate>Wed, 13 Jun 2007 03:10:11 +0000</pubDate>
 <dc:creator>webwiz</dc:creator>
 <guid isPermaLink="false">comment 1220428 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/css-question#comment-1220417</link>
    <description> &lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;&lt;strong&gt;webwiz;220413 wrote:&lt;/strong&gt; &lt;strong&gt;@demonhale:&lt;br /&gt;
&lt;/strong&gt;&lt;br /&gt;
The original poster may be confused by this. It is perfectly valid to have multiple class names in the &quot;class&quot; attribute. This, for example:&lt;/p&gt;
&lt;p&gt;Cordially, David.&lt;br /&gt;
--&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Yes it is valid to have multiple classes, but for basics and semantics, it&#039;s better to assign one and apply standard mock-up first before focusing too much on multiple classes...&lt;/p&gt;
 </description>
     <pubDate>Wed, 13 Jun 2007 01:48:45 +0000</pubDate>
 <dc:creator>demonhale</dc:creator>
 <guid isPermaLink="false">comment 1220417 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/css-question#comment-1220413</link>
    <description> &lt;p&gt;&lt;strong&gt;@demonhale:&lt;br /&gt;
&lt;/strong&gt;&lt;br /&gt;
&lt;blockquote class=&quot;bb-quote-body&quot;&gt;Quote: and set classes that have no spaces and are properly quoted like so:&lt;/blockquote&gt;&lt;/p&gt;
&lt;p&gt;The original poster may be confused by this. It is perfectly valid to have multiple class names in the &quot;class&quot; attribute. This, for example:&lt;/p&gt;
&lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;Quote: &lt;LI class=&quot;first last menu-1-1-2&quot;&gt;&lt;/li&gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Cordially, David.&lt;br /&gt;
--&lt;/p&gt;
 </description>
     <pubDate>Wed, 13 Jun 2007 00:19:11 +0000</pubDate>
 <dc:creator>webwiz</dc:creator>
 <guid isPermaLink="false">comment 1220413 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/css-question#comment-1220333</link>
    <description> &lt;p&gt;first you need to properly tag your html codes, and set classes that have no spaces and are properly quoted like so:&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;lt;td class=&amp;quot;style1&amp;quot;&amp;gt;&amp;lt;ul class=&amp;quot;links&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;li class=&amp;quot;menu&amp;quot;&amp;gt;&amp;lt;a class=&amp;quot;menu112&amp;quot; href=&amp;quot;/&amp;quot;&amp;gt;Home&amp;lt;/a&amp;gt;&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
&lt;p&gt;then you can add on your css file definitions for colours of hover, and the links via classes... in your case, since the link has a class name &quot;menu112&quot; you can style this by:&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;.menu112 a{&lt;br /&gt;color: #fff;&lt;br /&gt;background: #000;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;.menu112 a:hover{&lt;br /&gt;color: #fff;&lt;br /&gt;background: #000;&lt;br /&gt;}&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
&lt;p&gt;learn more at w3c.org&lt;/p&gt;
 </description>
     <pubDate>Mon, 11 Jun 2007 06:11:15 +0000</pubDate>
 <dc:creator>demonhale</dc:creator>
 <guid isPermaLink="false">comment 1220333 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/css-question#comment-1220331</link>
    <description> &lt;p&gt;Tell me if I&#039;m wrong, but I suspect you are trying to set the text colo(u)r of the link, and finding that it does not work when you add a rule for, say, the class=links?&lt;/p&gt;
&lt;p&gt;I ask, because I found this puzzling at first. Links get special treatment by browsers, so you have to make a rule specifically for the link tag to get &#039;color&#039; to work. Any of these selectors should let you set the &#039;color&#039; and any other property you like on the link:&lt;/p&gt;
&lt;p&gt;.primary-links a {...}&lt;br /&gt;
.first a {...}&lt;br /&gt;
.menu-1-1-2 {...}&lt;/p&gt;
&lt;p&gt;You only need enough to target the link(s) you need. No need for all those classes, I feel sure.&lt;/p&gt;
&lt;p&gt;If this does not answer your question, I suggest taking a look at a CSS guide or a tutorial. I can recommend these folks in Sunny Sydney:&lt;br /&gt;
&lt;a href=&quot;http://www.westciv.com/style_master/academy/css_tutorial/index.html&quot; class=&quot;bb-url&quot;&gt;http://www.westciv.com/&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Mon, 11 Jun 2007 06:01:16 +0000</pubDate>
 <dc:creator>webwiz</dc:creator>
 <guid isPermaLink="false">comment 1220331 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
