<?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>links &#8211; Thesis Docs</title>
	<atom:link href="https://diythemes.com/thesis/rtfm/tag/links/feed/" rel="self" type="application/rss+xml" />
	<link>https://diythemes.com/thesis/rtfm</link>
	<description>Documentation, How-tos, and Best Practices for the Thesis WordPress Theme System</description>
	<lastBuildDate>Wed, 08 Nov 2017 15:25:21 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.1</generator>
	<item>
		<title>Style Post and Page Titles</title>
		<link>https://diythemes.com/thesis/rtfm/style-post-page-titles/</link>
		
		<dc:creator><![CDATA[Shelley]]></dc:creator>
		<pubDate>Tue, 23 Jun 2009 13:10:27 +0000</pubDate>
				<category><![CDATA[Thesis 1 Documentation]]></category>
		<category><![CDATA[h1]]></category>
		<category><![CDATA[h2]]></category>
		<category><![CDATA[headline]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[pages]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[title]]></category>
		<guid isPermaLink="false">https://diythemes.com/answers/?p=383</guid>

					<description><![CDATA[<ul>
<li>On Single Pages</li>
<li>On Multi-Post Listings</li>
</ul>]]></description>
										<content:encoded><![CDATA[<h3 id="single">On Single Pages <a href="#single" title="Link to this section">∞</a></h3>
<p>Place this code in <code>custom.css</code> (adjust color value as desired):</p>
<pre class="css">
.headline_area h1 {
   color:#B22222;
}
</pre>
<h3 id="multi">On Multi-Post Listings <a href="#multi" title="Link to this section">∞</a></h3>
<p>Place this code in <code>custom.css</code> (adjust color values as desired):</p>
<pre class="css">
.custom h2 a {
   color: #3399ff;
   text-decoration: none;
}
.custom h2 a:visited {
   color: #3399ff;
   text-decoration: none;
}
.custom h2 a:hover {
   color: #ff0000;
   text-decoration: underline;
}
.custom h2 a:active {
   color: #3399ff;
   text-decoration: underline;
}
</pre>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Style Logo and Tagline</title>
		<link>https://diythemes.com/thesis/rtfm/style-logo-tagline/</link>
		
		<dc:creator><![CDATA[Shelley]]></dc:creator>
		<pubDate>Wed, 03 Jun 2009 16:18:19 +0000</pubDate>
				<category><![CDATA[Thesis 1 Documentation]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[logo]]></category>
		<category><![CDATA[tagline]]></category>
		<guid isPermaLink="false">https://diythemes.com/answers/?p=356</guid>

					<description><![CDATA[How to style the logo and tagline in the header area.]]></description>
										<content:encoded><![CDATA[<p>Place this code in <code>custom.css</code>, and change to suit your requirements:</p>
<pre class="css">
.custom #header #logo a {
   color: #111111;
   text-decoration: none;
}

.custom #header #logo a:visited {
   color: #111111;
   text-decoration: none;
}

.custom #header #logo a:hover {
   color: #ffffff;
   text-decoration: underline;
}
.custom #header #logo a:active {
   color: #ffffff;
   text-decoration: none;
}

