<?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; links</title>
	<atom:link href="http://www.thesishacker.com/category/custom-links/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>The easiest way to add a &#8220;clickable&#8221; header image</title>
		<link>http://www.thesishacker.com/the-easiest-way-to-add-a-clickable-header-image</link>
		<comments>http://www.thesishacker.com/the-easiest-way-to-add-a-clickable-header-image#comments</comments>
		<pubDate>Mon, 18 May 2009 19:16:46 +0000</pubDate>
		<dc:creator>Nasty</dc:creator>
				<category><![CDATA[header]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[clickable header image]]></category>
		<category><![CDATA[clickable image]]></category>
		<category><![CDATA[header image]]></category>

		<guid isPermaLink="false">http://www.thesishacker.com/?p=1853</guid>
		<description><![CDATA[I wrote an earlier tutorial about showing the easiest way to add a header image HERE.  I had a lot of feedback saying that it wasn&#8217;t clickable. That&#8217;s absolutely correct because it isn&#8217;t. That tutorial shows how to add a header image and that&#8217;s it. It never said anything about being clickable.
The following tutorial, in [...]]]></description>
			<content:encoded><![CDATA[<p>I wrote an earlier tutorial about showing the easiest way to add a header image <a href="http://www.thesishacker.com/the-absolute-easiest-way-to-add-your-own-header-image">HERE</a>.  I had a lot of feedback saying that it wasn&#8217;t clickable. That&#8217;s absolutely correct because it isn&#8217;t. That tutorial shows how to add a <em>header image</em> and that&#8217;s it. It never said anything about being clickable.</p>
<p>The following tutorial, in my opinion, is the easiest way to add a <em>clickable</em> header image&#8230;.</p>
<p>First, make sure your image is in your custom.css file&#8230;</p>
<p>Next, in your custom_functions.php file, create a simple function and assign it a div tag with a unique name so you can style the <em>header area</em> in your custom.css&#8230;</p>
<p class="alert">function myheader() {?&gt;<br />
&lt;div class=&#8221;myheader-space&#8221;&gt;&lt;/div&gt;<br />
}</p>
<p>Next, add the image to the function with the complete file path to the image and give it a class name so you can style the <em>image size</em> in your custom.css&#8230;</p>
<p class="alert">function myheader() {?&gt;<br />
&lt;div class=&#8221;myheader-space&#8221;&gt;&lt;img class=&#8221;myheader&#8221; src=&#8221;http://www.my site.com/wp-content/themes/thesis/custom/images/headerimage.jpg&#8221;/&gt;&lt;/div&gt;<br />
}</p>
<p>Next, wrap the image with the link to where you want the header image to click to&#8230;</p>
<p class="alert">function myheader() {?&gt;<br />
&lt;div class=&#8221;myheader-space&#8221;&gt;&lt;a href=&#8221;http://www.where I want it to go.com&#8221;&gt;&lt;img class=&#8221;myheader&#8221; src=&#8221;http://www.hedonism-inc.com/wp-content/themes/thesis/custom/images/headerimage.jpg&#8221;/&gt;&lt;/a&gt;&lt;/div&gt;<br />
}</p>
<p>Finally, remove the default header and replace it with your new one&#8230;</p>
<p class="alert">function myheader() {?<br />
&lt;div class=&quot;myheader-space&quot;&gt;&lt;a href=&quot;http://www.where I want it to go.com&quot;&gt;&lt;img class=&quot;myheader&quot; src=&quot;http://www.my-site.com/wp-content/themes/thesis/custom/images/headerimage.jpg&quot;/&gt;&lt;/a&gt;&gt;/div&gt;<br />
&lt;?<br />
}<br />
remove_action(&#8217;thesis_hook_header&#8217;,'thesis_default_header&#8217;);<br />
add_action(&#8217;thesis_hook_header&#8217;,'myheader&#8217;);</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thesishacker.com/the-easiest-way-to-add-a-clickable-header-image/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change the order of your nav links in your nav bar</title>
		<link>http://www.thesishacker.com/change-the-order-of-your-nav-links-in-your-nav-bar</link>
		<comments>http://www.thesishacker.com/change-the-order-of-your-nav-links-in-your-nav-bar#comments</comments>
		<pubDate>Fri, 24 Apr 2009 19:07:45 +0000</pubDate>
		<dc:creator>Nasty</dc:creator>
				<category><![CDATA[layout]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[nav bar]]></category>
		<category><![CDATA[change]]></category>
		<category><![CDATA[change order]]></category>
		<category><![CDATA[nav]]></category>
		<category><![CDATA[thesis]]></category>
		<category><![CDATA[thesis hacker]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.thesishacker.com/?p=1711</guid>
		<description><![CDATA[This is really easy to do. You need to be running Thesis 1.5 v7&#8230;


Go to your Dashboard &#8212;-&#62;Appearance &#8212;-&#62;Thesis Options &#8212;-&#62;Navigation Menu&#8230;

Just click and hold between the boxes and you can drag them into whatever order you want.
]]></description>
			<content:encoded><![CDATA[<p>This is really easy to do. You need to be running Thesis 1.5 v7&#8230;</p>
<p><img class="alignnone size-full wp-image-1712" title="151" src="http://www.thesishacker.com/wp-content/uploads/2009/04/151.png" alt="151" width="512" height="93" /></p>
<p><img class="alignnone size-full wp-image-1713" title="152" src="http://www.thesishacker.com/wp-content/uploads/2009/04/152.png" alt="152" width="513" height="94" /></p>
<p>Go to your Dashboard &#8212;-&gt;Appearance &#8212;-&gt;Thesis Options &#8212;-&gt;Navigation Menu&#8230;</p>
<p><img class="alignnone size-full wp-image-1714" title="153" src="http://www.thesishacker.com/wp-content/uploads/2009/04/153.png" alt="153" width="331" height="442" /></p>
<p>Just click and hold between the boxes and you can drag them into whatever order you want.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thesishacker.com/change-the-order-of-your-nav-links-in-your-nav-bar/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Remove the link outline box when you click on an link</title>
		<link>http://www.thesishacker.com/remove-the-link-outline-box-when-you-click-on-an-link</link>
		<comments>http://www.thesishacker.com/remove-the-link-outline-box-when-you-click-on-an-link#comments</comments>
		<pubDate>Thu, 23 Apr 2009 22:26:33 +0000</pubDate>
		<dc:creator>Nasty</dc:creator>
				<category><![CDATA[lines]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[custom.css]]></category>
		<category><![CDATA[get rid of outline]]></category>

		<guid isPermaLink="false">http://www.thesishacker.com/?p=1693</guid>
		<description><![CDATA[If you want, you can remove the little dotted outline box that appears around a link&#8230;

In your custom.css add the following code and replace &#8220;your link name&#8221; with whatever link you want to change&#8230;
 .custom  &#8220;your link name&#8221; a{outline: none;}
]]></description>
			<content:encoded><![CDATA[<p>If you want, you can remove the little dotted outline box that appears around a link&#8230;</p>
<p><img class="alignnone size-full wp-image-1694" title="148" src="http://www.thesishacker.com/wp-content/uploads/2009/04/148.png" alt="148" width="126" height="146" /></p>
<p>In your custom.css add the following code and replace &#8220;your link name&#8221; with whatever link you want to change&#8230;</p>
<p class="alert"> .custom  <em>&#8220;your link name&#8221; </em>a{outline: none;}</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thesishacker.com/remove-the-link-outline-box-when-you-click-on-an-link/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Lightbox 2 plugin</title>
		<link>http://www.thesishacker.com/lightbox-2-plugin</link>
		<comments>http://www.thesishacker.com/lightbox-2-plugin#comments</comments>
		<pubDate>Wed, 18 Feb 2009 04:14:20 +0000</pubDate>
		<dc:creator>Nasty</dc:creator>
				<category><![CDATA[images]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[pugins]]></category>
		<category><![CDATA[Add new tag]]></category>
		<category><![CDATA[lightbox 2]]></category>
		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://www.thesishacker.com/?p=1192</guid>
		<description><![CDATA[This is a cool effect for thumbnail images or links you want to emphasize]]></description>
			<content:encoded><![CDATA[<p>This is a visually cool plugin. This plugin works great if your using thumbnail images or if you want to emphasize an image through a link. Click on the image below to see it in action&#8230;</p>
<p class="text-align: center"><a title="this is pretty cool huh?" rel="lightbox" href="http://www.thesishacker.com/wp-content/themes/thesis/custom/images/biglbox.png" rel="lightbox[1192]"><img class="lightbox" src="http://www.thesishacker.com/wp-content/themes/thesis/custom/images/lbox.gif" alt="" /></a></p>
<p><a href="http://wordpress.org/extend/plugins/lightbox-2/">Go here</a> to download and install the plugin</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thesishacker.com/lightbox-2-plugin/feed</wfw:commentRss>
		<slash:comments>0</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>Get rid of subscription link in nav bar</title>
		<link>http://www.thesishacker.com/get-rid-of-subscription-link-in-nav-bar</link>
		<comments>http://www.thesishacker.com/get-rid-of-subscription-link-in-nav-bar#comments</comments>
		<pubDate>Fri, 06 Feb 2009 01:09:53 +0000</pubDate>
		<dc:creator>Nasty</dc:creator>
				<category><![CDATA[links]]></category>
		<category><![CDATA[nav bar]]></category>
		<category><![CDATA[nav]]></category>
		<category><![CDATA[subscription link]]></category>

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

Uncheck the the &#8220;show feed link in nav menu&#8221;, hit the save button.
]]></description>
			<content:encoded><![CDATA[<p>Go to Dashboard &#8212;-&gt; Thesis Options&#8230;</p>
<p style="text-align: center;"><img class="size-full wp-image-1034 aligncenter" style="border: 1px solid black;" title="101" src="http://www.thesishacker.com/wp-content/uploads/2009/02/101.png" alt="101" width="300" height="187" /></p>
<p>Uncheck the the &#8220;show feed link in nav menu&#8221;, hit the save button.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thesishacker.com/get-rid-of-subscription-link-in-nav-bar/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>
		<item>
		<title>Customize links in a post or page</title>
		<link>http://www.thesishacker.com/customize-links-in-a-post-or-page</link>
		<comments>http://www.thesishacker.com/customize-links-in-a-post-or-page#comments</comments>
		<pubDate>Mon, 26 Jan 2009 21:58:50 +0000</pubDate>
		<dc:creator>Nasty</dc:creator>
				<category><![CDATA[links]]></category>
		<category><![CDATA[pages]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[customize links]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[post]]></category>

		<guid isPermaLink="false">http://www.thesishacker.com/?p=826</guid>
		<description><![CDATA[Check out the link in any post or page on this site and you'll see that they're green. If you just want to target links like this inside a post or page than try this...]]></description>
			<content:encoded><![CDATA[<p>Check out the link in any post or page on this site and you&#8217;ll see that they&#8217;re green. If you just want to target links like this inside a post or page than 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;">/*link styles in post or page*/</span><br />
.custom .format_text a {put your custom styles here for links;}<br />
.custom .format_text a:visited {put your custom styles for links that have already been clicked on ;}<br />
.custom .format_text a:hover {put your custom styles for when you hover over a link without clicking on it ;}</p>
<p style="text-align: center;"><a href="http://www.febooti.com/products/iezoom/online-help/online-color-chart-picker.html" target="_blank"><img class="aligncenter size-full wp-image-799" title="colorchart" src="http://www.thesishacker.com/wp-content/uploads/2009/01/colorchart.gif" alt="colorchart" width="143" height="135" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thesishacker.com/customize-links-in-a-post-or-page/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customizing links</title>
		<link>http://www.thesishacker.com/customizing-links</link>
		<comments>http://www.thesishacker.com/customizing-links#comments</comments>
		<pubDate>Mon, 26 Jan 2009 01:27:17 +0000</pubDate>
		<dc:creator>Nasty</dc:creator>
				<category><![CDATA[colors]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[custom.css]]></category>
		<category><![CDATA[customize]]></category>
		<category><![CDATA[customize links]]></category>

		<guid isPermaLink="false">http://www.thesishacker.com/?p=797</guid>
		<description><![CDATA[customizing links]]></description>
			<content:encoded><![CDATA[<p>Through css you can customize any links you have on your blog pretty much any way you want them to look. If you want a rundown on link styling than <a href="http://www.w3schools.com/default.asp">check out W3schools.</a></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;">/*link styles*/</span><br />
.custom a {put your custom styles here for links;}<br />
.custom a:visited {put your custom styles for links that have already been clicked on ;}<br />
.custom a:hover {put your custom styles for when you hover over a link without clicking on it ;}</p>
<p>The above does a sitewide link customization. If you want to just target links in a post or page then <a href="http://www.thesishacker.com/?p=826">check out this tutorial</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thesishacker.com/customizing-links/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

