<?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 Theme Tutorial &#187; Thesis Tips</title>
	<atom:link href="http://thesisthemetutorial.com/category/thesis-tips/feed" rel="self" type="application/rss+xml" />
	<link>http://thesisthemetutorial.com</link>
	<description></description>
	<lastBuildDate>Sun, 12 Jun 2011 17:36:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/>		<item>
		<title>Customizing the Thesis Nav Menu</title>
		<link>http://thesisthemetutorial.com/customizing-the-thesis-nav-menu</link>
		<comments>http://thesisthemetutorial.com/customizing-the-thesis-nav-menu#comments</comments>
		<pubDate>Sun, 21 Feb 2010 03:03:19 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Thesis Tips]]></category>
		<category><![CDATA[custom css]]></category>
		<category><![CDATA[customizing thesis]]></category>
		<category><![CDATA[nav menu]]></category>

		<guid isPermaLink="false">http://thesisthemetutorial.com/?p=54</guid>
		<description><![CDATA[In Thesis 1.6, the navigation menu design was given an overhaul. Now the basic Thesis Navigation Menu looks like this: &#60;ul class=&#34;menu&#34;&#62; &#60;li class=&#34;tab tab-home current&#34;&#62; &#60;a href=&#34;http://thesisthemetutorial.com&#34;&#62;Home&#60;/a&#62; &#60;/li&#62; &#60;li class=&#34;tab tab-1&#34;&#62; &#60;a href=&#34;http://thesisthemetutorial.com/about&#34;&#62;About&#60;/a&#62; &#60;/li&#62; &#60;/ul&#62; There are also a bunch of new navigation menu customization options in the Thesis Design Options interface. All the [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p></p><p>In Thesis 1.6, the navigation menu design was given an overhaul.  Now the basic Thesis Navigation Menu looks like this:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;ul class=&quot;menu&quot;&gt;
	&lt;li class=&quot;tab tab-home current&quot;&gt;
		&lt;a href=&quot;http://thesisthemetutorial.com&quot;&gt;Home&lt;/a&gt;
	&lt;/li&gt;
	&lt;li class=&quot;tab tab-1&quot;&gt;
		&lt;a href=&quot;http://thesisthemetutorial.com/about&quot;&gt;About&lt;/a&gt;
	&lt;/li&gt;
&lt;/ul&gt;</pre></div></div>

<p>There are also a bunch of new navigation menu customization options in the Thesis Design Options interface.  All the basic options can be tweaked including attributes like the link color, link background, hover background, nav border, etc.  If you still need to customize your thesis nav menu some more, then just go into your custom.css and do your edits there.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://thesisthemetutorial.com/customizing-the-thesis-nav-menu/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Swap Thesis Navigation Menu and Header</title>
		<link>http://thesisthemetutorial.com/swap-thesis-navigation-menu-and-header</link>
		<comments>http://thesisthemetutorial.com/swap-thesis-navigation-menu-and-header#comments</comments>
		<pubDate>Fri, 19 Feb 2010 06:16:13 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Thesis Tips]]></category>
		<category><![CDATA[custom functions]]></category>
		<category><![CDATA[header]]></category>
		<category><![CDATA[navigation menu]]></category>
		<category><![CDATA[thesis hooks]]></category>

		<guid isPermaLink="false">http://thesisthemetutorial.com/?p=28</guid>
		<description><![CDATA[In the default Thesis Theme configuration, the navigation menu is at the top, and the header is right below it. However, using Thesis hooks, it&#8217;s quite easy to swap them with a couple of lines of code. Just open up the file wp-content/themes/thesis/custom/custom_functions.php on your server and add the following to the bottom of the [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p></p><p>In the default Thesis Theme configuration, the navigation menu is at the top, and the header is right below it.  However, using Thesis hooks, it&#8217;s quite easy to swap them with a couple of lines of code.  Just open up the file <strong>wp-content/themes/thesis/custom/custom_functions.php</strong> on your server and add the following to the bottom of the file:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">// Remove the Thesis Navigation Menu From The Top</span>
remove_action<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'thesis_hook_before_header'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'thesis_nav_menu'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// Add the Navigation Menu after #Header div</span>
add_action<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'thesis_hook_after_header'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'thesis_nav_menu'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>You can see an example of how this looks on this site.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://thesisthemetutorial.com/swap-thesis-navigation-menu-and-header/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: www.thesisthemetutorial.com @ 2012-02-03 18:50:45 -->
