<?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; posts</title>
	<atom:link href="http://www.thesishacker.com/category/posts/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>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>Place a row of ads on your page</title>
		<link>http://www.thesishacker.com/place-a-row-of-ads-on-your-page</link>
		<comments>http://www.thesishacker.com/place-a-row-of-ads-on-your-page#comments</comments>
		<pubDate>Thu, 07 May 2009 19:17:11 +0000</pubDate>
		<dc:creator>Nasty</dc:creator>
				<category><![CDATA[ads]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[pages]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[Add new tag]]></category>
		<category><![CDATA[ads in a post]]></category>
		<category><![CDATA[ads on a page]]></category>
		<category><![CDATA[place ads]]></category>
		<category><![CDATA[row of ads]]></category>

		<guid isPermaLink="false">http://www.thesishacker.com/?p=1792</guid>
		<description><![CDATA[
This is cool and simple way of placing as many ads as you want on your site&#8230;
First thing is to upload your ads into the custom/images folder on your server
The ads in this example are 125 x 125 which is pretty typical
Next, create a simple function in your custom_functions.php to add the ads, put div [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-1793" title="162" src="http://www.thesishacker.com/wp-content/uploads/2009/05/162.png" alt="162" width="570" height="354" /></p>
<p>This is cool and simple way of placing as many ads as you want on your site&#8230;</p>
<p>First thing is to upload your ads into the custom/images folder on your server</p>
<p>The ads in this example are 125 x 125 which is pretty typical</p>
<p>Next, create a simple function in your custom_functions.php to add the ads, put div tags for the ads, and give it a class name&#8230;</p>
<p class="alert">
function ad(){?&gt;<br />
&lt;div class=&quot;ads&quot;&gt;<br />
&lt;/div&gt;<br />
&lt;?<br />
}</p>
<p>Next, add an unordered list of the ads your going to use between the two div tags and include the path to the image. Your path may be different than the example below&#8230;</p>
<p class="alert">
function ad(){?&gt;<br />
&lt;div class=&quot;ads&quot;&gt;<br />
	&lt;ul &gt;<br />
		     &lt;li&gt;&lt;img src=&quot;http://www.mysite.com/wp-content/themes/thesis/custom/images/ad1.png&quot;&gt;&lt;/li&gt;<br />
		     &lt;li&gt;&lt;img src=&quot;http://www.mysite.com/wp-content/themes/thesis/custom/images/ad2.png&quot;&gt;&lt;/li&gt;<br />
		     &lt;li&gt;&lt;img src=&quot;http://www.mysite.com/wp-content/themes/thesis/custom/images/ad3.png&quot;&gt;&lt;/li&gt;<br />
		     &lt;li&gt;&lt;img src=&quot;http://www.mysite.com/wp-content/themes/thesis/custom/images/ad4.png&quot;&gt;&lt;/li&gt;<br />
	&lt;/ul&gt;<br />
&lt;/div&gt;<br />
&lt;?<br />
}</p>
<p>I decided to put them right under the header so I placed them with the appropriate hook. Here&#8217;s how the entire function looks&#8230;</p>
<p class="alert">
function ad(){?&gt;<br />
&lt;div class=&quot;ads&quot;&gt;<br />
	&lt;ul &gt;<br />
		     &lt;li&gt;&lt;img src=&quot;http://www.mysite.com/wp-content/themes/thesis/custom/images/ad1.png&quot;&gt;&lt;/li&gt;<br />
		     &lt;li&gt;&lt;img src=&quot;http://www.mysite.com/wp-content/themes/thesis/custom/images/ad2.png&quot;&gt;&lt;/li&gt;<br />
		     &lt;li&gt;&lt;img src=&quot;http://www.mysite.com/wp-content/themes/thesis/custom/images/ad3.png&quot;&gt;&lt;/li&gt;<br />
		     &lt;li&gt;&lt;img src=&quot;http://www.mysite.com/wp-content/themes/thesis/custom/images/ad4.png&quot;&gt;&lt;/li&gt;<br />
	&lt;/ul&gt;<br />
&lt;/div&gt;<br />
&lt;?<br />
}<br />
add_action(&#8217;thesis_hook_after_header&#8217;,'ads&#8217;);</p>
<p>Next, add the class to your custom.css and include one for the unordered list of images&#8230;</p>
<p class="alert"> .custom .ads{}<br />
.custom .ads ul li{}</p>
<p>These are the properties and values I used, yours may be different&#8230;</p>
<p class="alert">
.custom .ads{padding: 1em; width: 94em; height: 10em;}<br />
.custom .ads ul li{display: inline; margin-right: 1em;}</p>
<p>This is a really simple, fast, and effective way of placing ads on your site. Remember you can add as many ads as you want. you can also place them vertically, or in the sidebar, in the footer, in the header, etc. The possibilities are endless. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.thesishacker.com/place-a-row-of-ads-on-your-page/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Style any post differently than the rest with the css class box</title>
		<link>http://www.thesishacker.com/style-any-post-differently-than-the-rest-with-the-css-class-box</link>
		<comments>http://www.thesishacker.com/style-any-post-differently-than-the-rest-with-the-css-class-box#comments</comments>
		<pubDate>Tue, 05 May 2009 18:29:26 +0000</pubDate>
		<dc:creator>Nasty</dc:creator>
				<category><![CDATA[layout]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[css class]]></category>
		<category><![CDATA[custom.css]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[style]]></category>
		<category><![CDATA[style an individual page]]></category>
		<category><![CDATA[style individual posts]]></category>

		<guid isPermaLink="false">http://www.thesishacker.com/?p=1786</guid>
		<description><![CDATA[There is a really cool feature in Thesis that is greatly overlooked and underused. It&#8217;s the css class option located below the editor on the &#8220;add new post&#8221; page&#8230;

What this does is it allows you to give the post your writing or editing a unique class name. Once you do this, you can give it [...]]]></description>
			<content:encoded><![CDATA[<p>There is a really cool feature in Thesis that is greatly overlooked and underused. It&#8217;s the css class option located below the editor on the &#8220;add new post&#8221; page&#8230;</p>
<p><img class="alignnone size-full wp-image-1787" title="161" src="http://www.thesishacker.com/wp-content/uploads/2009/05/161.png" alt="161" width="402" height="137" /></p>
<p>What this does is it allows you to give the post your writing or editing a unique class name. Once you do this, you can give it whatever styles you want in your custom.css.</p>
<p>For example, let&#8217;s say I&#8217;m writing a new post and I when that post gets published I want it to have a red sidebar. No other posts on my site have a colored sidebar but I want this one to.</p>
<p>Knowing that I&#8217;m going to style this post different than any other post I&#8217;m going to give it a class name of &#8220;red post&#8221; so in the css class box I type in</p>
<p class="alert">red-post</p>
<p>Now, you have to figure out what you want to style and then put those selectors in the custom.css. I know that I want to make one of my sidebars red so in my custom.css I drop this code in&#8230;</p>
<p class="alert">.red-post #sidebar_2 {background-color: red;}</p>
<p>My sidebar 2 changes to red and it&#8217;s the only post on my site that has a red sidebar</p>
<p>You can style any selector you want on the page.</p>
<p>The css class is a very powerful feature and highly underused. You can literally make every single page on your site completely different from all the rest. Let your imagination do the styling. The possibilities are endless..</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thesishacker.com/style-any-post-differently-than-the-rest-with-the-css-class-box/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Add shadow border to your blog page</title>
		<link>http://www.thesishacker.com/add-shadow-border-to-your-blog-page</link>
		<comments>http://www.thesishacker.com/add-shadow-border-to-your-blog-page#comments</comments>
		<pubDate>Sun, 15 Mar 2009 21:54:40 +0000</pubDate>
		<dc:creator>Nasty</dc:creator>
				<category><![CDATA[borders]]></category>
		<category><![CDATA[home page]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[pages]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[shadows]]></category>
		<category><![CDATA[thesis]]></category>
		<category><![CDATA[thesis hacker]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.thesishacker.com/?p=1468</guid>
		<description><![CDATA[If you want to create a subtle 3d shadow border around your blog page&#8230;

Try this technique&#8230;
First thing I did is made an image in photoshop. Use any graphic program you want. It&#8217;s 1050 px wide X 100 px tall. I uploaded it to my server and placed it in the custom/images folder. This is what [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to create a subtle 3d shadow border around your blog page&#8230;</p>
<p><a rel="attachment wp-att-1470" href="http://www.thesishacker.com/add-shadow-border-to-your-blog-page/attachment/134"><img class="alignnone size-full wp-image-1470" title="134" src="http://www.thesishacker.com/wp-content/uploads/2009/03/134.png" alt="134" width="542" height="345" /></a></p>
<p>Try this technique&#8230;</p>
<p>First thing I did is made an image in photoshop. Use any graphic program you want. It&#8217;s 1050 px wide X 100 px tall. I uploaded it to my server and placed it in the custom/images folder. This is what it looks like. It&#8217;s been shrunken down to fit within this blog post&#8230;.</p>
<p>Shadow.png:</p>
<p><a rel="attachment wp-att-1471" href="http://www.thesishacker.com/add-shadow-border-to-your-blog-page/shadow"><img class="alignnone size-full wp-image-1471" title="shadow" src="http://www.thesishacker.com/wp-content/uploads/2009/03/shadow.png" alt="shadow" width="536" height="51" /></a></p>
<p>Next, put the image onto the background by placing the following code in the custom.css file and uploading it to your server. You can move the image from left to right with the first % value. Adjust it to create your desired effect.</p>
<p class="alert">body.custom {background: url(images/shadow.png) repeat-y scroll 50% 0 ;}</p>
<p>And that&#8217;s it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thesishacker.com/add-shadow-border-to-your-blog-page/feed</wfw:commentRss>
		<slash:comments>3</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>Just teasers with no feature</title>
		<link>http://www.thesishacker.com/just-teasers-with-no-feature</link>
		<comments>http://www.thesishacker.com/just-teasers-with-no-feature#comments</comments>
		<pubDate>Wed, 04 Feb 2009 03:45:22 +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[design options]]></category>
		<category><![CDATA[features]]></category>
		<category><![CDATA[homepage]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[teasers]]></category>
		<category><![CDATA[thesis]]></category>

		<guid isPermaLink="false">http://www.thesishacker.com/?p=1001</guid>
		<description><![CDATA[If you want to learn the basics of the features and teasers check out this tutorial
You can set it up so it just shows teasers with no feature article like this&#8230;

Go to Dashboard &#8212;-&#62; Appearance &#8212;-&#62; Design Options&#8230;

Pick 0 from the drop down list and get a look like the above homepage with no feature [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to learn the basics of the features and teasers <a href="http://www.thesishacker.com/?p=990">check out this tutorial</a></p>
<p>You can set it up so it just shows teasers with no feature article like this&#8230;</p>
<p><img class="alignnone size-full wp-image-1002" style="border: 1px solid black;" title="95" src="http://www.thesishacker.com/wp-content/uploads/2009/02/95.png" alt="95" width="541" height="854" /></p>
<p>Go to Dashboard &#8212;-&gt; Appearance &#8212;-&gt; Design Options&#8230;</p>
<p><img class="alignnone size-full wp-image-1003" style="border: 1px solid black;" title="96" src="http://www.thesishacker.com/wp-content/uploads/2009/02/96.png" alt="96" width="302" height="103" /></p>
<p>Pick 0 from the drop down list and get a look like the above homepage with no feature article, just teasers. Remember you can determine the number of teasers to show by <a href="http://www.thesishacker.com/?p=990">checking out this tutorial</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thesishacker.com/just-teasers-with-no-feature/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using features and teasers</title>
		<link>http://www.thesishacker.com/using-features-and-teasers</link>
		<comments>http://www.thesishacker.com/using-features-and-teasers#comments</comments>
		<pubDate>Wed, 04 Feb 2009 03:27:00 +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[features]]></category>
		<category><![CDATA[teasers]]></category>
		<category><![CDATA[thesis]]></category>

		<guid isPermaLink="false">http://www.thesishacker.com/?p=990</guid>
		<description><![CDATA[
Go to Dashboard &#8212;-&#62; Appearance &#8212;-&#62;Design Options&#8230;
Make sure that features and teasers are chosen in the dropdown menu and hit the save button&#8230;

Now this is where you have to figure out how many teasers you want to show. Go to Dashboard &#8212;-&#62; Settings &#8212;-&#62;Reading&#8230;

With the number 3 I have in the box that gives me [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-991" style="border: 1px solid black;" title="92" src="http://www.thesishacker.com/wp-content/uploads/2009/02/92.png" alt="92" width="537" height="589" /></p>
<p>Go to Dashboard &#8212;-&gt; Appearance &#8212;-&gt;Design Options&#8230;</p>
<p>Make sure that features and teasers are chosen in the dropdown menu and hit the save button&#8230;</p>
<p><img class="alignnone size-full wp-image-992" style="border: 1px solid black;" title="93" src="http://www.thesishacker.com/wp-content/uploads/2009/02/93.png" alt="93" width="305" height="119" /></p>
<p>Now this is where you have to figure out how many teasers you want to show. Go to Dashboard &#8212;-&gt; Settings &#8212;-&gt;Reading&#8230;</p>
<p><img class="alignnone size-full wp-image-993" style="border: 1px solid black;" title="94" src="http://www.thesishacker.com/wp-content/uploads/2009/02/94.png" alt="94" width="516" height="341" /></p>
<p>With the number 3 I have in the box that gives me the look of the above homepage. For example if I chose to have 10 posts show it would look like this&#8230;</p>
<p><img class="alignnone size-full wp-image-998" style="border: 1px solid black;" title="911" src="http://www.thesishacker.com/wp-content/uploads/2009/02/911.png" alt="911" width="540" height="1214" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thesishacker.com/using-features-and-teasers/feed</wfw:commentRss>
		<slash:comments>5</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>

