<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1021509" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1021509</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/aligning-text-css#comment-1132765</link>
    <description> &lt;p&gt;IE3 will have problems if font-family isn&#039;t last. Frankly, I don&#039;t think we need to worry about it anymore.&lt;/p&gt;
&lt;p&gt;While a semi-colon is not needed on the last line, it&#039;s good practice to include it. That way when you edit the element&#039;s declarations, you won&#039;t accidentally forget to finally close that line first (leading to difficult to find errors).&lt;/p&gt;
&lt;p&gt;Additionally, to make things nice and sensible to the people-types:&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;.tp {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; font: 10px verdana, arial, sans-serif normal;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; color: #999;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; text-align: right;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
&lt;p&gt;Or, alternatively:&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;.tp {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; font-size: 10px;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; font-family: verdana, arial, sans-serif;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; font-weight: normal;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; color: #999; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; text-align: right;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
&lt;p&gt;The indents make it much easier to troubleshoot.&lt;/p&gt;
 </description>
     <pubDate>Mon, 09 Jun 2003 18:12:05 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1132765 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>Re: Aligning text with CSS</title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/aligning-text-css#comment-1132761</link>
    <description> &lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;Quote: &lt;em&gt;Originally posted by dmwhipp &lt;/em&gt;&lt;br /&gt;
&lt;strong&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;.tp { font-family:verdana,arial,sans-serif; color:#999999; font-size:10px; font-weight:normal; text-align: right; }&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;I&#039;m absolutely NOT an expert in this stuff but from the tutorials I&#039;ve read on CSS, you should always put your font-family as the last attribute.  I forgot the specifics but I think I read on Mulder&#039;s style sheets that some browsers will apparently ignore the font-family unless it is listed last.  &lt;/p&gt;
&lt;p&gt;And I don&#039;t know if it matters but I don&#039;t believe you need a &quot;;&quot; after your last attribute.&lt;/p&gt;
&lt;p&gt;(Anybody else can confirm or refute this fact)&lt;/p&gt;
 </description>
     <pubDate>Mon, 09 Jun 2003 17:35:20 +0000</pubDate>
 <dc:creator>fifeclub</dc:creator>
 <guid isPermaLink="false">comment 1132761 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/aligning-text-css#comment-1132760</link>
    <description> &lt;p&gt;Thanks Kyle, but I just did 150 pages of the site in XHTML transitional and I only have about a dozen pages left to fix. I&#039;ll switch over to strict XHTNL next year LOL&lt;br /&gt;
Deborah&lt;/p&gt;
 </description>
     <pubDate>Mon, 09 Jun 2003 17:32:18 +0000</pubDate>
 <dc:creator>dmwhipp</dc:creator>
 <guid isPermaLink="false">comment 1132760 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/aligning-text-css#comment-1132750</link>
    <description> &lt;p&gt;you wouldnt have to do that if you used the latest specifications of XHTML, following the &quot;strict&quot; documentation...when you create a table you do all the widths, heights, etc in stylesheets, as well as any text formatting.  css is seen as a cosmetic language, working on the formatting of the elements, whereas HTML is seen as the structure language.  i only switched over to doing this weeks ago, and its already helped out alot.  i reccommend it.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.w3.org/TR/xhtml1/&quot; class=&quot;bb-url&quot;&gt;http://www.w3.org/TR/xhtml1/&lt;/a&gt; for XHTML 1.0 (1.1 exists, but isnt standard yet)&lt;br /&gt;
&lt;a href=&quot;http://www.w3.org/TR/REC-CSS1&quot; class=&quot;bb-url&quot;&gt;http://www.w3.org/TR/REC-CSS1&lt;/a&gt; for CSS1 (CSS2 exists as well, but isn&#039;t standard either)&lt;/p&gt;
&lt;p&gt;good luck&lt;/p&gt;
 </description>
     <pubDate>Mon, 09 Jun 2003 15:49:32 +0000</pubDate>
 <dc:creator>brady.k</dc:creator>
 <guid isPermaLink="false">comment 1132750 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>Thanks</title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/aligning-text-css#comment-1132747</link>
    <description> &lt;p&gt;Thanks - what you gave me worked perfectly, but I went with a center alignment. Now it&#039;s just matter of fixing all 150 pages!&lt;br /&gt;
Deborah&lt;/p&gt;
 </description>
     <pubDate>Mon, 09 Jun 2003 14:41:12 +0000</pubDate>
 <dc:creator>dmwhipp</dc:creator>
 <guid isPermaLink="false">comment 1132747 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/aligning-text-css#comment-1132532</link>
    <description> &lt;p&gt;It is right-aligned. Unfortunately, the element is not block-level that you&#039;re putting the right-aligned text in, so it&#039;s collapsing.&lt;/p&gt;
&lt;p&gt;You&#039;ll have to use proper markup, and nest all inline elements within block level elements in order to get the effect you want.&lt;/p&gt;
&lt;p&gt;Specifically:&lt;/p&gt;
&lt;p&gt;&lt;a href&gt;...&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Thu, 05 Jun 2003 03:15:11 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1132532 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
