<?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>borders &#8211; Thesis Docs</title>
	<atom:link href="https://diythemes.com/thesis/rtfm/tag/borders/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:22:07 +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>Add Border Around Each Post</title>
		<link>https://diythemes.com/thesis/rtfm/add-border-around-each-post/</link>
		
		<dc:creator><![CDATA[Shelley]]></dc:creator>
		<pubDate>Thu, 28 May 2009 15:25:17 +0000</pubDate>
				<category><![CDATA[Thesis 1 Documentation]]></category>
		<category><![CDATA[borders]]></category>
		<guid isPermaLink="false">https://diythemes.com/answers/?p=302</guid>

					<description><![CDATA[How to add a border around each individual post.]]></description>
										<content:encoded><![CDATA[<p>Place this code in <code>custom.css</code>, and change to suit your requirements:</p>
<pre class="css">
/* Style the First (or Only) Post */
.custom .post.top {
   background:#FFFFFF none repeat scroll 0 0;
   border:15px double #666666 !important;
   margin:1em;
   padding:2em;
}

/* Style Remaining Posts (in a Multi-Post Listing) */
.custom .post.post_box {
   background:#FFFFFF none repeat scroll 0 0;
   border:15px double #000000;
   margin:1em;
   padding:2em;
}
</pre>
<p>If you also want to apply the border to content on Pages, remove <code>.post</code> from the CSS selectors, i.e., use <code>.custom .top</code> and <code>.custom .post_box</code> instead.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Style Nav Menu Tabs</title>
		<link>https://diythemes.com/thesis/rtfm/style-nav-menu-tabs/</link>
		
		<dc:creator><![CDATA[Shelley]]></dc:creator>
		<pubDate>Mon, 20 Apr 2009 18:02:14 +0000</pubDate>
				<category><![CDATA[Thesis 1 Documentation]]></category>
		<category><![CDATA[borders]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[style]]></category>
		<category><![CDATA[tabs]]></category>
		<category><![CDATA[underline]]></category>
		<category><![CDATA[uppercase]]></category>
		<guid isPermaLink="false">https://diythemes.com/answers/?p=103</guid>

					<description><![CDATA[<ul>
<li>Change Color of All Menu Tabs</li>
<li>Change Color of Active Menu Tab</li>
<li>Change Colors of Menu Tabs When Hovering</li>
<li>Remove Underline on Menu Tabs When Hovering</li>
<li>Remove Uppercase Formatting on Menu Tabs Text</li>
<li>Change Color of Borders on Menu Tabs</li>
<li>Remove Borders around Menu Tabs</li>
</ul>]]></description>
										<content:encoded><![CDATA[<p class="alert">This Answer is based on the style definitions from Thesis 1.5 or lower; in 1.6+, you can set colors for the Nav Menu under <strong>Thesis Design Options</strong> (under <em>Fonts, Colors, and More!</em>). For other styling, replacing <code>#tabs</code> in the examples below with <code>.menu</code> will generally be sufficient.</p>
<h3 id="change_color_all">Change Color of All Menu Tabs <a href="#change_color_all" title="Link to this section">∞</a></h3>
<p>Place this code in <code>custom.css</code> (changing the color values to use your own choices):</p>
<pre class="css">
.custom #tabs li {
   background: #efefef;
}
</pre>
<h3 id="change_color_active">Change Color of Active Menu Tab <a href="#change_color_active" title="Link to this section">∞</a></h3>
<p>Place this code in <code>custom.css</code> (changing the color values to use your own choices):</p>
<pre class="css">
.custom ul#tabs li.current-cat a, .custom ul#tabs li.current_page_item a {
  background-color: #000000;
  color: #ffffff;
}
</pre>
<h3 id="change_color_hover">Change Colors of Menu Tabs When Hovering <a href="#change_color_hover" title="Link to this section">∞</a></h3>
<p>Place this code in <code>custom.css</code> (changing the color values to use your own choices):</p>
<pre class="css">
.custom ul#tabs li a:hover {
  background:#000000;
  color:#ffffff;
}
</pre>
<h3 id="remove_underline_hover">Remove Underline on Menu Tabs When Hovering <a href="#remove_underline_hover" title="Link to this section">∞</a></h3>
<p>Place this code in <code>custom.css</code>:</p>
<pre class="css">
.custom ul#tabs li a:hover {
  text-decoration: none;
}</pre>
<h3 id="remove_uppercase">Remove Uppercase Formatting on Menu Tabs Text <a href="#remove_uppercase" title="Link to this section">∞</a></h3>
<p>Place this code in <code>custom.css</code>:</p>
<pre class="css">
.custom ul#tabs li a {
  text-transform: none;
}</pre>
<h3 id="change_borders">Change Color of Borders on Menu Tabs <a href="#change_borders" title="Link to this section">∞</a></h3>
<p>Place this code in <code>custom.css</code> (changing the color values to use your own choices):</p>
<pre class="css">
.custom #tabs, .custom #tabs li {
   border: 1px solid #ddd;
}
</pre>
<p>Note: This also affects the left and bottom borders along the nav menu itself.</p>
<h3 id="remove_borders">Remove Borders around Menu Tabs <a href="#remove_borders" title="Link to this section">∞</a></h3>
<p>Place this code in <code>custom.css</code>:</p>
<pre class="css">
.custom #tabs, .custom #tabs li {
  border-style: none;
}</pre>
<p>Note: This also affects the left and bottom borders along the nav menu itself.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
