<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1017645" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1017645</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/css-complications#comment-1103527</link>
    <description> &lt;p&gt;Probably because of inheritance issues -- some things inherit properly, others don&#039;t. &lt;/p&gt;
&lt;p&gt;Good luck!&lt;/p&gt;
&lt;p&gt;&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; Suzanne&lt;/p&gt;
 </description>
     <pubDate>Thu, 28 Feb 2002 19:24:21 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1103527 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/css-complications#comment-1103508</link>
    <description> &lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;Quote: &lt;em&gt;Originally posted by Suzanne &lt;/em&gt;&lt;br /&gt;
&lt;strong&gt;well playing around fixing the a.class:pseudoclass thing makes the colours work in Opera, but I&#039;m having the same problem with the bottom.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;more later. &lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Actually, the bottom copyright part is working the way I wanted to, being font size=1.  It&#039;s that calendar box that I can&#039;t figure out.  I realize that eventually I should change everything to CSS, and I will eventually, but it&#039;s just bugging me how the copyright section and the calendar are done the same exact way ( x ) but for some reason it works in one place and not another.  But anyway, yes, I will eventually change over to inline CSS for variable text sizes.&lt;/p&gt;
 </description>
     <pubDate>Thu, 28 Feb 2002 14:53:25 +0000</pubDate>
 <dc:creator>fifeclub</dc:creator>
 <guid isPermaLink="false">comment 1103508 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/css-complications#comment-1103463</link>
    <description> &lt;p&gt;You have a whack of other errors in the HTML -- validating that will help considerably.&lt;/p&gt;
&lt;p&gt;You could also set the font tag in the CSS, btw.&lt;/p&gt;
&lt;p&gt;font {font-size: ....}&lt;/p&gt;
&lt;p&gt;And the reason the font tag is affecting things? Two reasons: one, no valid DOCTYPE, and two, you&#039;re actually using a  tag, but not declaring it in the CSS. The HTML is not overriding the CSS so much as  you are setting a new state for things within the font tags. You can remove them entirely.&lt;/p&gt;
&lt;p&gt;The inheritance is like this for that section -- Make everything what the CSS says for P, except for here, this bit, use the FONT declaration. But there is no font declaration in the CSS, so it uses the HTML instead.&lt;/p&gt;
&lt;p&gt;If you put all the information into the CSS, it will render fine for people without CSS support (default colours and links) -- which is less than 1% of the audience for most sites. AND that way you can remove the font tags entirely.&lt;/p&gt;
&lt;p&gt;Suzanne&lt;/p&gt;
 </description>
     <pubDate>Thu, 28 Feb 2002 06:51:15 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1103463 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/css-complications#comment-1103457</link>
    <description> &lt;p&gt;well playing around fixing the a.class:pseudoclass thing makes the colours work in Opera, but I&#039;m having the same problem with the bottom.&lt;/p&gt;
&lt;p&gt;more later.&lt;/p&gt;
 </description>
     <pubDate>Thu, 28 Feb 2002 05:45:51 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1103457 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/css-complications#comment-1103453</link>
    <description> &lt;p&gt;Part of the problem is that you are not using well-formed HTML. Close up those paragraph tags.&lt;/p&gt;
