<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>Thesis Tips and Tricks</title>
	
	<link>http://thesistipsandtricks.allaboutshae.com</link>
	<description />
	<pubDate>Fri, 24 Apr 2009 19:08:12 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/thesistipsandtricks" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>Widgetize the Footer</title>
		<link>http://thesistipsandtricks.allaboutshae.com/2009/03/25/widgetize-the-footer/</link>
		<comments>http://thesistipsandtricks.allaboutshae.com/2009/03/25/widgetize-the-footer/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 02:45:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Functions]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[footer widget]]></category>

		<category><![CDATA[function]]></category>

		<guid isPermaLink="false">http://thesistipsandtricks.allaboutshae.com/?p=1579</guid>
		<description><![CDATA[I came across another excellent <a href="http://diythemes.com/forums/thesis-customization/3283-widgetized-footer-almost-there.html">thread </a>in the DIY forums on how to add sidebars and widgetize the footer. I have adapted it to meet my needs and thought I would share it.]]></description>
			<content:encoded><![CDATA[<p>I came across another excellent <a href="http://diythemes.com/forums/thesis-customization/3283-widgetized-footer-almost-there.html">thread </a>in the DIY forums on how to add sidebars and widgetize the footer. I&#8217;ve adapted it to meet my needs and thought I would share it.</p>
<p>I&#8217;ve added 4 sidebars to the footer. Each one is 25% the width of the footer. The function is hooked directly into the footer. Here&#8217;s the code.<br />
<pre><code>/*widgetize the footer */
if ( function_exists(&#039;register_sidebar&#039;) ) register_sidebars(4,array(&#039;name&#039;=&gt;&#039;Footer-Sidebar %d&#039;,
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#039;before_widget&#039; =&gt; &#039;&lt;li class=&quot;widget %2$s&quot; id=&quot;%1$s&quot;&gt;&#039;,
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#039;after_widget&#039; =&gt; &#039;&lt;/li&gt;&#039;,
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#039;before_title&#039; =&gt; &#039;&lt;h3&gt;&#039;,
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#039;after_title&#039; =&gt; &#039;&lt;/h3&gt;&#039;
&nbsp;&nbsp;&nbsp;&nbsp;)
&nbsp;&nbsp;);

function footer_widget(){?&gt;
&lt;div id=&quot;footer-sidebar&quot;&gt;
&nbsp;&nbsp; &lt;div id=&quot;footer-sidebar1&quot;&gt;
&nbsp;&nbsp;&nbsp;&nbsp; &lt;?php if ( !function_exists(&#039;dynamic_sidebar&#039;)
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|| !dynamic_sidebar(&#039;Footer-Sidebar 1&#039;) ) : ?&gt;
&nbsp;&nbsp;&nbsp;&nbsp; &lt;?php endif; ?&gt;
&nbsp;&nbsp; &lt;/div&gt;
&nbsp;&nbsp; &lt;div id=&quot;footer-sidebar2&quot;&gt;
&nbsp;&nbsp;&nbsp;&nbsp; &lt;?php if ( !function_exists(&#039;dynamic_sidebar&#039;)
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|| !dynamic_sidebar(&#039;Footer-Sidebar 2&#039;) ) : ?&gt;
&nbsp;&nbsp;&nbsp;&nbsp; &lt;?php endif; ?&gt;
&nbsp;&nbsp; &lt;/div&gt;
&nbsp;&nbsp; &lt;div id=&quot;footer-sidebar3&quot;&gt;
&nbsp;&nbsp;&nbsp;&nbsp; &lt;?php if ( !function_exists(&#039;dynamic_sidebar&#039;)
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|| !dynamic_sidebar(&#039;Footer-Sidebar 3&#039;) ) : ?&gt;
&nbsp;&nbsp;&nbsp;&nbsp; &lt;?php endif; ?&gt;
&nbsp;&nbsp; &lt;/div&gt;
&nbsp;&nbsp; &lt;div id=&quot;footer-sidebar4&quot;&gt;
&nbsp;&nbsp;&nbsp;&nbsp; &lt;?php if ( !function_exists(&#039;dynamic_sidebar&#039;)
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|| !dynamic_sidebar(&#039;Footer-Sidebar 4&#039;) ) : ?&gt;
&nbsp;&nbsp;&nbsp;&nbsp; &lt;?php endif; ?&gt;
&nbsp;&nbsp; &lt;/div&gt;

&lt;/div&gt; &lt;!-- Close footer-sidebar --&gt;
&lt;div style=&quot;clear-both&quot;&gt;&lt;/div&gt;
&lt;?php
}
add_action(&#039;thesis_hook_footer&#039;,&#039;footer_widget&#039;);</code></pre></p>
<p>Footer-Sidebars 1,2,3 and 4 will now be accessible on the Widgets page in Wordpress.</p>
<p>Note the new divs that were added:<br />
footer-sidebar - This div holds the sidebars in the footer div<br />
     footer-sidebar1<br />
     footer-sidebar2<br />
     footer-sidebar3<br />
     footer-sidebar4</p>
<p>Here&#8217;s the code I added for the footer sidebars in the custom.css.<br />
<pre><code>/*footer widgets*/
#footer-sidebar { display:block; width:100%; height: 125px; list-style-type: none;float:left;text-align:left;}
&nbsp;&nbsp;#footer-sidebar h3{ color: #3A93CC; font-weight: bold;text-decoration: underline;line-height:1.5em;}
&nbsp;&nbsp;#footer-sidebar a {color:#000;border:none;}
&nbsp;&nbsp;#footer-sidebar a:hover{text-decoration:underline;}
&nbsp;&nbsp;#footer-sidebar1{float:left; width:25%;text-align:left;}
&nbsp;&nbsp;#footer-sidebar2{float:left; width:25%;text-align:left;}
&nbsp;&nbsp;#footer-sidebar3{float:left; width:25%;text-align:left;}
&nbsp;&nbsp;#footer-sidebar4{float:left; width:25%;text-align:left;}
</code></pre></p>
<p>If you only want 2 or 3 sidebars in the footer, just adjust the code to fit your needs.</p>
]]></content:encoded>
			<wfw:commentRss>http://thesistipsandtricks.allaboutshae.com/2009/03/25/widgetize-the-footer/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Custom Search Box</title>
		<link>http://thesistipsandtricks.allaboutshae.com/2009/03/15/custom-search-box/</link>
		<comments>http://thesistipsandtricks.allaboutshae.com/2009/03/15/custom-search-box/#comments</comments>
		<pubDate>Mon, 16 Mar 2009 01:00:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Functions]]></category>

		<category><![CDATA[search box]]></category>

		<guid isPermaLink="false">http://blog.allaboutshae.com/?p=1405</guid>
		<description><![CDATA[The nice thing about this function is that you can place it just about anywhere with the thesis hooks. I have mine after the multimedia box, because I sometimes put both sidebars on the right and like having the search box above the other widgets.]]></description>
			<content:encoded><![CDATA[<p>The nice thing about this function is that you can place it just about anywhere with the thesis hooks. I have mine after the multimedia box, because I sometimes put both sidebars on the right and like having the search box above the other widgets.<br />
<pre><code>/*Custom Search Box */
function search_up() {
&lt;div class=&quot;sidebar&quot;&gt;
&lt;ul class=&quot;sidebar_list&quot;&gt;
&nbsp;&nbsp;&lt;li class=&quot;widget special_search&quot;&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
add_action(&#039;thesis_hook_after_multimedia_box&#039;, &#039;search_up&#039;);</code></pre></p>
]]></content:encoded>
			<wfw:commentRss>http://thesistipsandtricks.allaboutshae.com/2009/03/15/custom-search-box/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Custom Archives</title>
		<link>http://thesistipsandtricks.allaboutshae.com/2009/03/15/custom-archives/</link>
		<comments>http://thesistipsandtricks.allaboutshae.com/2009/03/15/custom-archives/#comments</comments>
		<pubDate>Mon, 16 Mar 2009 00:03:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Functions]]></category>

		<category><![CDATA[archives]]></category>

		<category><![CDATA[by category]]></category>

		<category><![CDATA[by month]]></category>

		<category><![CDATA[by post]]></category>

		<guid isPermaLink="false">http://blog.allaboutshae.com/?p=1398</guid>
		<description><![CDATA[Thesis comes with a default archive page. It's fine, but I wanted mine to show more. I found out how to accomplish it via the DIY Forums and the Wordpress Codex. Here's the code to add to the custom_functions.php:]]></description>
			<content:encoded><![CDATA[<p>Thesis comes with a default archive page. It&#8217;s fine, but I wanted mine to show more. I found out how to accomplish it via the DIY Forums and the Wordpress Codex. Here&#8217;s the code to add to the custom_functions.php:</p>
<p><pre><code>/* Custom Archives Page */
function my_archive() {
?&gt;
&lt;div class=&quot;archive&quot;&gt;
&lt;div class=&quot;archivel&quot;&gt;
&nbsp;&nbsp;&lt;h3&gt;By Month:&lt;/h3&gt;
&nbsp;&nbsp;&lt;ul&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;?php wp_get_archives(&#039;type=monthly&#039;); ?&gt;
&nbsp;&nbsp;&lt;/ul&gt;
&nbsp;&nbsp;&lt;h3&gt;By Category:&lt;/h3&gt;
&nbsp;&nbsp;&lt;ul&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;?php wp_list_categories(&#039;sort_column=name&amp;title_li=&#039;); ?&gt;
&nbsp;&nbsp;&lt;/ul&gt;
&nbsp;&nbsp; &lt;h3&gt;By Tag:&lt;/h3&gt;
 &lt;?php wp_tag_cloud(&#039;smallest=10&amp;largest=10&amp;format=list&#039;); ?&gt;
&lt;/div&gt;
&lt;div class=&quot;archiver&quot;&gt;
&nbsp;&nbsp; &lt;h3&gt;By Post: (Last 100 articles)&lt;/h3&gt;
&nbsp;&nbsp; &lt;ul&gt;
&nbsp;&nbsp;&nbsp;&nbsp; &lt;?php wp_get_archives(&#039;type=postbypost&amp;limit=100&#039;); ?&gt;
&nbsp;&nbsp; &lt;/ul&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;?php
}
remove_action(&#039;thesis_hook_archives_template&#039;, &#039;thesis_archives_template&#039;);
add_action(&#039;thesis_hook_archives_template&#039;, &#039;my_archive&#039;);
</code></pre></p>
<ol>
<li>Next go into your Wordpress dashboard and create a new page.</li>
<li>Name that page &#8220;Archives&#8221; and choose the &#8220;Archives&#8221; template.</li>
<li>Publish the page.</li>
<li>Now go to the &#8220;Thesis Options&#8221; page under &#8220;Appearance.&#8221;</li>
<li>Go to the &#8220;Navigation Menu&#8221; and click on &#8220;Archives&#8221; to include it in the nav menu.</li>
<li>Click on the &#8220;Big Ass Save Button.&#8221;</li>
</ol>
<p>That&#8217;s it!</p>
]]></content:encoded>
			<wfw:commentRss>http://thesistipsandtricks.allaboutshae.com/2009/03/15/custom-archives/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Some of My Favorite Plugins</title>
		<link>http://thesistipsandtricks.allaboutshae.com/2009/03/15/some-of-my-favorite-plugins/</link>
		<comments>http://thesistipsandtricks.allaboutshae.com/2009/03/15/some-of-my-favorite-plugins/#comments</comments>
		<pubDate>Sun, 15 Mar 2009 18:31:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://thesistipsandtricks.allaboutshae.com/?p=1495</guid>
		<description><![CDATA[I would be lost without the Maintenance Mode plugin. This allows you to show a splash page giving visitors an estimated time to check back.

When I first got Thesis, I was excited that I could add pictures of my grandkids to my personal blog. The only thing was it wasn&#8217;t a slideshow. When I learned [...]]]></description>
			<content:encoded><![CDATA[<p>I would be lost without the Maintenance Mode plugin. This allows you to show a splash page giving visitors an estimated time to check back.</p>
<p><a href="http://thesistipsandtricks.allaboutshae.com/2009/03/15/some-of-my-favorite-plugins/maintenancemode2/" rel="attachment wp-att-1512"><img src="http://thesistipsandtricks.allaboutshae.com/wp-content/uploads/2009/03/maintenancemode2-300x231.jpg" alt="maintenancemode" title="maintenancemode" width="300" height="231" class="aligncenter size-medium wp-image-1512" /></a><br />
When I first got Thesis, I was excited that I could add pictures of my grandkids to my personal blog. The only thing was it wasn&#8217;t a slideshow. When I learned how to widgetize the multimedia box, I also got the NextGEN Gallery plugin. This is a great plugin that is very customizable. Now I&#8217;m in Granny Heaven!</p>
<p>Akismet comes with Wordpress and is a good deterrent for spam. I soon found that it wasn&#8217;t enough though. Thanks to the DIY Forums, I found Raven&#8217;s Antispam and the Simple Trackback Validation plugins. With these 3 plugins running, I haven&#8217;t had to worry about spam comments.</p>
<p>Thesis OpenHook is great plugin from KingdomGeek. Instead of adding custom code in the custom_functions. php, you can add it using the plugin. It also allows you to view and edit the custom.css. This one is on my to-do list to learn more about.</p>
]]></content:encoded>
			<wfw:commentRss>http://thesistipsandtricks.allaboutshae.com/2009/03/15/some-of-my-favorite-plugins/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Thesis Hooks Reference</title>
		<link>http://thesistipsandtricks.allaboutshae.com/2009/03/15/thesis-hooks-reference/</link>
		<comments>http://thesistipsandtricks.allaboutshae.com/2009/03/15/thesis-hooks-reference/#comments</comments>
		<pubDate>Sun, 15 Mar 2009 15:50:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Thesis]]></category>

		<category><![CDATA[hooks]]></category>

		<guid isPermaLink="false">http://thesistipsandtricks.allaboutshae.com/?p=1493</guid>
		<description><![CDATA[<a href="http://diythemes.com/thesis/rtfm/hooks/">Thesis hooks</a> make it easy to customize your blog. I'll admit I haven't used many of the hooks yet, mostly the multimedia box and sidebar hooks. Here's a list of the hooks available.]]></description>
			<content:encoded><![CDATA[<p><a href="http://diythemes.com/thesis/rtfm/hooks/">Thesis hooks</a> make it easy to customize your blog. I&#8217;ll admit I haven&#8217;t used many of the hooks yet, mostly the multimedia box and sidebar hooks. Here&#8217;s a list of the hooks available.</p>
<p><strong>thesis_hook_before_html</strong><br />
    Just after the opening body tag, before anything else.</p>
<p><strong>thesis_hook_after_html</strong><br />
    Just before the closing body tag, after everything else.</p>
<p><strong>thesis_hook_before_header</strong><br />
    Just before the block which usually contains the site name &#038; tagline.</p>
<p><strong>thesis_hook_after_header</strong><br />
    Just after the block which usually contains the site name &#038; tagline.</p>
<p><strong>thesis_hook_header</strong><br />
    Determines the content of div#header.</p>
<p><strong>thesis_hook_before_title</strong><br />
    Within div#header, before the site title.</p>
<p><strong>thesis_hook_after_title</strong><br />
    Within div#header, after the site tagline.</p>
<p><strong>thesis_hook_before_content_box</strong><br />
    Within div#page, just before div#content_box. Depending on your settings, the feature box may be added to this hook.</p>
<p><strong>thesis_hook_after_content_box</strong><br />
    Within div#page, just after div#content_box.</p>
<p><strong>thesis_hook_before_content</strong><br />
    Within div#content, before posts begin.</p>
<p><strong>thesis_hook_after_content</strong><br />
    Within div#content, after all posts.<br />
<strong><br />
thesis_hook_feature_box</strong><br />
    Within div#feature_box; the feature box must be enabled in the Thesis Options for this hook to have any effect.</p>
<p><strong>thesis_hook_before_post_box</strong><br />
    ……………..</p>
<p><strong>thesis_hook_after_post_box</strong><br />
    ……………..</p>
<p><strong>thesis_hook_before_teasers_box</strong><br />
    ……………..</p>
<p><strong>thesis_hook_after_teasers_box</strong><br />
    ……………..</p>
<p><strong>thesis_hook_before_post</strong><br />
    Within div.format_text, before post content. If more than one post is shown on a page, this hook fires before each of them. The position of the post is passed as a parameter if needed in actions added to this hook (targeting only the first or third posts, for example).</p>
<p><strong>thesis_hook_after_post</strong><br />
    Within div.format_text, after post content. If more than one post is shown on a page, this hook fires before each of them. The position of the post is passed as a parameter if needed in actions added to this hook (targeting only the first or third posts, for example).</p>
<p><strong>thesis_hook_before_teaser_box</strong><br />
    ……………</p>
<p><strong>thesis_hook_after_teaser_box</strong><br />
    ……………</p>
<p><strong>thesis_hook_before_teaser</strong><br />
    ……………</p>
<p><strong>thesis_hook_after_teaser</strong><br />
    ……………</p>
<p><strong>thesis_hook_before_headline</strong><br />
Within div.headline_area, before the title of the page. If more than one post is shown on a page, this hook fires for each one. The position of the post is passed as a parameter if needed in actions added to this hook (targeting only the first or third posts, for example).</p>
<p><strong>thesis_hook_after_headline</strong><br />
    Within div>headline_area, after the title of the page. If more than one post is shown on a page, this hook fires for each one.</p>
<p><strong>thesis_hook_before_teaser_headline</strong><br />
    ………</p>
<p><strong>thesis_hook_after_teaser_headline</strong><br />
    ………</p>
<p><strong>thesis_hook_byline_item</strong><br />
    Within p.headline_meta, just before the edit link (if enabled). This hook will only have a noticeable affect if there is a byline to display according to the settings in Thesis Options. If more than one post is shown on a page, this hook is fired for each one.</p>
<p><strong>thesis_hook_before_comment_meta</strong><br />
Within dt.comment, before the comment’s meta information. If there is more than one comment on the page, this hook is fired for each one.</p>
<p><strong>thesis_hook_after_comment_meta</strong><br />
    Within dt.comment, after the comment’s meta information. If there is more than one comment on the page, this hook is fired for each one.</p>
<p><strong>thesis_hook_after_comment</strong><br />
    Within div.format_text, after the comment’s text. If there is more than one comment on the page, this hook is fired for each one.</p>
<p><strong>thesis_hook_comment_form</strong><br />
    Within form#commentform, just before the paragraph containing the comment form’s submit button.</p>
<p><strong>thesis_hook_archives_template</strong><br />
    ….</p>
<p><strong>thesis_hook_custom_template</strong><br />
    ….</p>
<p><strong>thesis_hook_faux_admin</strong><br />
    Within div#content_box (and also div#column_wrap if a sidebars-first three-column layout is in use). Can be used with plugins such as Customize Your Community to customize things like the login form.</p>
<p><strong>thesis_hook_archive_info</strong><br />
    Above the first post only on archive views (e.g., category listings, date listings, search results).</p>
<p><strong>thesis_hook_404_title</strong><br />
    Within h1. Determines the title of 404 error pages (not the title which appears in the browser’s title bar).</p>
<p><strong>thesis_hook_404_content</strong><br />
    Within div.format_text. Determines the content of a 404 error page.</p>
<p><strong>thesis_hook_before_sidebars</strong><br />
    Just within div#sidebars, before either sidebar or the multimedia box begins.</p>
<p><strong>thesis_hook_after_sidebars</strong><br />
    Within div#sidebars, after both sidebars.</p>
<p><strong>thesis_hook_multimedia_box</strong><br />
    …..</p>
<p><strong>thesis_hook_after_multimedia_box</strong><br />
    Within div#sidebars, after the multimedia box.</p>
<p><strong>thesis_hook_before_sidebar_1</strong><br />
    Within div#sidebar_1 ul.sidebar_list, before sidebar 1’s first widget.</p>
<p><strong>thesis_hook_after_sidebar_1</strong><br />
    Within div#sidebar_1 ul.sidebar_list, after sidebar 1’s last widget.</p>
<p><strong>thesis_hook_before_sidebar_2</strong><br />
    Within div#sidebar_2 ul.sidebar_list, before sidebar 2’s first widget.</p>
<p><strong>thesis_hook_after_sidebar_2</strong><br />
    Within div#sidebar_2 ul.sidebar_list, after sidebar 2’s last widget.</p>
<p><strong>thesis_hook_before_footer</strong><br />
    Just before div#footer.</p>
<p><strong>thesis_hook_after_footer</strong><br />
    Just after div#footer.</p>
<p><strong>thesis_hook_footer</strong><br />
    Within div#footer.</p>
]]></content:encoded>
			<wfw:commentRss>http://thesistipsandtricks.allaboutshae.com/2009/03/15/thesis-hooks-reference/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Firefox and Firebug</title>
		<link>http://thesistipsandtricks.allaboutshae.com/2009/03/14/firefox-and-firebug/</link>
		<comments>http://thesistipsandtricks.allaboutshae.com/2009/03/14/firefox-and-firebug/#comments</comments>
		<pubDate>Sun, 15 Mar 2009 00:22:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[firebug]]></category>

		<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://thesistipsandtricks.allaboutshae.com/?p=1424</guid>
		<description><![CDATA[I rarely use Internet Explorer anymore, only when I have to. Firefox has been my default browser for over a year. I really like the add-on&#8217;s that are available. The one I use most often is Firebug. It will allow you to view and temporarily edit the CSS code on the web page. That way [...]]]></description>
			<content:encoded><![CDATA[<p>I rarely use Internet Explorer anymore, only when I have to. Firefox has been my default browser for over a year. I really like the add-on&#8217;s that are available. The one I use most often is Firebug. It will allow you to view and temporarily edit the CSS code on the web page. That way you can tweak the code before actually modifying the stylesheet. You can get it at this link, <a href="https://addons.mozilla.org/en-US/firefox/addon/1843">Firebug</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://thesistipsandtricks.allaboutshae.com/2009/03/14/firefox-and-firebug/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Twitter Widget</title>
		<link>http://thesistipsandtricks.allaboutshae.com/2009/03/14/twitter-widget/</link>
		<comments>http://thesistipsandtricks.allaboutshae.com/2009/03/14/twitter-widget/#comments</comments>
		<pubDate>Sat, 14 Mar 2009 13:46:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Functions]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[hooks]]></category>

		<category><![CDATA[twitter]]></category>

		<category><![CDATA[widget]]></category>

		<guid isPermaLink="false">http://blog.allaboutshae.com/?p=1412</guid>
		<description><![CDATA[Another great tutorial from Kristarella is her <a href="http://www.kristarella.com/2009/01/display-your-tweets-without-a-plugin/" target="_blank">twitter widget</a>. You don't need to download a twitter plugin in order for it to work.]]></description>
			<content:encoded><![CDATA[<p>Another great tutorial from Kristarella is her <a href="http://www.kristarella.com/2009/01/display-your-tweets-without-a-plugin/" target="_blank">twitter widget</a>. You don&#8217;t need to download a twitter plugin in order for it to work.<br />
<pre><code>/*Twitter Widget*/
function footer_scripts() { ?&gt;
&nbsp;&nbsp;&lt;script type=&quot;text/javascript&quot; src=&quot;http://twitter.com/javascripts/blogger.js&quot;&gt;&lt;/script&gt;
&nbsp;&nbsp;&lt;script type=&quot;text/javascript&quot; src=&quot;http://twitter.com/statuses/user_timeline/allaboutshae.json?callback=twitterCallback2&amp;count=2&quot;&gt;&lt;/script&gt;
&lt;?php }
add_action(&#039;thesis_hook_after_html&#039;, &#039;footer_scripts&#039;);

function twitter_widget() { ?&gt;
&nbsp;&nbsp;&lt;li class=&quot;widget&quot;&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div id=&quot;twitter_div&quot;&gt;&lt;ul id=&quot;twitter_update_list&quot;&gt;&lt;li&gt; &lt;/li&gt;&lt;/ul&gt;&lt;img src=&quot;&lt;?php bloginfo(&#039;template_url&#039;); ?&gt;/custom/images/twitter_48.png&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;p&gt;&lt;a href=&quot;YOUR TWITTER ADDRESS GOES HERE&gt;tweet with me&lt;/a&gt;&lt;/p&gt;
&nbsp;&nbsp;&lt;/li&gt;
&lt;?php }
add_action(&#039;thesis_hook_after_multimedia_box&#039;, &#039;twitter_widget&#039;,1);
</code></pre></p>
<p>Next is to customize the widget. Here&#8217;s an example of how I have mine coded.<br />
<pre><code>#twitter_div {margin-left:1em;}
&nbsp;&nbsp;#twitter_div img {float:right;}
&nbsp;&nbsp;li.widget #twitter_update_list{list-style:none;}
&nbsp;&nbsp;#twitter_div a{color:#3A93CC;}
&nbsp;&nbsp;li.widget p a{color:#3A93CC;margin-left:1em;}
</code></pre></p>
]]></content:encoded>
			<wfw:commentRss>http://thesistipsandtricks.allaboutshae.com/2009/03/14/twitter-widget/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Widgetize the Multimedia Box</title>
		<link>http://thesistipsandtricks.allaboutshae.com/2009/03/14/widgetize-the-multimedia-box/</link>
		<comments>http://thesistipsandtricks.allaboutshae.com/2009/03/14/widgetize-the-multimedia-box/#comments</comments>
		<pubDate>Sat, 14 Mar 2009 12:37:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Functions]]></category>

		<category><![CDATA[multimedia box]]></category>

		<category><![CDATA[widget]]></category>

		<guid isPermaLink="false">http://blog.allaboutshae.com/?p=1385</guid>
		<description><![CDATA[Thesis comes with a multimedia box that enables you to add rotating images, video, or custom code to it. I had never used it for anything other than images until I came across a post by Adam Barber on the DIY Forums. He had created a custom function that would enable the multimedia box to [...]]]></description>
			<content:encoded><![CDATA[<p>Thesis comes with a multimedia box that enables you to add rotating images, video, or custom code to it. I had never used it for anything other than images until I came across a post by Adam Barber on the DIY Forums. He had created a custom function that would enable the multimedia box to hold widgets like the sidebars. Once the custom code was activated, the media box was accessible via the Widgets page just like the sidebars. Any widget that you can add to the sidebars can be added to the media box.</p>
<p>Here&#8217;s the code:<br />
<pre><code>/*widgetized the multi-media box */
if ( function_exists(&#039;register_sidebar&#039;) ) register_sidebar(array(&#039;name&#039;=&gt;&#039;Media Box&#039;, &#039;before_widget&#039; =&gt; &#039;
&#039;, &#039;after_widget&#039; =&gt; &#039;
&#039;, &#039;before_title&#039; =&gt; &#039;
&#039;, ));

function mediabox_widget() { if ( !function_exists(&#039;dynamic_sidebar&#039;) || !dynamic_sidebar(&#039;Media Box&#039;) ) : endif; }
add_action(&#039;thesis_hook_multimedia_box&#039;, &#039;mediabox_widget&#039;);</code></pre></p>
]]></content:encoded>
			<wfw:commentRss>http://thesistipsandtricks.allaboutshae.com/2009/03/14/widgetize-the-multimedia-box/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Full-Width Headers</title>
		<link>http://thesistipsandtricks.allaboutshae.com/2009/03/14/full-width-headers/</link>
		<comments>http://thesistipsandtricks.allaboutshae.com/2009/03/14/full-width-headers/#comments</comments>
		<pubDate>Sat, 14 Mar 2009 05:34:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Functions]]></category>

		<category><![CDATA[full-width]]></category>

		<category><![CDATA[header]]></category>

		<category><![CDATA[navigation]]></category>

		<guid isPermaLink="false">http://blog.allaboutshae.com/?p=1365</guid>
		<description><![CDATA[Thesis offers two types of HTML framework, page, which is the default, and full-width. Most of the sites that I&#8217;ve visited whether they be based on Thesis or not utilize the page framework. I utilize the full-width framework which enables the header to span the width of the browser page.
Kristarella has a great tutorial on [...]]]></description>
			<content:encoded><![CDATA[<p>Thesis offers two types of HTML framework, page, which is the default, and full-width. Most of the sites that I&#8217;ve visited whether they be based on Thesis or not utilize the page framework. I utilize the full-width framework which enables the header to span the width of the browser page.</p>
<p>Kristarella has a great tutorial on full-width headers on her website <a title="Full Width Headers 101" href="http://www.kristarella.com/2008/11/thesis-full-width-headers/" target="_blank">kristarella.com</a>.  This tutorial creates a separate nav_area and title_area which allows you to have separate colors for both. Here is the actual code that I added in the custom_functions.php. Mine is slightly different from what is in the tutorial as I have my nav bar positioned below the header area.<br />
<pre><code>/* Full Width Header */
remove_action(&#039;thesis_hook_before_header&#039;, &#039;thesis_nav_menu&#039;);
remove_action(&#039;thesis_hook_header&#039;, &#039;thesis_default_header&#039;);

function full_width_header() { ?&gt;
&nbsp;&nbsp;&lt;div id=&quot;title_area&quot; class=&quot;full_width&quot;&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class=&quot;page&quot;&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div id=&quot;header&quot;&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;?php thesis_default_header(); ?&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;
&nbsp;&nbsp;&lt;/div&gt;
&nbsp;&nbsp;&lt;div id=&quot;nav_area&quot; class=&quot;full_width&quot;&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class=&quot;page&quot;&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;?php thesis_nav_menu(); ?&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;?php }
add_action(&#039;thesis_hook_before_html&#039;, &#039;full_width_header&#039;);</code></pre><br />
You can customized the title_area and the nav_area in the custom.css like so<br />
<pre><code>#nav_area{background-color: #FFFCB9;}
#title_area {background-color: #3A93CC;padding-top: 1em;padding-bottom: 0;}</code></pre><br />
One last thing that needs to be done is to add the following to the custom.css.<br />
<code>#header_area{display:none;}</code></p>
]]></content:encoded>
			<wfw:commentRss>http://thesistipsandtricks.allaboutshae.com/2009/03/14/full-width-headers/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
