<?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>post styling &#8211; Thesis Docs</title>
	<atom:link href="https://diythemes.com/thesis/rtfm/tag/post-styling/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>Sat, 13 Jul 2019 17:57:25 +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 Lists and List Items</title>
		<link>https://diythemes.com/thesis/rtfm/style-lists-list-items/</link>
		
		<dc:creator><![CDATA[Shelley]]></dc:creator>
		<pubDate>Mon, 11 May 2009 12:34:30 +0000</pubDate>
				<category><![CDATA[Thesis 1 Documentation]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[lists]]></category>
		<category><![CDATA[padding]]></category>
		<category><![CDATA[post styling]]></category>
		<guid isPermaLink="false">https://diythemes.com/answers/?p=227</guid>

					<description><![CDATA[<ul>
<li>All Lists</li>
<li>Post Content Lists Only</li>
<li>Sidebar Widgets Only</li>
</ul>]]></description>
										<content:encoded><![CDATA[<h3 id="all_lists">All Lists <a href="#all_lists" title="Link to this section">∞</a></h3>
<p>Place this code in <code>custom.css</code> as a starting point:</p>
<pre class="css">
.custom ul {
   list-style-image: none;
   list-style-position: outside;
   list-style-type: square;
}

.custom li {
   padding-bottom: 5px;
}
</pre>
<h3 id="post_content">Post Content Lists Only <a href="#post_content" title="Link to this section">∞</a></h3>
<p>Place this code in <code>custom.css</code> as a starting point:</p>
<pre class="css">
.custom #content ul {
   list-style-image: none;
   list-style-position: inside;
   list-style-type: disc;
}

.custom #content li {
   padding-bottom: 5px;
}
</pre>
<h3 id="sidebars">Sidebar Widgets Only <a href="#sidebars" title="Link to this section">∞</a></h3>
<p>Place this code in <code>custom.css</code> as a starting point:</p>
<pre class="css">
.custom #sidebars li.widget ul {
   list-style-image: none;
   list-style-position: inside;
   list-style-type: disc;
}

.custom #sidebars li.widget li {
   padding: 5px;
}
</pre>
<h3>Related Resources:</h3>
<ul>
<li><a href="http://www.w3schools.com/Css/css_list.asp" title="CSS List Properties">CSS List Properties</a> <cite>from W3 Schools</cite></li>
</ul>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Implement and Style Drop Caps</title>
		<link>https://diythemes.com/thesis/rtfm/implement-style-drop-caps/</link>
		
		<dc:creator><![CDATA[Shelley]]></dc:creator>
		<pubDate>Wed, 08 Apr 2009 22:15:39 +0000</pubDate>
				<category><![CDATA[Thesis 1 Documentation]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[drop caps]]></category>
		<category><![CDATA[post styling]]></category>
		<guid isPermaLink="false">https://diythemes.com/answers/?p=67</guid>

					<description><![CDATA[How to insert drop caps in your posts, and customize the default styles.]]></description>
										<content:encoded><![CDATA[<h3 id="use_drop">Using Drop Caps in Posts <a href="#use_drop" title="Link to this section">∞</a></h3>
<p>When composing your posts, start them off like this (be sure you&#8217;re using the HTML Editor, not the Visual Editor!):</p>
<pre class="html">
&lt;span class=&quot;drop_cap&quot;&gt;T&lt;/span&gt;his is my paragraph.
</pre>
<h3 id="style_drop">Customizing Drop Caps Styles <a href="#style_drop" title="Link to this section">∞</a></h3>
<p>Place this code in <code>custom.css</code> as a starting point:</p>
<pre class="css">
.custom .format_text .drop_cap {
  font-family: Verdana;
  font-weight: bold;
  font-size: 1.8em;
  color: #555555;
}
</pre>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Create Pullquotes in Posts</title>
		<link>https://diythemes.com/thesis/rtfm/create-pullquotes-posts/</link>
		
		<dc:creator><![CDATA[Shelley]]></dc:creator>
		<pubDate>Tue, 07 Apr 2009 00:20:36 +0000</pubDate>
				<category><![CDATA[Thesis 1 Documentation]]></category>
		<category><![CDATA[blockquote]]></category>
		<category><![CDATA[post styling]]></category>
		<category><![CDATA[pullquote]]></category>
		<guid isPermaLink="false">https://diythemes.com/answers/?p=3</guid>

					<description><![CDATA[How to insert pullquotes in your posts, and customize the default styles.]]></description>
										<content:encoded><![CDATA[<p>Thesis provides a pre-existing style for pullquotes; just assign a class of either <code>right</code> or <code>left</code> to the <code>blockquote</code> tag.</p>
<h3>Example of Right Pullquote</h3>
<pre class="html">
&lt;blockquote class=&quot;right&quot;&gt;This is a right pullquote.&lt;/blockquote&gt;
</pre>
<blockquote class="right"><p>This is a right pullquote.</p></blockquote>
<p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nullam egestas, mauris id dignissim dignissim, leo augue rutrum lacus, id condimentum nisl elit ut nisl. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nulla facilisi.</p>
<h3>Example of Left Pullquote</h3>
<pre class="html">
&lt;blockquote class=&quot;left&quot;&gt;This is a left pullquote.&lt;/blockquote&gt;
</pre>
<blockquote class="left"><p>This is a left pullquote.</p></blockquote>
<p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nullam egestas, mauris id dignissim dignissim, leo augue rutrum lacus, id condimentum nisl elit ut nisl. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nulla facilisi.</p>
<h3>Styling Pullquotes</h3>
<p>If you want to customize the default styles Thesis applies to your pullquotes, use the following <abbr title="Cascading Style Sheet">CSS</abbr> declarations in your <code>custom.css</code> as a starting point:</p>
<pre>
.custom .format_text <strong>blockquote</strong>.left {
   <span class="property">border</span>: <span class="num">3</span><span class="keyword">px</span> <span class="str">double</span> <span class="color">#aaa</span>;
   <span class="property">color</span>: <span class="color">#111</span>;
   <span class="property">background-color</span>: <span class="color">#eee</span>;
}

.custom .format_text <strong>blockquote</strong>.right {
   <span class="property">border</span>: <span class="num">3</span><span class="keyword">px</span> <span class="str">double</span> <span class="color">#aaa</span>;
   <span class="property">color</span>: <span class="color">#111</span>;
   <span class="property">background-color</span>: <span class="color">#eee</span>;
}
</pre>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
