<?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>custom &#8211; Thesis Docs</title>
	<atom:link href="https://diythemes.com/thesis/rtfm/tag/custom/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:30:14 +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>Using Custom CSS Classes for Posts and Pages</title>
		<link>https://diythemes.com/thesis/rtfm/custom-css-classes-posts-pages/</link>
		
		<dc:creator><![CDATA[Shelley]]></dc:creator>
		<pubDate>Tue, 09 Jun 2009 14:24:41 +0000</pubDate>
				<category><![CDATA[Thesis 1 Documentation]]></category>
		<category><![CDATA[body]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[custom]]></category>
		<guid isPermaLink="false">https://diythemes.com/answers/?p=371</guid>

					<description><![CDATA[How to use custom CSS classes for your Posts and Pages.]]></description>
										<content:encoded><![CDATA[<p>By default, Thesis automatically adds a specific body class for every Page (not Posts) according to its title. For example, the <code>body</code> tag for your About Page looks like this (assuming you&#8217;ve already enabled the Thesis option to &#8220;Use custom stylesheet&#8221;):</p>
<pre class="html">
&lt;body class=&quot;custom about&quot;&gt;
</pre>
<p>So, for example, if you wanted the <code>h1</code> tag on your &#8220;About&#8221; page to be red (without affecting the same tag when it appears on other pages of your site), you could use this in your <code>custom.css</code> file:</p>
<pre class="css">
.custom.about h1 {
   color: red;
}
</pre>
<p>Category pages are assigned a custom body class based on the category&#8217;s <em>slug</em>. For example, the <code>body</code> tag for the &#8220;General&#8221; category page looks like this:</p>
<pre class="html">
&lt;body class=&quot;custom cat_general&quot;&gt;
</pre>
<p>Archives pages are assigned a custom body class based on the archive type and the time period covered. For example, the <code>body</code> tag for the &#8220;January 2010&#8221; archives page looks like this:</p>
<pre class="html">
&lt;body class=&quot;custom monthly jan_2010&quot;&gt;
</pre>
<p>To assign a custom class to individual Posts, you can use the <em>SEO Details and Additional Style</em> section of the <strong>Edit post</strong> panel. Look for the <code>CSS Class</code> field, and enter the name of the custom class you&#8217;d like to use for the post. (Note: CSS class names cannot begin with numbers!)</p>
<p>You can then specify styles for that particular class name in your <code>custom.css</code> file, similar to the example shown above for the About Page.</p>
<p>(Note that you can also use this same field on the <strong>Edit page</strong> panel, but doing so will replace the default class Thesis already assigns to the <code>body</code> tag with whatever class you&#8217;ve designated instead.)</p>
<ol>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Place Six 125&#215;125 Ads in Multimedia Box</title>
		<link>https://diythemes.com/thesis/rtfm/six-125x125-ads-multimedia-box/</link>
		
		<dc:creator><![CDATA[Shelley]]></dc:creator>
		<pubDate>Thu, 28 May 2009 13:58:35 +0000</pubDate>
				<category><![CDATA[Thesis 1 Documentation]]></category>
		<category><![CDATA[ads]]></category>
		<category><![CDATA[box]]></category>
		<category><![CDATA[custom]]></category>
		<guid isPermaLink="false">https://diythemes.com/answers/?p=287</guid>

					<description><![CDATA[How to insert a block of six 125x125 ads into the Multimedia Box.]]></description>
										<content:encoded><![CDATA[<p>Go to <strong>Design Options</strong>, and under <em>Multimedia Box</em>, select <code>Custom Code</code> in the dropdown selector under Default Settings.</p>
<p>Then, in the &#8220;Custom Multimedia Box Code&#8221; field, copy the following code (replacing each link and image source with the appropriate values for your ads):</p>
<pre class="html">
&lt;div class=&quot;adblock cenx&quot;&gt;
&lt;a href=&quot;http://www.adlink.com/&quot;&gt;&lt;img src=&quot;http://www.example.com/images/image.jpg&quot; width=&quot;125&quot; height=&quot;125&quot; /&gt;&lt;/a&gt;
&lt;a href=&quot;http://www.adlink.com/&quot;&gt;&lt;img src=&quot;http://www.example.com/images/image.jpg&quot; width=&quot;125&quot; height=&quot;125&quot; /&gt;&lt;/a&gt;
&lt;a href=&quot;http://www.adlink.com/&quot;&gt;&lt;img src=&quot;http://www.example.com/images/image.jpg&quot; width=&quot;125&quot; height=&quot;125&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;

&lt;div class=&quot;adblock cenx&quot;&gt;
&lt;a href=&quot;http://www.adlink.com/&quot;&gt;&lt;img src=&quot;http://www.example.com/images/image.jpg&quot; width=&quot;125&quot; height=&quot;125&quot; /&gt;&lt;/a&gt;
&lt;a href=&quot;http://www.adlink.com/&quot;&gt;&lt;img src=&quot;http://www.example.com/images/image.jpg&quot; width=&quot;125&quot; height=&quot;125&quot; /&gt;&lt;/a&gt;
&lt;a href=&quot;http://www.adlink.com/&quot;&gt;&lt;img src=&quot;http://www.example.com/images/image.jpg&quot; width=&quot;125&quot; height=&quot;125&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;
</pre>
<p>Click the &#8220;Big Ass Save Button&#8221;.</p>
<p>Now, place the following code in <code>custom.css</code> (change to suit your specific requirements):</p>
<pre class="css">
.custom div.adblock img {
  padding: 4px;
  background-color: #FFFFFF;
  display: inline;
}
.custom .cenx {text-align: center;}
</pre>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
