<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Moore to shoot sequel to Fahrenheit 9/11</title>
	<atom:link href="http://0xtc.com/2004/11/12/moore-to-shoot-sequel-to-fahrenheit-911.xhtml/feed" rel="self" type="application/rss+xml" />
	<link>http://0xtc.com/2004/11/12/moore-to-shoot-sequel-to-fahrenheit-911.xhtml</link>
	<description>A non-prophet exposé</description>
	<pubDate>Sun, 20 Jul 2008 13:58:18 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: RauL</title>
		<link>http://0xtc.com/2004/11/12/moore-to-shoot-sequel-to-fahrenheit-911.xhtml#comment-122</link>
		<dc:creator>RauL</dc:creator>
		<pubDate>Sat, 13 Nov 2004 00:00:52 +0000</pubDate>
		<guid isPermaLink="false">http://0xtc.com/2004/11/12/moore-to-shoot-sequel-to-fahrenheit-911.xhtml#comment-122</guid>
		<description>...&lt;br /&gt;Nice, thanks alot : D...I was confused wether it was Id or Class..</description>
		<content:encoded><![CDATA[<p>&#8230;<br />Nice, thanks alot : D&#8230;I was confused wether it was Id or Class..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TCorp</title>
		<link>http://0xtc.com/2004/11/12/moore-to-shoot-sequel-to-fahrenheit-911.xhtml#comment-123</link>
		<dc:creator>TCorp</dc:creator>
		<pubDate>Fri, 12 Nov 2004 23:45:07 +0000</pubDate>
		<guid isPermaLink="false">http://0xtc.com/2004/11/12/moore-to-shoot-sequel-to-fahrenheit-911.xhtml#comment-123</guid>
		<description>CSS formatting&lt;br /&gt;2 ways:&lt;br /&gt;
&lt;br /&gt;
First, if you want some TDs to look different than others TDs, give them a class:&lt;br /&gt;
&lt;br /&gt;
&lt;tt class="htmlstring"&gt;...&#60;td class=&#34;type2&#34;&#62;bla bla&#60;/td&#62;...&lt;/tt&gt;&lt;br /&gt;
and in the CSS you write something like:&lt;br /&gt;
&lt;br /&gt;
.type2&lt;br /&gt;
{&lt;br /&gt;
color:red;&lt;br /&gt;
font-style:Italic&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
The second case is when you want to have only some words show up in different formatting. In this case you format them using spans:&lt;br /&gt;
&lt;br /&gt;
&lt;tt class="htmlstring"&gt;...&#60;td&#62;bla bla bla &#60;span class=&#34;type2&#34;&#62;bla bla bla&#60;/span&#62;&#60;/td&#62;...&lt;/tt&gt;&lt;br /&gt;
&lt;br /&gt;
IDs are ONLY used for unique objects that only show up once in your html like heads, content, footer, sidebar etc...&lt;br /&gt;
&lt;br /&gt;
formatting IDs in CSS is done using a '#'-prefix for the name. In the html you can have:&lt;br /&gt;
&lt;br /&gt;
&lt;tt class="htmlstring"&gt;...&#60;td id=&#34;header&#34;&#62;bla bla bla&#60;/td&#62;...&lt;/tt&gt;&lt;br /&gt;
&lt;br /&gt;
and in the CSS:&lt;br /&gt;
&lt;br /&gt;
#header &lt;br /&gt;
{&lt;br /&gt;
margin-bottom:264px;&lt;br /&gt;
text-align:left;&lt;br /&gt;
}</description>
		<content:encoded><![CDATA[<p>CSS formatting<br />2 ways:</p>
<p>First, if you want some TDs to look different than others TDs, give them a class:</p>
<p><tt class="htmlstring">&#8230;&lt;td class=&quot;type2&quot;&gt;bla bla&lt;/td&gt;&#8230;</tt><br />
and in the CSS you write something like:</p>
<p>.type2<br />
{<br />
color:red;<br />
font-style:Italic<br />
}</p>
<p>The second case is when you want to have only some words show up in different formatting. In this case you format them using spans:</p>
<p><tt class="htmlstring">&#8230;&lt;td&gt;bla bla bla &lt;span class=&quot;type2&quot;&gt;bla bla bla&lt;/span&gt;&lt;/td&gt;&#8230;</tt></p>
<p>IDs are ONLY used for unique objects that only show up once in your html like heads, content, footer, sidebar etc&#8230;</p>
<p>formatting IDs in CSS is done using a &#8216;#&#8217;-prefix for the name. In the html you can have:</p>
<p><tt class="htmlstring">&#8230;&lt;td id=&quot;header&quot;&gt;bla bla bla&lt;/td&gt;&#8230;</tt></p>
<p>and in the CSS:</p>
<p>#header <br />
{<br />
margin-bottom:264px;<br />
text-align:left;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RauL</title>
		<link>http://0xtc.com/2004/11/12/moore-to-shoot-sequel-to-fahrenheit-911.xhtml#comment-124</link>
		<dc:creator>RauL</dc:creator>
		<pubDate>Fri, 12 Nov 2004 23:08:21 +0000</pubDate>
		<guid isPermaLink="false">http://0xtc.com/2004/11/12/moore-to-shoot-sequel-to-fahrenheit-911.xhtml#comment-124</guid>
		<description>...&lt;br /&gt;Hey T, I got a question about CSS, let's say I'm using TDs and I want some of the content in them to be different than the others, If i set an ID to those TDs I want with different font or font size etc, how do I type it in the CSS file?</description>
		<content:encoded><![CDATA[<p>&#8230;<br />Hey T, I got a question about CSS, let&#8217;s say I&#8217;m using TDs and I want some of the content in them to be different than the others, If i set an ID to those TDs I want with different font or font size etc, how do I type it in the CSS file?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.414 seconds -->
