<?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; pages</title>
	<atom:link href="http://www.thesishacker.com/category/pages/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>Make any page your home page</title>
		<link>http://www.thesishacker.com/make-any-page-your-home-page</link>
		<comments>http://www.thesishacker.com/make-any-page-your-home-page#comments</comments>
		<pubDate>Thu, 21 May 2009 16:22:45 +0000</pubDate>
		<dc:creator>Nasty</dc:creator>
				<category><![CDATA[home page]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[pages]]></category>
		<category><![CDATA[homepage]]></category>
		<category><![CDATA[make any page your home page]]></category>
		<category><![CDATA[pick a home page]]></category>

		<guid isPermaLink="false">http://www.thesishacker.com/?p=1896</guid>
		<description><![CDATA[You can make any existing page you have, or make a new page your homepage&#8230;
If you want to create a brand new page and have it be your homepage, create a page and publish it. Then go to Dashboard&#8212;&#62;Settings&#8212;&#62;Reading&#8230;

From here&#8230;
If you pick your latest posts to display, you&#8217;ll have to change the features and teasers [...]]]></description>
			<content:encoded><![CDATA[<p>You can make any existing page you have, or make a new page your homepage&#8230;</p>
<p>If you want to create a brand new page and have it be your homepage, create a page and publish it. Then go to Dashboard&#8212;&gt;Settings&#8212;&gt;Reading&#8230;</p>
<p><img class="alignnone size-full wp-image-1897" title="168" src="http://www.thesishacker.com/wp-content/uploads/2009/05/168.png" alt="168" width="544" height="476" /></p>
<p>From here&#8230;</p>
<p>If you pick your latest posts to display, you&#8217;ll have to change the features and teasers to what you want it to be</p>
<p>If you pick a static page, you have the choice to chose any page that you have created already</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thesishacker.com/make-any-page-your-home-page/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>Add different widgets to different pages</title>
		<link>http://www.thesishacker.com/add-different-widget-to-different-pages</link>
		<comments>http://www.thesishacker.com/add-different-widget-to-different-pages#comments</comments>
		<pubDate>Thu, 23 Apr 2009 17:01:53 +0000</pubDate>
		<dc:creator>Nasty</dc:creator>
				<category><![CDATA[pages]]></category>
		<category><![CDATA[widgets]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[thesis]]></category>
		<category><![CDATA[thesis hacker]]></category>
		<category><![CDATA[widget]]></category>
		<category><![CDATA[widget logic]]></category>

		<guid isPermaLink="false">http://www.thesishacker.com/?p=1682</guid>
		<description><![CDATA[You have the ability to add widgets on specific pages only, if you chose. You don&#8217;t necessarily have to have them show up on every page. Say, for example, you want to add an image of something that only has to do with the specific page you are writing. You can make that image just [...]]]></description>
			<content:encoded><![CDATA[<p>You have the ability to add widgets on specific pages only, if you chose. You don&#8217;t necessarily have to have them show up on every page. Say, for example, you want to add an image of something that only has to do with the specific page you are writing. You can make that image just show up <em>only</em> on that specific page.</p>
<p>The key to this is to use the Widget Logic plugin.  You can get it <a href="http://wordpress.org/extend/plugins/widget-logic/">HERE</a></p>
<p>Follow the download and installation instructions and then activate the plugin</p>
<p>Now, anytime you open a widget to edit it, you will see the widget logic plugin running&#8230;.</p>
<p><img class="alignnone size-full wp-image-1683" title="1471" src="http://www.thesishacker.com/wp-content/uploads/2009/04/1471.png" alt="1471" width="429" height="500" /></p>
<p>In the area labeled &#8220;widget logic&#8221; is where you&#8217;re going to insert wp conditional tags to tell the widget where to appear</p>
<p>A complete list of wp conditional tags can be found <a href="http://codex.wordpress.org/Conditional_Tags">HERE</a></p>
<p>Say you want your widget to appear only on a page you named &#8220;recipes&#8221;. First, make sure you have created the page and published it</p>
<p>Next, in the widget logic box you type this code&#8230;</p>
<p class="alert">is_page(&#8217;recipes&#8217;)</p>
<p>You can add as many pages as you want. Using the above example say you want that same widget to appear on a page you created named &#8220;directions&#8221;. You would simply add the next page separated with &#8220;pipes&#8221;&#8230;</p>
<p class="alert">is_page(&#8217;recipes&#8217;) || is_page(&#8217;directions&#8217;)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thesishacker.com/add-different-widget-to-different-pages/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>Make page title different than nav bar title</title>
		<link>http://www.thesishacker.com/make-page-title-different-than-nav-bar-title</link>
		<comments>http://www.thesishacker.com/make-page-title-different-than-nav-bar-title#comments</comments>
		<pubDate>Tue, 17 Feb 2009 06:08:49 +0000</pubDate>
		<dc:creator>Nasty</dc:creator>
				<category><![CDATA[categories]]></category>
		<category><![CDATA[headline and title]]></category>
		<category><![CDATA[nav bar]]></category>
		<category><![CDATA[pages]]></category>
		<category><![CDATA[title]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[thesis]]></category>
		<category><![CDATA[url]]></category>

		<guid isPermaLink="false">http://www.thesishacker.com/?p=1159</guid>
		<description><![CDATA[I get a lot of questions on how to make your page title different than what appears in the nav bar when you put that page in the nav bar. To learn how to add a page to your nav bar, check out this tutorial.]]></description>
			<content:encoded><![CDATA[<p>I get a lot of questions on how to make your page title different than what appears in the nav bar when you <em>put that page in the nav bar. </em>To learn how to add a page to your nav bar, <a href="http://www.thesishacker.com/?p=1161">check out this tutorial.</a></p>
<p>Usually when you put a page in the nav bar, the title that you originally created for the page is the same as what will appear in the nav bar. Check out the nav bar on this site and click on &#8220;archive&#8221;. Notice how the page title says &#8220;Check out all my older stuff&#8230;&#8221;. Here&#8217;s the simple way to make this happen.</p>
<p>First, go to Dashboard &#8212;-&gt;Links &#8212;-&gt; Link categories&#8230;</p>
<p><a rel="attachment wp-att-1171" href="http://www.thesishacker.com/make-page-title-different-than-nav-bar-title/attachment/115"><img class="alignnone size-full wp-image-1171" style="border: 1px solid black;" title="115" src="http://www.thesishacker.com/wp-content/uploads/2009/02/115.png" alt="115" width="460" height="478" /></a></p>
<p>Create a link category. I named mine &#8220;navigation menu&#8221;. This is simply going to be a holding area for all the links I want in my nav menu.</p>
<p>Next, create a page and publish it. View the page and copy it&#8217;s URL&#8230;.</p>
<p><a rel="attachment wp-att-1173" href="http://www.thesishacker.com/make-page-title-different-than-nav-bar-title/attachment/1161"><img class="alignnone size-full wp-image-1173" style="border: 1px solid black;" title="1161" src="http://www.thesishacker.com/wp-content/uploads/2009/02/1161.png" alt="1161" width="493" height="204" /></a></p>
<p>Next we&#8217;re going to put this new page into the &#8220;holding area&#8221; called navigation menu&#8230;</p>
<p>Go to Dashboard &#8212;&#8211;&gt;Links &#8212;-&gt;Add New&#8230;.</p>
<p><a rel="attachment wp-att-1176" href="http://www.thesishacker.com/make-page-title-different-than-nav-bar-title/attachment/1181"><img class="alignnone size-full wp-image-1176" style="border: 1px solid black;" title="1181" src="http://www.thesishacker.com/wp-content/uploads/2009/02/1181.png" alt="1181" width="470" height="703" /></a></p>
<p>When your here just fill in the other options to whatever gives you the effect your looking for</p>
<p>Next we&#8217;re going to add this page to the nav bar&#8230;</p>
<p>Go to Dashboard &#8212;-&gt;Appearance &#8212;-&gt;Thesis Options&#8230;</p>
<p><a rel="attachment wp-att-1177" href="http://www.thesishacker.com/make-page-title-different-than-nav-bar-title/attachment/119"><img class="alignnone size-full wp-image-1177" style="border: 1px solid black;" title="119" src="http://www.thesishacker.com/wp-content/uploads/2009/02/119.png" alt="119" width="296" height="90" /></a></p>
<p>From the drop down list pick the category that you put the links you want to put in the nav bar, in my case it was navigation menu</p>
<p>Hit the save button and check it out!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thesishacker.com/make-page-title-different-than-nav-bar-title/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add a page to your nav bar</title>
		<link>http://www.thesishacker.com/add-page-to-your-nav-bar</link>
		<comments>http://www.thesishacker.com/add-page-to-your-nav-bar#comments</comments>
		<pubDate>Tue, 17 Feb 2009 05:27:45 +0000</pubDate>
		<dc:creator>Nasty</dc:creator>
				<category><![CDATA[headline and title]]></category>
		<category><![CDATA[nav bar]]></category>
		<category><![CDATA[pages]]></category>
		<category><![CDATA[title]]></category>
		<category><![CDATA[widgets]]></category>
		<category><![CDATA[add]]></category>
		<category><![CDATA[page]]></category>

		<guid isPermaLink="false">http://www.thesishacker.com/?p=1161</guid>
		<description><![CDATA[When you create a page you have the option to use that page as a nav option. For example I created a page called "tutorials". You can make this page a nav link as well. Check it out...]]></description>
			<content:encoded><![CDATA[<p>When you create a page you have the option to use that page as a nav option. For example I created a page called &#8220;tutorials&#8221;. I put this page as a nav link as well. Check it out&#8230;</p>
<p>Go to Dashboard &#8212;-&gt;Appearance &#8212;-&gt;Thesis Options&#8230;</p>
<p><a rel="attachment wp-att-1163" href="http://www.thesishacker.com/add-page-to-your-nav-bar/attachment/1141"><img class="alignnone size-full wp-image-1163" style="border: 1px solid black;" title="1141" src="http://www.thesishacker.com/wp-content/uploads/2009/02/1141.png" alt="1141" width="297" height="237" /></a></p>
<p>These are all the pages in my site. Every time I create a page it automatically gets updated into this list. Now it&#8217;s just a simple matter of checking which pages I want in the nav menu. The title I created for the page is the title of the page in this list and will be what appears in my nav bar. To change the title so it&#8217;s different than what will appear in the nav bar, <a href="http://www.thesishacker.com/?p=1159">check out this tutorial.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thesishacker.com/add-page-to-your-nav-bar/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>
	</channel>
</rss>

