<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Thesis Hacker &#187; colors</title>
	<atom:link href="http://www.thesishacker.com/category/colors/feed" rel="self" type="application/rss+xml" />
	<link>http://www.thesishacker.com</link>
	<description>Customize Thesis</description>
	<lastBuildDate>Thu, 21 May 2009 16:22:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Change the color of the tagline in the header</title>
		<link>http://www.thesishacker.com/change-the-color-of-the-tagline-in-the-header</link>
		<comments>http://www.thesishacker.com/change-the-color-of-the-tagline-in-the-header#comments</comments>
		<pubDate>Fri, 15 May 2009 16:04:32 +0000</pubDate>
		<dc:creator>Nasty</dc:creator>
				<category><![CDATA[colors]]></category>
		<category><![CDATA[header]]></category>
		<category><![CDATA[tagline]]></category>
		<category><![CDATA[change color]]></category>
		<category><![CDATA[change color of tagline]]></category>
		<category><![CDATA[color]]></category>

		<guid isPermaLink="false">http://www.thesishacker.com/?p=1825</guid>
		<description><![CDATA[I&#8217;ve gotten a lot of requests for changing the color of the tagline and moving the tagline. To change the color, keep reading. To change the position, go HERE.


In your custom.css add this&#8230;
.custom #header #tagline {color: #000000;}
Change the hexadecimal number to whatever gives you the desired effect
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve gotten a lot of requests for changing the color of the tagline and moving the tagline. To change the color, keep reading. To change the position, go <a href="http://www.thesishacker.com/move-the-tagline-to-a-different-spot-in-the-header">HERE.</a></p>
<p><img class="alignnone size-full wp-image-1826" title="164" src="http://www.thesishacker.com/wp-content/uploads/2009/05/164.png" alt="164" width="487" height="232" /></p>
<p><img class="alignnone size-full wp-image-1827" title="165" src="http://www.thesishacker.com/wp-content/uploads/2009/05/165.png" alt="165" width="484" height="228" /></p>
<p>In your custom.css add this&#8230;</p>
<p class="alert">.custom #header #tagline {color: #000000;}</p>
<p>Change the hexadecimal number to whatever gives you the desired effect</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thesishacker.com/change-the-color-of-the-tagline-in-the-header/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Highlight any part of your post or page</title>
		<link>http://www.thesishacker.com/highlight-any-part-of-your-post-or-page</link>
		<comments>http://www.thesishacker.com/highlight-any-part-of-your-post-or-page#comments</comments>
		<pubDate>Tue, 12 May 2009 00:01:21 +0000</pubDate>
		<dc:creator>Nasty</dc:creator>
				<category><![CDATA[colors]]></category>
		<category><![CDATA[pages]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[highlight]]></category>
		<category><![CDATA[highlight page]]></category>
		<category><![CDATA[highlight post]]></category>
		<category><![CDATA[highlight section]]></category>

		<guid isPermaLink="false">http://www.thesishacker.com/?p=1802</guid>
		<description><![CDATA[
You can highlight anything from individual words, to sentences, to entire paragraphs. First thing you&#8217;re going to do is figure out a class name. This name will be used over and over again to put the highlight anywhere in any post or page
I named mine &#8220;my-highlight&#8221;
Add the name to your custom.css and chose a color [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-1803" title="163" src="http://www.thesishacker.com/wp-content/uploads/2009/05/163.png" alt="163" width="560" height="558" /></p>
<p>You can highlight anything from individual words, to sentences, to entire paragraphs. First thing you&#8217;re going to do is figure out a class name. This name will be used over and over again to put the highlight anywhere in any post or page</p>
<p>I named mine &#8220;my-highlight&#8221;</p>
<p>Add the name to your custom.css and chose a color you want for the background</p>
<p class="alert">.custom .my-highlight {background: #fefdaa ;}</p>
<p>Now, when you write a post or page and you want to insert the highlight anywhere you want make sure you&#8217;re in the html editor&#8230;</p>
<p><img class="alignnone size-full wp-image-1804" title="47" src="http://www.thesishacker.com/wp-content/uploads/2009/05/47.png" alt="47" width="531" height="81" /></p>
<p>Pick where you want the highlight to start and type in this with the name you gave the class for the highlight&#8230;</p>
<p class="alert">&lt;span class=&#8221;my-highlight&#8221;&gt;</p>
<p>Where you want the highlight to stop just add this&#8230;</p>
<p class="alert">&lt;/span&gt;</p>
<p>For example I want to add a highlight to this sentence you would do it like this&#8230;</p>
<p class="alert">Lorem ipsum dolor sit amet, &lt;span class=&#8221;my-highlight&#8221;&gt;consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt&lt;/span&gt; ut laoreet dolore magna aliquam erat </p>
<p>Now it doesn&#8217;t matter what post or page you&#8217;re writing because you have the selector in your custom.css so all you have to do is call it with the class name you gave it. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.thesishacker.com/highlight-any-part-of-your-post-or-page/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Change the color of the submit form button text</title>
		<link>http://www.thesishacker.com/change-the-color-of-the-submit-form-button-text</link>
		<comments>http://www.thesishacker.com/change-the-color-of-the-submit-form-button-text#comments</comments>
		<pubDate>Fri, 06 Feb 2009 03:45:05 +0000</pubDate>
		<dc:creator>Nasty</dc:creator>
				<category><![CDATA[colors]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[button]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[submit form]]></category>

		<guid isPermaLink="false">http://www.thesishacker.com/?p=1054</guid>
		<description><![CDATA[

In your custom.ss file add the following code. You can put it anywhere you want but I recommend putting it at the top. Remember, once you make the change, save it, and upload the new file to your server. Always describe what you&#8217;re doing by putting your description between the comment tags /*  */ at [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-1055" title="106" src="http://www.thesishacker.com/wp-content/uploads/2009/02/106.png" alt="106" width="500" height="315" /></p>
<p><img class="alignnone size-full wp-image-1056" title="105" src="http://www.thesishacker.com/wp-content/uploads/2009/02/105.png" alt="105" width="502" height="318" /></p>
<p>In your custom.ss file add the following code. You can put it anywhere you want but I recommend putting it at the top. Remember, once you make the change, save it, and upload the new file to your server. Always describe what you&#8217;re doing by putting your description between the comment tags /*  */ at the beginning shown below in green. The comments aren’t shown on your rendered page and it just makes things easier for you to remember…</p>
<p class="alert"><span style="color: #339966;">/*submit form text color*/</span><br />
.custom #commentform .form_submit { color: #ff3300 ;}</p>
<p>Use whatever hexidecimal color gives you the desired effect</p>
<p>Use the cool picker app in the tool box to find a color you like..</p>
<p style="text-align: center;">
]]></content:encoded>
			<wfw:commentRss>http://www.thesishacker.com/change-the-color-of-the-submit-form-button-text/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Colorize the teaser text</title>
		<link>http://www.thesishacker.com/colorize-the-teaser-text</link>
		<comments>http://www.thesishacker.com/colorize-the-teaser-text#comments</comments>
		<pubDate>Thu, 05 Feb 2009 05:54:03 +0000</pubDate>
		<dc:creator>Nasty</dc:creator>
				<category><![CDATA[colors]]></category>
		<category><![CDATA[feature and teasers]]></category>
		<category><![CDATA[home page]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[colorize]]></category>
		<category><![CDATA[teasers]]></category>

		<guid isPermaLink="false">http://www.thesishacker.com/?p=1027</guid>
		<description><![CDATA[
In your custom.ss file add the following code. You can put it anywhere you want but I recommend putting it at the top. Remember,
once you make the change, save it, and upload the new file to your server. Always describe what you&#8217;re doing by putting your
description between the comment tags /*  */ at the beginning [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-1028 aligncenter" style="border: 1px solid black;" title="100" src="http://www.thesishacker.com/wp-content/uploads/2009/02/100.png" alt="100" width="524" height="986" /></p>
<p>In your custom.ss file add the following code. You can put it anywhere you want but I recommend putting it at the top. Remember,<br />
once you make the change, save it, and upload the new file to your server. Always describe what you&#8217;re doing by putting your<br />
description between the comment tags /*  */ at the beginning shown below in green. The comments aren’t shown on your rendered page and it just makes things easier for you to remember…</p>
<p class="alert"><span style="color: #339966;">/*colorize the teaser text*/</span><br />
.custom .teaser .format_teaser {color: #ff33ee ;}</p>
<p>Chose whatever hexidecimal color gives the desired effect</p>
<p style="text-align: center;"><a href="http://www.febooti.com/products/iezoom/online-help/online-color-chart-picker.html"><img class="aligncenter size-full wp-image-1029" title="colorchart3" src="http://www.thesishacker.com/wp-content/uploads/2009/02/colorchart3.jpg" alt="colorchart3" width="133" height="121" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thesishacker.com/colorize-the-teaser-text/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Colorize the teaser content</title>
		<link>http://www.thesishacker.com/colorize-the-teaser-content</link>
		<comments>http://www.thesishacker.com/colorize-the-teaser-content#comments</comments>
		<pubDate>Thu, 05 Feb 2009 05:45:22 +0000</pubDate>
		<dc:creator>Nasty</dc:creator>
				<category><![CDATA[colors]]></category>
		<category><![CDATA[feature and teasers]]></category>
		<category><![CDATA[home page]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[colorize]]></category>
		<category><![CDATA[teaser]]></category>

		<guid isPermaLink="false">http://www.thesishacker.com/?p=1020</guid>
		<description><![CDATA[If you want to get an effect similar to this&#8230;

In your custom.ss file add the following code. You can put it anywhere you want but I recommend putting it at the top. Remember, once you make the change, save it, and upload the new file to your server. Always describe what you&#8217;re doing by putting [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to get an effect similar to this&#8230;</p>
<p style="text-align: center;"><img class="size-full wp-image-1021 aligncenter" style="border: 1px solid black;" title="99" src="http://www.thesishacker.com/wp-content/uploads/2009/02/99.png" alt="99" width="528" height="990" /></p>
<p>In your custom.ss file add the following code. You can put it anywhere you want but I recommend putting it at the top. Remember, once you make the change, save it, and upload the new file to your server. Always describe what you&#8217;re doing by putting your description between the comment tags /*  */ at the beginning shown below in green. The comments aren’t shown on your rendered page and it just makes things easier for you to remember…</p>
<p class="alert"><span style="color: #339966;">/*colorize the teaser content*/</span><br />
.custom .teaser .format_teaser { background-color: #eeeeee ;}</p>
<p>Pick whatever hexidecimal color gives the desired effect</p>
<p style="text-align: center;"><a href="http://www.febooti.com/products/iezoom/online-help/online-color-chart-picker.html"><img class="size-full wp-image-1022 aligncenter" title="colorchart2" src="http://www.thesishacker.com/wp-content/uploads/2009/02/colorchart2.jpg" alt="colorchart2" width="133" height="121" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thesishacker.com/colorize-the-teaser-content/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Change the color of your blockquote</title>
		<link>http://www.thesishacker.com/change-color-of-blockquotes</link>
		<comments>http://www.thesishacker.com/change-color-of-blockquotes#comments</comments>
		<pubDate>Wed, 04 Feb 2009 00:20:18 +0000</pubDate>
		<dc:creator>Nasty</dc:creator>
				<category><![CDATA[blockqoutes]]></category>
		<category><![CDATA[colors]]></category>
		<category><![CDATA[pages]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[blockquote]]></category>
		<category><![CDATA[change color]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[post]]></category>

		<guid isPermaLink="false">http://www.thesishacker.com/?p=975</guid>
		<description><![CDATA[

In your custom.ss file add the following code. You can put it anywhere you want but I recommend putting it at the top. Remember, once you make the change, save it, and upload the new file to your server. Always describe what you&#8217;re doing by putting your descripton between the comment tags /*  */ at [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-976 aligncenter" style="border: 1px solid black;" title="881" src="http://www.thesishacker.com/wp-content/uploads/2009/02/881.png" alt="881" width="525" height="395" /></p>
<p style="text-align: center;"><img class="size-full wp-image-977 aligncenter" style="border: 1px solid black;" title="89" src="http://www.thesishacker.com/wp-content/uploads/2009/02/89.png" alt="89" width="524" height="370" /></p>
<p>In your custom.ss file add the following code. You can put it anywhere you want but I recommend putting it at the top. Remember, once you make the change, save it, and upload the new file to your server. Always describe what you&#8217;re doing by putting your descripton between the comment tags /*  */ at the beginning shown below in green. The comments aren’t shown on your rendered page and it just makes things easier for you to remember…</p>
<p class="alert"><span style="color: #339966;">/*change color of blockquote*/</span><br />
.custom blockquote { color: #ff3333 ; }</p>
<p>Use whatever hexidecimal color gives you the desired effect</p>
<p style="text-align: center;"><a href="http://www.febooti.com/products/iezoom/online-help/online-color-chart-picker.html"><img class="aligncenter size-full wp-image-978" style="border: 1px solid black;" title="colorchart1" src="http://www.thesishacker.com/wp-content/uploads/2009/02/colorchart1.jpg" alt="colorchart1" width="133" height="121" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thesishacker.com/change-color-of-blockquotes/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change color of the header</title>
		<link>http://www.thesishacker.com/change-color-of-the-header</link>
		<comments>http://www.thesishacker.com/change-color-of-the-header#comments</comments>
		<pubDate>Tue, 03 Feb 2009 00:55:40 +0000</pubDate>
		<dc:creator>Nasty</dc:creator>
				<category><![CDATA[colors]]></category>
		<category><![CDATA[header]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[thesis]]></category>

		<guid isPermaLink="false">http://www.thesishacker.com/?p=962</guid>
		<description><![CDATA[Change the color of the header]]></description>
			<content:encoded><![CDATA[<p>The screenshot below has an image in the header. You can still change the color of the background if you have an image or not.</p>
<p><img class="alignnone size-full wp-image-963" style="border: 1px solid black;" title="85" src="http://www.thesishacker.com/wp-content/uploads/2009/02/85.png" alt="85" width="530" height="211" /></p>
<p><img class="alignnone size-full wp-image-964" style="border: 1px solid black;" title="84" src="http://www.thesishacker.com/wp-content/uploads/2009/02/84.png" alt="84" width="531" height="222" /></p>
<p>n your custom.ss file add the following code. You can put it anywhere you want but I recommend putting it at the top. Remember, once you make the change, save it, and upload the new file to your server. Always describe what you&#8217;re doing by putting your descripton between the comment tags /*  */ at the beginning shown below in green. The comments aren’t shown on your rendered page and it just makes things easier for you to remember…</p>
<p class="alert"><span style="color: #339966;">/*space between widget list items*/</span><br />
.custom #header { background-color: #000000 ; }</p>
<p>Change the hexidecimal number to whatever gives you the desired effect.</p>
<p style="text-align: center;"><a href="http://www.febooti.com/products/iezoom/online-help/online-color-chart-picker.html"><img class="aligncenter size-full wp-image-965" style="border: 1px solid black;" title="colorchart" src="http://www.thesishacker.com/wp-content/uploads/2009/02/colorchart.jpg" alt="colorchart" width="133" height="121" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thesishacker.com/change-color-of-the-header/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change the headline meta styles</title>
		<link>http://www.thesishacker.com/change-the-headline-meta-styles</link>
		<comments>http://www.thesishacker.com/change-the-headline-meta-styles#comments</comments>
		<pubDate>Mon, 26 Jan 2009 23:32:36 +0000</pubDate>
		<dc:creator>Nasty</dc:creator>
				<category><![CDATA[byline]]></category>
		<category><![CDATA[colors]]></category>
		<category><![CDATA[headline and title]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[change headline meta]]></category>
		<category><![CDATA[custom.css]]></category>
		<category><![CDATA[headline]]></category>
		<category><![CDATA[headline meta]]></category>
		<category><![CDATA[meta]]></category>
		<category><![CDATA[thesis]]></category>

		<guid isPermaLink="false">http://www.thesishacker.com/?p=848</guid>
		<description><![CDATA[Change the headline meta styles]]></description>
			<content:encoded><![CDATA[<p>There are four headline meta styles that come with thesis. You can add more or remove some if you want to.</p>
<p>In your custom.ss file add the following code. You can put it anywhere you want but I recommend putting it at the top. Remember, once you make the change, save it, and upload the new file to your server. Always describe what you&#8217;re doing by putting your descripton between the comment tags /*  */ at the beginning shown below in green. The comments aren’t shown on your rendered page and it just makes things easier for you to remember…</p>
<p class="alert"><span style="color: #339966;">/*headline meta styles*/</span><br />
.custom .headline_meta {color: #888888  ;}<br />
.custom .headline_meta {font-style: italic  ;}<br />
.custom .headline_meta {line-height: 1.8em  ;}<br />
.custom .headline_meta {font-size: 1em   ;}</p>
<p>Change these or add more styles to get your desired effect</p>
<p>To learn more about these styles <a href="http://www.w3schools.com/default.asp">check out W3schools</a></p>
<p><a href="http://www.febooti.com/products/iezoom/online-help/online-color-chart-picker.html"><img class="aligncenter size-full wp-image-849" title="colorchart4" src="http://www.thesishacker.com/wp-content/uploads/2009/01/colorchart4.jpg" alt="colorchart4" width="133" height="121" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thesishacker.com/change-the-headline-meta-styles/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customize your title link in a post</title>
		<link>http://www.thesishacker.com/customize-title-link-in-a-post</link>
		<comments>http://www.thesishacker.com/customize-title-link-in-a-post#comments</comments>
		<pubDate>Mon, 26 Jan 2009 22:39:28 +0000</pubDate>
		<dc:creator>Nasty</dc:creator>
				<category><![CDATA[colors]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[title]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[customize title]]></category>

		<guid isPermaLink="false">http://www.thesishacker.com/?p=838</guid>
		<description><![CDATA[Customize your title in a post]]></description>
			<content:encoded><![CDATA[<p>If you hover over a post title on this site you&#8217;ll see I customized the hover color. If you want to add some styling to the title link of your post title try this&#8230;</p>
<p>In your custom.ss file add the following code. You can put it anywhere you want but I recommend putting it at the top. Remember, once you make the change, save it, and upload the new file to your server. Always describe what you&#8217;re doing by putting your descripton between the comment tags /*  */ at the beginning shown below in green. The comments aren’t shown on your rendered page and it just makes things easier for you to remember…</p>
<p class="alert"><span style="color: #339966;">/*post title link styling*/</span><br />
.custom .headline_area a {whatever link styles you want to use ;}<br />
.custom .headline_area a {whatever link styles you want to use ;}<br />
.custom .headline_area a {whatever link styles you want to use ;}</p>
<p>To learn more about link styles <a href="http://www.w3schools.com/default.asp">check out W3schools</a></p>
<p><a href="http://www.febooti.com/products/iezoom/online-help/online-color-chart-picker.html"><img class="aligncenter size-full wp-image-839" title="colorchart3" src="http://www.thesishacker.com/wp-content/uploads/2009/01/colorchart3.jpg" alt="colorchart3" width="133" height="121" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thesishacker.com/customize-title-link-in-a-post/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customize sidebar links</title>
		<link>http://www.thesishacker.com/customize-sidebar-links</link>
		<comments>http://www.thesishacker.com/customize-sidebar-links#comments</comments>
		<pubDate>Mon, 26 Jan 2009 22:16:15 +0000</pubDate>
		<dc:creator>Nasty</dc:creator>
				<category><![CDATA[colors]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[sidebars]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[custom.css]]></category>
		<category><![CDATA[customize sidebar links]]></category>
		<category><![CDATA[sidebar]]></category>
		<category><![CDATA[thesis]]></category>

		<guid isPermaLink="false">http://www.thesishacker.com/?p=832</guid>
		<description><![CDATA[customize sidebar links]]></description>
			<content:encoded><![CDATA[<p>To target just links in the sidebar to customize try this&#8230;</p>
<p>In your custom.ss file add the following code. You can put it anywhere you want but I recommend putting it at the top. Remember, once you make the change, save it, and upload the new file to your server. Always describe what you&#8217;re doing by putting your descripton between the comment tags /*  */ at the beginning shown below in green. The comments aren’t shown on your rendered page and it just makes things easier for you to remember…</p>
<p class="alert"><span style="color: #339966;">/*sidebar link styles*/</span><br />
.custom .sidebar a {your styles here ; }<br />
.custom .sidebar a:visited {your styles here ; }<br />
.custom .sidebar a:hover {your styles here ; }</p>
<p>To just target individual sidebars all you have to do is place a number after .sidebar like this&#8230;</p>
<p class="alert">.custom .sidebar_1  a {your styles here ; }<br />
.custom .sidebar_2  a {your styles here ; }</p>
<p>To learn more about link styling <a href="http://www.w3schools.com/default.asp">check out W3schools</a></p>
<p style="text-align: center;"><a href="http://www.febooti.com/products/iezoom/online-help/online-color-chart-picker.html"><img class="aligncenter size-full wp-image-833" title="colorchart2" src="http://www.thesishacker.com/wp-content/uploads/2009/01/colorchart2.jpg" alt="colorchart2" width="133" height="121" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thesishacker.com/customize-sidebar-links/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