&lt;p&gt;Also, there is nothing specified in that area?&lt;/p&gt;
&lt;p&gt;a:link.menu should be a.menu:link, et cetera, as well. (Check in Opera to see if it&#039;s working).&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;lt;center&amp;gt;&lt;br /&gt;&amp;lt;p&amp;gt;&amp;amp;nbsp;&lt;br /&gt;&amp;lt;p&amp;gt;&amp;lt;font face=&amp;quot;Helvetica, Arial&amp;quot; size=1 color=&amp;quot;#000000&amp;quot;&amp;gt;&lt;br /&gt;&amp;amp;copy; 2002 The Dugout&lt;br /&gt;&amp;lt;br&amp;gt;[Beta v0.5.2]&lt;br /&gt;&amp;lt;/font&amp;gt;&lt;br /&gt;&amp;lt;/center&amp;gt;&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
&lt;p&gt;Should be:&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;lt;p align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;br&amp;gt;&lt;br /&gt;&amp;lt;font face=&amp;quot;Helvetica, Arial&amp;quot; size=&amp;quot;1&amp;quot; color=&amp;quot;#000000&amp;quot;&amp;gt;&lt;br /&gt;&amp;amp;copy; 2002 The Dugout&amp;lt;br&amp;gt;[Beta v0.5.2]&lt;br /&gt;&amp;lt;/font&amp;gt;&lt;br /&gt;&amp;lt;/p&amp;gt;&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
&lt;p&gt;Of course, it would be even better if you just turfed the font tags. &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/wink.png&quot; title=&quot;Wink&quot; alt=&quot;Wink&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
&lt;p&gt;I don&#039;t see anything else glaringly wrong with the CSS, did you validate it?&lt;/p&gt;
 </description>
     <pubDate>Thu, 28 Feb 2002 04:57:34 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1103453 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/css-complications#comment-1103452</link>
    <description> &lt;p&gt;logically there is an error in your CSS -- again, HTML does not override CSS, but if the CSS is busted, then the browser will &lt;em&gt;revert&lt;/em&gt; to the HTML specifications.&lt;/p&gt;
 </description>
     <pubDate>Thu, 28 Feb 2002 04:52:08 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1103452 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/css-complications#comment-1103442</link>
    <description> &lt;p&gt;So I&#039;ve now implemented a combination of everybody&#039;s CSS suggestions.  Thanks.  From my tests it works and looks good in IE 5 and NS 6.  It still has some problems in NS 4, but the glass-half-full side is that it isn&#039;t lime green and aqua anymore either.  Plus I cleaned up the code to make it easier for y&#039;all to read.  &lt;/p&gt;
&lt;p&gt;Check it out at &lt;a href=&quot;http://www.charlottemlb.com/softball/home.shtml&quot; class=&quot;bb-url&quot;&gt;charlottemlb.com/softball/home.shtml&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Let me know if everything seems okay for the most part and I&#039;ll consider my CSS adventure to be over (for now) and I&#039;ll move back into building up the content of my site.  Thanks again everyone.&lt;/p&gt;
&lt;p&gt;P.S.  The &#039;font size=1&#039; tag overrides my CSS properties in the copyright at the bottom.  So why do my &#039;font size=1&#039; tags NOT override the CSS properties in that yellow calendar box? &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/confused.png&quot; title=&quot;Confused&quot; alt=&quot;Confused&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Thu, 28 Feb 2002 04:01:36 +0000</pubDate>
 <dc:creator>fifeclub</dc:creator>
 <guid isPermaLink="false">comment 1103442 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/css-complications#comment-1103332</link>
    <description> &lt;p&gt;Anything, ANYTHING can be in an include. I could make a page thusly:&lt;/p&gt;
&lt;p&gt;include header file&lt;br /&gt;
include body file&lt;br /&gt;
include footer file&lt;/p&gt;
&lt;p&gt;And in the header file have  to , in the body file, the content, and in the footer file &lt;/p&gt;
&lt;p&gt;It doesn&#039;t matter to the browser because they are glued together on the server before the browser sees it.&lt;/p&gt;
&lt;p&gt;&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; S&lt;/p&gt;
 </description>
     <pubDate>Wed, 27 Feb 2002 08:20:29 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1103332 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/css-complications#comment-1103330</link>
    <description> &lt;p&gt;well, I appreciate that url - but would the example you&#039;ve provided be an appropriate structure for an include, i.e., with HTML and HEAD tags?&lt;/p&gt;
 </description>
     <pubDate>Wed, 27 Feb 2002 07:28:04 +0000</pubDate>
 <dc:creator>mmi</dc:creator>
 <guid isPermaLink="false">comment 1103330 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/css-complications#comment-1103328</link>
    <description> &lt;p&gt;If you have this as an include...&lt;/p&gt;
&lt;p&gt;$variable&lt;/p&gt;
&lt;p&gt;Or, in otherwords, if you have both SSI and a database. For some sites I&#039;ve used conditional scripting in the SSI to make the titles happen -- &lt;a href=&quot;http://www.itservices.ubc.ca&quot; class=&quot;bb-url&quot;&gt;itservices.ubc.ca&lt;/a&gt; for instance -- so when new pages are created, the navigation and the header include are edited, and the new page is a list of includes only.&lt;/p&gt;
&lt;p&gt;This was to prepare for database integration in a future version of the site.&lt;/p&gt;
&lt;p&gt;So yes -- the title is included in the header SSI so there can be unique meta tags and titles for the pages to prepare for database integration in the future.&lt;/p&gt;
&lt;p&gt;Suzanne&lt;/p&gt;
 </description>
     <pubDate>Wed, 27 Feb 2002 06:44:03 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1103328 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
