<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1034679" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1034679</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/validation-queries-bordercolor-and-map#comment-1203109</link>
    <description> &lt;p&gt;Putting one class in it&#039;s own CSS property wouldn&#039;t be very good use of a code even if you wanted to re-use it all over. Then you&#039;d probably end up with a lot of multiple classes on everything. In this case you could call it &quot;frame&quot; or &quot;outline&#039; or something. &quot;brownborder&quot; wouldn&#039;t make any sense if you wanted to change it to green, and &quot;bordercolour&quot; wouldn&#039;t make sense if there were other elements in there like, say, padding. &lt;/p&gt;
&lt;p&gt;So you can  (and should) have semantic class names that are re-usable elsewhere when necessary. Semantic names are always ideal &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; I find that I learn to structure my code better I use classes less and less. If you had all your tables in a certain area you&#039;d use #content table instead of putting a class on all of them.&lt;/p&gt;
 </description>
     <pubDate>Wed, 28 Jun 2006 12:38:39 +0000</pubDate>
 <dc:creator>Megan</dc:creator>
 <guid isPermaLink="false">comment 1203109 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/validation-queries-bordercolor-and-map#comment-1203085</link>
    <description> &lt;p&gt;The big problem with using semantic names is they are throw away names - not useable elsewhere.&lt;/p&gt;
&lt;p&gt;Imagine you called this class &quot;frontpagesplashframe&quot; although over the top it is exactly what it could be, now say we want the same properties elsewhere, imagine finding id=&quot;frontpagesplashframe&quot; on the contact page or orderform or similar?&lt;br /&gt;
While I admit my choice wasn&#039;t the best, a better one to use would be &quot;bordercolor&quot; or &quot;brownborder&quot;, this way it can be reused which saves on coding/bandwidth/load time.&lt;br /&gt;
Depending on the code involved it can be different but in this case a semantic name is not ideal&lt;/p&gt;
 </description>
     <pubDate>Tue, 27 Jun 2006 22:32:40 +0000</pubDate>
 <dc:creator>Busy</dc:creator>
 <guid isPermaLink="false">comment 1203085 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/validation-queries-bordercolor-and-map#comment-1203057</link>
    <description> &lt;p&gt;Another correction to busy&#039;s code - bgcolour is not a semantic name for a class, it&#039;s purely aesthetic. With CSS you are attempting to separate form from function as much as possible. The CSS class names should match the function in the HTML, while the actual CSS describes the form. You should name your classes for what they are doing, not what they are making something look like. So in this case you could call it &quot;splashcontainer&quot; or &quot;splashframe&quot;.  This way you&#039;ll also be able to add more CSS to that element.&lt;/p&gt;
 </description>
     <pubDate>Tue, 27 Jun 2006 13:06:42 +0000</pubDate>
 <dc:creator>Megan</dc:creator>
 <guid isPermaLink="false">comment 1203057 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/validation-queries-bordercolor-and-map#comment-1203009</link>
    <description> &lt;p&gt;Just remember in CSS the id can only be used once per page, the class can be used over and over - a common oversight&lt;/p&gt;
 </description>
     <pubDate>Mon, 26 Jun 2006 22:11:18 +0000</pubDate>
 <dc:creator>Busy</dc:creator>
 <guid isPermaLink="false">comment 1203009 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/validation-queries-bordercolor-and-map#comment-1202970</link>
    <description> &lt;p&gt;Well here&#039;s what happened ...... I did all of the above and I realised the reason it looked different to me was that IE was not recognising the style tag for that table so it simply displayed the table border as white. No matter how I tried it wouldn&#039;t  work so I created a new style for that tag in the css file and it works perfectly. Now it validates! Thanks.&lt;/p&gt;
 </description>
     <pubDate>Mon, 26 Jun 2006 12:08:32 +0000</pubDate>
 <dc:creator>Blue</dc:creator>
 <guid isPermaLink="false">comment 1202970 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/validation-queries-bordercolor-and-map#comment-1202422</link>
    <description> &lt;p&gt;bordercolor isnota w3c valid property for anyelement.  Its an  IE only thing.  they way around it is to use:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;style=&amp;quot;border-color: #ececec;&amp;quot;&lt;/code&gt;&#039; &lt;/p&gt;
&lt;p&gt;on the element you wish to change the border colour.  A better method to inline css would be to define a special class for the elements with border colours tho.&lt;/p&gt;
 </description>
     <pubDate>Sun, 18 Jun 2006 16:14:43 +0000</pubDate>
 <dc:creator>Neutron2k</dc:creator>
 <guid isPermaLink="false">comment 1202422 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/validation-queries-bordercolor-and-map#comment-1202412</link>
    <description> &lt;p&gt;What browser are you using, looks the same to me on FF&lt;br /&gt;
Mind you the colour isnt a RGB one so can look different on different screens, try choose a colour closer to the RGB ones.&lt;br /&gt;
Try something like #7B3921 (is a 256 colour)&lt;/p&gt;
&lt;p&gt;remember the 0&#039;s are numbers not letters in colour codes&lt;/p&gt;
 </description>
     <pubDate>Sun, 18 Jun 2006 11:03:22 +0000</pubDate>
 <dc:creator>Busy</dc:creator>
 <guid isPermaLink="false">comment 1202412 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/validation-queries-bordercolor-and-map#comment-1202407</link>
    <description> &lt;p&gt;Thanks Busy, you were spot on with both and now it will validate, although I haven&#039;t changed the bordercolor tag because it displays differently to the original. I may have to live with it and if that&#039;s the case I may even drop the border because the validated display looks a bit funky. You can see the difference at these two links. &lt;/p&gt;
&lt;p&gt;Original - &lt;a href=&quot;http://www.laughingbuddhadesign.com&quot; class=&quot;bb-url&quot;&gt;http://www.laughingbuddhadesign.com&lt;/a&gt;&lt;br /&gt;
Validated code - &lt;a href=&quot;http://www.laughingbuddhadesign.com/copy_of_index.html&quot; class=&quot;bb-url&quot;&gt;http://www.laughingbuddhadesign.com/copy_of_index.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;If anyone has any suggestions about why it displays differently please let me know. Otherwise the wee border may have to go .....&lt;/p&gt;
&lt;p&gt;Cheers,&lt;/p&gt;
&lt;p&gt;Blue&lt;/p&gt;
 </description>
     <pubDate>Sun, 18 Jun 2006 03:43:42 +0000</pubDate>
 <dc:creator>Blue</dc:creator>
 <guid isPermaLink="false">comment 1202407 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/validation-queries-bordercolor-and-map#comment-1201582</link>
    <description> &lt;p&gt;add &lt;code&gt;#bgcolour {bordercolor:#783820;}&lt;/code&gt;&#039; between your style tags and in your table tag add &lt;code&gt;id=&amp;quot;bgcolour&amp;quot;&lt;/code&gt;&#039;&lt;/p&gt;
&lt;p&gt;your map tags are between the  and , take the  tag from below the map tags and place after the  before the map tags&lt;/p&gt;
&lt;p&gt;and then it will validate&lt;/p&gt;
 </description>
     <pubDate>Wed, 07 Jun 2006 10:31:00 +0000</pubDate>
 <dc:creator>Busy</dc:creator>
 <guid isPermaLink="false">comment 1201582 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