.custom #header #tagline {
   color: #111111;
   font-weight: normal;
   padding-left: 10px;
}
</pre>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Style Previous and Next Links</title>
		<link>https://diythemes.com/thesis/rtfm/style-previous-next-links/</link>
		
		<dc:creator><![CDATA[Shelley]]></dc:creator>
		<pubDate>Mon, 04 May 2009 13:16:04 +0000</pubDate>
				<category><![CDATA[Thesis 1 Documentation]]></category>
		<category><![CDATA[left]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[next]]></category>
		<category><![CDATA[previous]]></category>
		<category><![CDATA[right]]></category>
		<guid isPermaLink="false">https://diythemes.com/answers/?p=215</guid>

					<description><![CDATA[<ul>
<li>On Single Post Pages Only</li>
<li>On All Pages</li>
<li>Previous Link on Left, Next Link on Right</li>
</ul>]]></description>
										<content:encoded><![CDATA[<h3 id="single">On Single Post Pages Only <a href="#single" title="Link to this section">∞</a></h3>
<p>Place this code in <code>custom.css</code>, then change to your preferences:</p>
<pre class="css">
/* Customize Previous and Next Links */
div.post_nav p {
color: #888888;
}

.post_nav a {
text-decoration: none;
}
</pre>
<h3 id="all_pages">On All Pages <a href="#all_pages" title="Link to this section">∞</a></h3>
<p>Place this code in <code>custom.css</code>, then change to your preferences:</p>
<pre class="css">
/* Customize Previous and Next Links */
div.prev_next p {
color: #888888;
}

.prev_next a {
text-decoration: none;
}
</pre>
<h3 id="next_right">Previous Link on Left, Next Link on Right <a href="#next_right" title="Link to this section">∞</a></h3>
<p>Place this code in <code>custom.css</code>:</p>
<pre class="css">
.custom div.prev_next p {
  float:right;
}

.custom div.prev_next p.previous {
  float:left;
}
</pre>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Style Footer Text and Links</title>
		<link>https://diythemes.com/thesis/rtfm/style-footer-text-links/</link>
		
		<dc:creator><![CDATA[Shelley]]></dc:creator>
		<pubDate>Mon, 04 May 2009 12:28:04 +0000</pubDate>
				<category><![CDATA[Thesis 1 Documentation]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[style]]></category>
		<guid isPermaLink="false">https://diythemes.com/answers/?p=210</guid>

					<description><![CDATA[How to style your footer text and links.]]></description>
										<content:encoded><![CDATA[<p>Place this code in <code>custom.css</code>, then change to your preferences:</p>
<pre class="css">
/* Customize Footer Text */
.custom #footer {
color: #888888;
text-align: right;
}

/* Customize Footer Links */

.custom #footer a {
border-bottom: 1px solid #CCCCCC;
color: #888888;
}

.custom #footer a:hover {
color: #111111;
}
</pre>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Include Custom Links in Nav Menu</title>
		<link>https://diythemes.com/thesis/rtfm/add-custom-links-nav-menu/</link>
		
		<dc:creator><![CDATA[Shelley]]></dc:creator>
		<pubDate>Mon, 27 Apr 2009 14:54:19 +0000</pubDate>
				<category><![CDATA[Thesis 1 Documentation]]></category>
		<category><![CDATA[links]]></category>
		<guid isPermaLink="false">https://diythemes.com/answers/?p=187</guid>

					<description><![CDATA[How to use a Link Category to add custom links to your nav menu.]]></description>
										<content:encoded><![CDATA[<p class="alert">The information in this article only applies when &#8220;Thesis nav menu&#8221; has been selected as the Menu Type under <em>Navigation Menu</em>.</p>
<p>In the WordPress <strong>Links</strong> panel, under <em>Link Categories</em>, create a new category to use for your new nav menu items; for example, <code>NavMenu</code>:</p>
<div id="attachment_1810" style="width: 330px" class="wp-caption alignnone"><a href="https://diythemes.com/thesis/rtfm/wp-content/uploads/2009/04/Link-Category-Created.png"><img decoding="async" aria-describedby="caption-attachment-1810" src="https://diythemes.com/thesis/rtfm/wp-content/uploads/2009/04/Link-Category-Created.png" alt="Link Category Created" title="Link Category Created" width="320" height="126" class="size-full wp-image-1810" /></a><p id="caption-attachment-1810" class="wp-caption-text">Link category NavMenu has been created</p></div>
<p>Under <strong>Links</strong> &gt; <em>Add New</em>, create your new link and assign it to the new <code>NavMenu</code> category:</p>
<div id="attachment_1811" style="width: 451px" class="wp-caption alignnone"><a href="https://diythemes.com/thesis/rtfm/wp-content/uploads/2009/04/New-Link-Added.png"><img fetchpriority="high" decoding="async" aria-describedby="caption-attachment-1811" src="https://diythemes.com/thesis/rtfm/wp-content/uploads/2009/04/New-Link-Added.png" alt="New Link Added" title="New Link Added" width="441" height="133" class="size-full wp-image-1811" /></a><p id="caption-attachment-1811" class="wp-caption-text">The new link has been created in the NavMenu link category</p></div>
<p>In the Thesis <strong>Site Options</strong> panel, under <em>Navigation Menu</em>, expand the &#8220;Add More Links&#8221; section, and select <code>NavMenu</code> from the dropdown:</p>
<div id="attachment_1812" style="width: 330px" class="wp-caption alignnone"><a href="https://diythemes.com/thesis/rtfm/wp-content/uploads/2009/04/Select-Links-Category.png"><img decoding="async" aria-describedby="caption-attachment-1812" src="https://diythemes.com/thesis/rtfm/wp-content/uploads/2009/04/Select-Links-Category.png" alt="Select Links Category" title="Select Links Category" width="320" height="220" class="size-full wp-image-1812" /></a><p id="caption-attachment-1812" class="wp-caption-text">The links category has been selected</p></div>
<p>Remember to click the SAVE button to preserve your changes.</p>
<p>Now, any links in the <code>NavMenu</code> category will also show up on your navigation menu:</p>
<div id="attachment_1813" style="width: 330px" class="wp-caption alignnone"><a href="https://diythemes.com/thesis/rtfm/wp-content/uploads/2009/04/Custom-Link-Navigation.png"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-1813" src="https://diythemes.com/thesis/rtfm/wp-content/uploads/2009/04/Custom-Link-Navigation.png" alt="Custom Link Navigation" title="Custom Link Navigation" width="320" height="158" class="size-full wp-image-1813" /></a><p id="caption-attachment-1813" class="wp-caption-text">The custom link appears in the navigation menu</p></div>
<h3 id="exclude_blogroll">Exclude Custom Nav Menu Links from Blogroll Widget <a href="#exclude_blogroll" title="Link to this section">∞</a></h3>
<p>If you&#8217;re using the WordPress Blogroll Widget in your sidebar, and you have multiple Link Categories, you may want to prevent the Link Category you created for your Custom Links from appearing in this list. If so, add the following code to <code>custom_functions.php</code> (changing <code>23</code> to match the ID of the Link Category you created for your Nav Menu items):</p>
<pre class="php">
function custom_list_bookmarks($defaults) {
	$args = array(
		'exclude_category' =&gt; '23',
	);

	$r = wp_parse_args($args, $defaults);
 	return $r;
}
add_filter('widget_links_args','custom_list_bookmarks');
</pre>
<p><!--h3>Related Resources:</h3>




<ul>


<li><a href="https://diythemes.com/forums/customization/1568-nav-menu-order-using-link-category.html" title="Forum Thread - Nav Menu Order Using Link Category">Nav Menu Order Using Link Category</a> <cite>from the Thesis Support Forums</cite></li>


</ul-->
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Move Previous and Next Links</title>
		<link>https://diythemes.com/thesis/rtfm/move-previous-next-links/</link>
		
		<dc:creator><![CDATA[Shelley]]></dc:creator>
		<pubDate>Thu, 23 Apr 2009 14:20:09 +0000</pubDate>
				<category><![CDATA[Thesis 1 Documentation]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[next]]></category>
		<category><![CDATA[previous]]></category>
		<guid isPermaLink="false">https://diythemes.com/answers/?p=151</guid>

					<description><![CDATA[<ul>
<li>From After Content to Before Content</li><ul>
<li>On Single Post Pages</li>
<li>On Home, Archive, and Search Pages</li>
</ul>
<li>Remove on Home Page Only</li>
</ul>]]></description>
										<content:encoded><![CDATA[<h3 id="before_content">From After Content to Before Content <a href="#before_content" title="Link to this section">∞</a></h3>
<h4 id="cont_single">On Single Post Pages <a href="#cont_single" title="Link to this section">∞</a></h4>
<p>Place this code in <code>custom_functions.php</code>:</p>
<pre class="php">
remove_action('thesis_hook_after_content', 'thesis_prev_next_posts');
add_action('thesis_hook_before_content', 'thesis_prev_next_posts');
</pre>
<h4 id="cont_others">On Home, Archive, and Search Pages <a href="#cont_others" title="Link to this section">∞</a></h4>
<p>Place this code in <code>custom_functions.php</code>:</p>
<pre class="php">
remove_action('thesis_hook_after_content', 'thesis_post_navigation');
add_action('thesis_hook_before_content', 'thesis_post_navigation');
</pre>
<h3 id="home_only">Remove on Home Page Only <a href="#home_only" title="Link to this section">∞</a></h3>
<p>Place this code in <code>custom_functions.php</code>:</p>
<pre class="php">
function no_home_post_nav() {
if (is_home())
  remove_action('thesis_hook_after_content', 'thesis_post_navigation');
}
add_action('thesis_hook_before_content','no_home_post_nav');</pre>
<h3 id="single_posts">Remove on Single Posts <a href="#single_posts" title="Link to this section">∞</a></h3>
<p>Go to <strong>Design Options &gt; Display Options &gt; Posts</strong>, and uncheck <em>Show previous/next post links</em>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
