<?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>h2 &#8211; Thesis Docs</title>
	<atom:link href="https://diythemes.com/thesis/rtfm/tag/h2/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>Sun, 27 Jan 2013 18:31:48 +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>Customize Teasers</title>
		<link>https://diythemes.com/thesis/rtfm/customize-teasers/</link>
		
		<dc:creator><![CDATA[Shelley]]></dc:creator>
		<pubDate>Mon, 13 Apr 2009 23:05:51 +0000</pubDate>
				<category><![CDATA[Thesis 1 Documentation]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[ellipses]]></category>
		<category><![CDATA[ellipsis]]></category>
		<category><![CDATA[excerpts]]></category>
		<category><![CDATA[h2]]></category>
		<category><![CDATA[length]]></category>
		<category><![CDATA[paragraph]]></category>
		<category><![CDATA[spacing]]></category>
		<category><![CDATA[teasers]]></category>
		<category><![CDATA[titles]]></category>
		<guid isPermaLink="false">https://diythemes.com/answers/?p=74</guid>

					<description><![CDATA[<ul>
<li>Teasers One Across Instead of Two</li>
<li>Change Color of Teaser Titles</li>
<li>Reduce Paragraph Spacing (Before and After Excerpt)</li>
<li>Adjusting Teaser Length</li>
<li>Remove Ellipses</li>
</ul>]]></description>
										<content:encoded><![CDATA[<h3 id="one_across">Teasers One Across Instead of Two <a href="#one_across" title="Link to this section">∞</a></h3>
<p>Place this code in <code>custom.css</code>:</p>
<pre class="css">
.custom .teaser {
   width: 100%;
   margin-top: 2em;
   padding-top: 2em;
   border-top: 1px dotted #bbb;
   text-align: justify;
}
.custom .teasers_box {
   padding-top: 0;
   padding-bottom:0;
   border-top: 0;
}
</pre>
<h3 id="title_color">Change Color of Teaser Titles <a href="#title_color" title="Link to this section">∞</a></h3>
<p>Place this code in <code>custom.css</code>, and adjust the color values to your requirements:</p>
<pre class="css">
.custom .teasers_box h2 a {
  color: red;
}
.custom .teasers_box h2 a:hover {
  color: yellow;
}
</pre>
<h3 id="para_space">Reduce Paragraph Spacing (Before and After Excerpt) <a href="#para_space" title="Link to this section">∞</a></h3>
<p>Place this code in <code>custom.css</code>:</p>
<pre class="css">
.custom .teaser .format_teaser {
   margin-bottom:4px;
   margin-top:4px;
}
</pre>
<h3 id="adj_length">Adjusting Teaser Length <a href="#adj_length" title="Link to this section">∞</a></h3>
<p>Place this code in <code>custom_functions.php</code>:</p>
<pre class="php">
function my_excerpt_length($length) {
   return 50;
}
add_filter('excerpt_length', 'my_excerpt_length');
</pre>
<h3 id="rem_ell">Remove Ellipses <a href="#rem_ell" title="Link to this section">∞</a></h3>
<p>Place this code in <code>custom_functions.php</code>:</p>
<pre class="php">
function no_ellipsis($text) {
    return str_replace('[...]', '', $text);
}
add_filter('the_excerpt', 'no_ellipsis');
</pre>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
