<?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; text</title>
	<atom:link href="http://www.thesishacker.com/category/text/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>Add a date stamp with an icon on your post</title>
		<link>http://www.thesishacker.com/add-a-date-stamp-with-an-icon-on-your-post</link>
		<comments>http://www.thesishacker.com/add-a-date-stamp-with-an-icon-on-your-post#comments</comments>
		<pubDate>Wed, 20 May 2009 16:00:24 +0000</pubDate>
		<dc:creator>Nasty</dc:creator>
				<category><![CDATA[byline]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[pages]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[add date stamp]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[date icon]]></category>
		<category><![CDATA[date stamp]]></category>

		<guid isPermaLink="false">http://www.thesishacker.com/?p=1882</guid>
		<description><![CDATA[Check out the little icon with the date of the post in the top right corner. Here&#8217;s how I made it&#8230;
The first thing to do is gather the php code that will generate the time of the post&#8230;
 the_time(&#8217;M') gets the month of the date
 the_time(&#8217;j') gets the day of the date
 the_time(&#8217;Y') gets the [...]]]></description>
			<content:encoded><![CDATA[<p>Check out the little icon with the date of the post in the top right corner. Here&#8217;s how I made it&#8230;</p>
<p>The first thing to do is gather the php code that will generate the time of the post&#8230;</p>
<p> the_time(&#8217;M') <em>gets the month of the date</em><br />
 the_time(&#8217;j') <em>gets the day of the date</em><br />
 the_time(&#8217;Y') <em>gets the year of the date</em></p>
<p>For more info on the date code <a href="http://codex.wordpress.org/Formatting_Date_and_Time">check out this</a></p>
<p>Next, I made the little icon in photoshop. You can make your own or find free icons by doing a search. I uploaded the image to my custom/images file</p>
<p>Next, I created a function, added the image, wrapped it in div tags, and gave it a class name&#8230;</p>
<p class="alert">
function calendar (){ ?&gt;<br />
	&lt;div class=&quot;calendaricon&quot;&gt;<br />
        &lt;? echo &#8216;&lt;img src=&quot;http://www.thesishacker.com/wp-content/themes/thesis/custom/images         /calendar.png&quot; /&gt;&#8217;; ?&gt;<br />
	&lt;/div&gt;<br />
&lt;?<br />
}</p>
<p>Next, I added the date code, and gave each one a class name so I could style each one separately in my css</p>
<p class="alert">function calendar (){ ?&gt;<br />
	&lt;div class=&quot;calendaricon&quot;&gt;<br />
		&lt;? echo &#8216;&lt;img src=&quot;http://www.thesishacker.com/wp-content/themes/thesis/custom/images/calendar.png&quot; /&gt;&#8217;; ?&gt;<br />
		&lt;div class=&quot;month&quot;&gt;&lt;? the_time(&#8217;M') ?&gt;&lt;/div&gt;<br />
		&lt;div class=&quot;day&quot;&gt;&lt;? the_time(&#8217;j') ?&gt;&lt;/div&gt;<br />
		&lt;div class=&quot;year&quot;&gt;&lt;? the_time(&#8217;Y') ?&gt;&lt;/div&gt;<br />
&lt;/div&gt;</p>
<p>Finally, I added the whole thing with a hook&#8230;</p>
<p class="alert">function calendar (){ ?&gt;<br />
	&lt;div class=&quot;calendaricon&quot;&gt;<br />
		&lt;? echo &#8216;&lt;img src=&quot;http://www.thesishacker.com/wp-content/themes/thesis/custom/images/calendar.png&quot; /&gt;&#8217;; ?&gt;<br />
		&lt;div class=&quot;month&quot;&gt;&lt;? the_time(&#8217;M') ?&gt;&lt;/div&gt;<br />
		&lt;div class=&quot;day&quot;&gt;&lt;? the_time(&#8217;j') ?&gt;&lt;/div&gt;<br />
		&lt;div class=&quot;year&quot;&gt;&lt;? the_time(&#8217;Y') ?&gt;&lt;/div&gt;<br />
	&lt;/div&gt;<br />
&lt;?<br />
}<br />
add_action(&#8217;thesis_hook_before_headline&#8217;, &#8216;calendar&#8217;);</p>
<p>Now in my custom.css I can style each part of the date stamp including the day, month, year, and the image&#8230;</p>
<p class="alert">
.custom .calendaricon {float: right;<br />
                                             margin-top: -1em;}<br />
.custom .month {text-transform: uppercase;<br />
                           font-family: arial;<br />
                           margin-top: -5.5em;<br />
                           margin-left: 2.2em;}<br />
.custom .day {font-family: arial;<br />
                       margin-left: 2.99em;<br />
                       padding-top: .3em;<br />
                       padding-bottom: 2.2em;}<br />
.custom .year {font-family: arial;<br />
                        margin-left: 2.1999em;<br />
                        margin-top: -2.2em;}</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thesishacker.com/add-a-date-stamp-with-an-icon-on-your-post/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Remove comments are closed statement</title>
		<link>http://www.thesishacker.com/remove-comments-are-closed-statement</link>
		<comments>http://www.thesishacker.com/remove-comments-are-closed-statement#comments</comments>
		<pubDate>Tue, 19 May 2009 17:03:46 +0000</pubDate>
		<dc:creator>Nasty</dc:creator>
				<category><![CDATA[comments]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[Add new tag]]></category>
		<category><![CDATA[remove comments]]></category>
		<category><![CDATA[remove comments are closed]]></category>

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

Put this in your custom.css&#8230;
.custom .comments_closed p {display: none ;}
If you want to remove that statement on only certain individual pages, check out how to style any page or post differently than all the rest HERE
]]></description>
			<content:encoded><![CDATA[<p>If you want to get rid of this&#8230;</p>
<p><img class="alignnone size-full wp-image-1869" title="167" src="http://www.thesishacker.com/wp-content/uploads/2009/05/167.png" alt="167" width="274" height="75" /></p>
<p>Put this in your custom.css&#8230;</p>
<p class="alert">.custom .comments_closed p {display: none ;}</p>
<p>If you want to remove that statement on only certain individual pages, check out how to style any page or post differently than all the rest <a href="http://www.thesishacker.com/style-any-post-differently-than-the-rest-with-the-css-class-box">HERE</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thesishacker.com/remove-comments-are-closed-statement/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Add a drop cap to your post or page</title>
		<link>http://www.thesishacker.com/add-a-drop-cap-to-your-post-or-page</link>
		<comments>http://www.thesishacker.com/add-a-drop-cap-to-your-post-or-page#comments</comments>
		<pubDate>Tue, 12 May 2009 17:29:29 +0000</pubDate>
		<dc:creator>Nasty</dc:creator>
				<category><![CDATA[fonts]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[pages]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[add drop cap]]></category>
		<category><![CDATA[drop cap]]></category>
		<category><![CDATA[drop cap post page]]></category>

		<guid isPermaLink="false">http://www.thesishacker.com/?p=1815</guid>
		<description><![CDATA[The letter &#8220;T&#8221; that begins this sentence is an example of a drop cap. This was made by just assigning the very first letter of the sentence a unique class name and styling it in my custom.css file. You can make a class for the drop cap and use it over and over again on [...]]]></description>
			<content:encoded><![CDATA[<p><span class="dropcap">T</span>he letter &#8220;T&#8221; that begins this sentence is an example of a drop cap. This was made by just assigning the very first letter of the sentence a unique class name and styling it in my custom.css file. You can make a class for the drop cap and use it over and over again on any post or page on your site. Here&#8217;s a really simple way to create your own individual drop cap.</p>
<p>The first thing you want to do is assign a unique name to the drop cap class and put it in your custom.css. I named mine simply &#8220;dropcap&#8221;&#8230;</p>
<p class="alert">.custom .dropcap {}</p>
<p>Next, figure out where you want to place the drop cap and insert the following tags with the unique class name&#8230;</p>
<p class="alert">&lt;span class=&#8221;dropcap&#8221;&gt;  &lt;/span&gt;</p>
<p>For example, I wanted to put a drop cap at the beginning of the opening paragraph of this post..</p>
<p class="alert">&lt;span class=&#8221;dropcap&#8221;&gt; T  &lt;/span&gt;he  letter &#8220;T&#8221; that begins this sentence is an example of a drop cap. This was made using the Arial font. You can make a class for the drop cap and use it over and over again on any post or page on you site. Here&#8217;s a really simple way to create your own individual drop cap.</p>
<p>Now in my custom.css I add some styles to the drop cap to make it look like the way I want&#8230;</p>
<p class="alert">.custom .dropcap {<br />
color: blue;<br />
float: left;<br />
font-size: 4.8em;<br />
margin: .3em .2em .1em 0;<br />
}</p>
<p>You can pick and chose how you want your own drop cap to look with your own styles</p>
<p>Now you can place this in any post or page. When you&#8217;re writing or editing a post or page, make sure you&#8217;re in the html editor&#8230;</p>
<p><img class="alignnone size-full wp-image-1820" title="471" src="http://www.thesishacker.com/wp-content/uploads/2009/05/471.png" alt="471" width="531" height="81" /></p>
<p>and simply apply the tags from the example above and wrap them around whatever letter you want to do it to</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thesishacker.com/add-a-drop-cap-to-your-post-or-page/feed</wfw:commentRss>
		<slash:comments>4</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>Change the size of the comments #</title>
		<link>http://www.thesishacker.com/change-the-size-of-the-comments-number</link>
		<comments>http://www.thesishacker.com/change-the-size-of-the-comments-number#comments</comments>
		<pubDate>Fri, 06 Feb 2009 03:31:00 +0000</pubDate>
		<dc:creator>Nasty</dc:creator>
				<category><![CDATA[comments]]></category>
		<category><![CDATA[fonts]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[title]]></category>
		<category><![CDATA[change the size]]></category>
		<category><![CDATA[comment #]]></category>
		<category><![CDATA[comment number]]></category>

		<guid isPermaLink="false">http://www.thesishacker.com/?p=1048</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 style="text-align: center;"><img class="size-full wp-image-1049 aligncenter" style="border: 1px solid black;" title="103" src="http://www.thesishacker.com/wp-content/uploads/2009/02/103.png" alt="103" width="296" height="180" /></p>
<p style="text-align: center;"><img class="size-full wp-image-1050 aligncenter" style="border: 1px solid black;" title="104" src="http://www.thesishacker.com/wp-content/uploads/2009/02/104.png" alt="104" width="293" height="215" /></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;">/*change the comment # size*/</span><br />
.custom .format_text .to_comments span { font-size: 5em ; }</p>
<p>Change the number of em&#8217;s to whatever gives you the desired project</p>
<p>To make it the same size as the comment text you can add the following code so that it inherits the style from it&#8217;s parent&#8230;</p>
<p class="alert">.custom .format_text .to_comments span { font-size: inherit ; }</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thesishacker.com/change-the-size-of-the-comments-number/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Change your feed link text</title>
		<link>http://www.thesishacker.com/change-your-feed-link-text</link>
		<comments>http://www.thesishacker.com/change-your-feed-link-text#comments</comments>
		<pubDate>Fri, 06 Feb 2009 01:26:43 +0000</pubDate>
		<dc:creator>Nasty</dc:creator>
				<category><![CDATA[links]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[change]]></category>
		<category><![CDATA[Change feed link text]]></category>
		<category><![CDATA[feed link]]></category>

		<guid isPermaLink="false">http://www.thesishacker.com/?p=1043</guid>
		<description><![CDATA[
Go to Dashboard &#8212;-&#62; Thesis Options&#8230;

Type in whatever you want in the subscribe box, hit the save button
]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-1044" style="border: 1px solid black;" title="102" src="http://www.thesishacker.com/wp-content/uploads/2009/02/102.png" alt="102" width="560" height="101" /></p>
<p>Go to Dashboard &#8212;-&gt; Thesis Options&#8230;</p>
<p style="text-align: center;"><img class="size-full wp-image-1045 aligncenter" style="border: 1px solid black;" title="1011" src="http://www.thesishacker.com/wp-content/uploads/2009/02/1011.png" alt="1011" width="300" height="187" /></p>
<p>Type in whatever you want in the subscribe box, hit the save button</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thesishacker.com/change-your-feed-link-text/feed</wfw:commentRss>
		<slash:comments>0</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>Change the &#8220;link to full article&#8221; text</title>
		<link>http://www.thesishacker.com/change-the-link-to-full-article-text</link>
		<comments>http://www.thesishacker.com/change-the-link-to-full-article-text#comments</comments>
		<pubDate>Wed, 04 Feb 2009 04:02:51 +0000</pubDate>
		<dc:creator>Nasty</dc:creator>
				<category><![CDATA[feature and teasers]]></category>
		<category><![CDATA[home page]]></category>
		<category><![CDATA[pages]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[change text]]></category>
		<category><![CDATA[features]]></category>
		<category><![CDATA[teasers]]></category>
		<category><![CDATA[thesis]]></category>

		<guid isPermaLink="false">http://www.thesishacker.com/?p=1009</guid>
		<description><![CDATA[
Go to Dashboard &#8212;-&#62; Appearance &#8212;-&#62;Design Options&#8230;

Type whatever you want to display inside the white box, hit the save button
]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-1010" style="border: 1px solid black;" title="97" src="http://www.thesishacker.com/wp-content/uploads/2009/02/97.png" alt="97" width="542" height="314" /></p>
<p>Go to Dashboard &#8212;-&gt; Appearance &#8212;-&gt;Design Options&#8230;</p>
<p><img class="alignnone size-full wp-image-1011" style="border: 1px solid black;" title="98" src="http://www.thesishacker.com/wp-content/uploads/2009/02/98.png" alt="98" width="295" height="95" /></p>
<p>Type whatever you want to display inside the white box, hit the save button</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thesishacker.com/change-the-link-to-full-article-text/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove the border from the blockquote</title>
		<link>http://www.thesishacker.com/remove-border-from-blockquotes</link>
		<comments>http://www.thesishacker.com/remove-border-from-blockquotes#comments</comments>
		<pubDate>Wed, 04 Feb 2009 00:27:17 +0000</pubDate>
		<dc:creator>Nasty</dc:creator>
				<category><![CDATA[blockqoutes]]></category>
		<category><![CDATA[borders]]></category>
		<category><![CDATA[pages]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[blockquote]]></category>
		<category><![CDATA[border]]></category>
		<category><![CDATA[Remove border]]></category>
		<category><![CDATA[thesis]]></category>

		<guid isPermaLink="false">http://www.thesishacker.com/?p=982</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><img class="alignnone size-full wp-image-983" style="border: 1px solid black;" title="882" src="http://www.thesishacker.com/wp-content/uploads/2009/02/882.png" alt="882" width="525" height="395" /></p>
<p><img class="alignnone size-full wp-image-984" style="border: 1px solid black;" title="90" src="http://www.thesishacker.com/wp-content/uploads/2009/02/90.png" alt="90" width="527" height="366" /></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;">/*remove border from blockquote*/</span><br />
.custom blockquote { border: none ;  }</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thesishacker.com/remove-border-from-blockquotes/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
