<?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>WordPress Savvy &#187; Wordpress Tips &amp; Tricks</title>
	<atom:link href="http://wordpresssavvy.com/category/wordpress-tips-tricks/feed/" rel="self" type="application/rss+xml" />
	<link>http://wordpresssavvy.com</link>
	<description>Practical guidance for Wordpress Users</description>
	<lastBuildDate>Sat, 07 Jan 2012 10:34:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Adding a header graphic to the Thesis theme</title>
		<link>http://wordpresssavvy.com/50/adding-header-graphic-thesis-theme/</link>
		<comments>http://wordpresssavvy.com/50/adding-header-graphic-thesis-theme/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 21:59:47 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[Wordpress Tips & Tricks]]></category>
		<category><![CDATA[thesis css]]></category>
		<category><![CDATA[Thesis Theme]]></category>
		<category><![CDATA[Thesis theme header graphic]]></category>

		<guid isPermaLink="false">http://wordpresssavvy.com/?p=50</guid>
		<description><![CDATA[I had to add a header graphic to a site using the Thesis the other day.  I found this blog post on how to do it and it worked really well.  However, there were a few additional tips which helped me along the way. 1. Initially I put the image in the wrong folder.  My [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I had to add a header graphic to a site using the Thesis the other day.  I found <a href="http://www.logosforwebsites.com/2009/05/how-to-add-a-clickable-header-image-in-your-thesis-wordpress-theme/" target="_blank">this blog post</a> on how to do it and it worked really well.  However, there were a few additional tips which helped me along the way.</p>
<p>1. Initially I put the image in the wrong folder.  My mistake. The header graphic should be uploaded to the “custom/images” directory of your Thesis theme installation.</p>
<p>2. In following the tutorial I copied the CSS from the tutorial however, it took some fiddling to get my image to position correctly.  In the end it was simply a case of reducing the height of the .custom #header #logo thus:</p>
<pre>     a { display: block; height: 100px;</pre>
<p>I also had to move my logo image down a bit for it to look right using the css code change:</p>
<pre>     .custom #header { padding: 20px 0px 0px 0px; }</pre>
<p>What this is tell the image to add a 20px padding to the top.  It is using the shortened form of padding property.  The padding property can have from one to four values for example:</p>
<p><strong>padding:25px 50px 75px 100px; </strong></p>
<ul>
<li>top padding is 25px</li>
<li>right padding is 50px</li>
<li>bottom padding is 75px</li>
<li>left padding is 100px</li>
</ul>
<p>Hope that helps.</p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/thesis+css' rel='tag' target='_self'>thesis css</a>, <a class='technorati-link' href='http://technorati.com/tag/Thesis+Theme' rel='tag' target='_self'>Thesis Theme</a>, <a class='technorati-link' href='http://technorati.com/tag/Thesis+theme+header+graphic' rel='tag' target='_self'>Thesis theme header graphic</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://wordpresssavvy.com/50/adding-header-graphic-thesis-theme/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Hiding a page in an Artisteer WordPress Menu</title>
		<link>http://wordpresssavvy.com/17/hiding-a-page-in-an-artisteer-wordpress-menu/</link>
		<comments>http://wordpresssavvy.com/17/hiding-a-page-in-an-artisteer-wordpress-menu/#comments</comments>
		<pubDate>Sat, 06 Jun 2009 13:20:47 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[Wordpress Tips & Tricks]]></category>
		<category><![CDATA[Artisteer]]></category>
		<category><![CDATA[Navigation Menu]]></category>
		<category><![CDATA[Page management]]></category>
		<category><![CDATA[Theme Editor]]></category>

		<guid isPermaLink="false">http://wordpresssavvy.com/?p=17</guid>
		<description><![CDATA[In order to hide a page from showing in the navigation menu of a theme created in Artisteer it is simply a case of editing the correct part of the functions.php file in the root of the themes folder. You can access this either through the built in WordPress theme editor or via a text [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>In order to hide a page from showing in the navigation menu of a theme created in Artisteer it is simply a case of editing the correct part of the functions.php file in the root of the themes folder.  You can access this either through the built in WordPress theme editor or via a text editor like EditPlus.</p>
<p>To hide the page from the Artisteer menu first you will need to get the page number.  Then edit the function  art_menu_items() in functions.php.  You can see below that all I have done is add the text &#8216;&amp;exclude=12,3&#8242; to line 527.</p>
<div id="attachment_20" class="wp-caption alignnone" style="width: 562px">
	<img class="size-full wp-image-20" title="Editing the art_menu_items-function" src="http://wordpresssavvy.com/wp-content/uploads/2009/06/art_menu_items-function.png" alt="Edit the art_menu_items function in functions.php" width="562" height="215" />
	<p class="wp-caption-text">Edit the art_menu_items function in functions.php</p>
</div>
<p>Before I edited it line 527 read:</p>
<pre>wp_list_pages('title_li=');</pre>
<p>After I edited it it read:</p>
<pre>wp_list_pages('title_li=&amp;exclude=12,3');</pre>
<p>Please do give me your feedback below if you find this technique useful and I will write more like this.</p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/Artisteer' rel='tag' target='_self'>Artisteer</a>, <a class='technorati-link' href='http://technorati.com/tag/Navigation+Menu' rel='tag' target='_self'>Navigation Menu</a>, <a class='technorati-link' href='http://technorati.com/tag/Page+management' rel='tag' target='_self'>Page management</a>, <a class='technorati-link' href='http://technorati.com/tag/Theme+Editor' rel='tag' target='_self'>Theme Editor</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://wordpresssavvy.com/17/hiding-a-page-in-an-artisteer-wordpress-menu/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>5 WordPress design tricks</title>
		<link>http://wordpresssavvy.com/9/5-wordpress-design-tricks/</link>
		<comments>http://wordpresssavvy.com/9/5-wordpress-design-tricks/#comments</comments>
		<pubDate>Wed, 27 May 2009 23:33:24 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Wordpress Tips & Tricks]]></category>
		<category><![CDATA[Creative Commons License]]></category>
		<category><![CDATA[Css Files]]></category>
		<category><![CDATA[Edit Plus 2]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[Gradients]]></category>
		<category><![CDATA[Hex Colour Code]]></category>
		<category><![CDATA[Mamp]]></category>
		<category><![CDATA[People]]></category>
		<category><![CDATA[rounded corners]]></category>

		<guid isPermaLink="false">http://wordpresssavvy.com/?p=9</guid>
		<description><![CDATA[1. Editing files directly on my server. To edit .css files or other code files directly on a server, I use 2 programs, one for PC and one for Mac On the Mac I use TextWrangler to change my code in real time. On the PC I use Edit Plus. 2. Working on my site [...]]]></description>
			<content:encoded><![CDATA[<p></p><h3>1. Editing files directly on my server.</h3>
<p>To edit .css files or other code files directly on a server, I use 2 programs, one for PC and one for Mac</p>
<p>On the Mac I use <a href="http://www.barebones.com/products/TextWrangler/" target="_blank">TextWrangler</a> to change my code in real time. On the PC I use <a href="http://www.editplus.com/" target="_blank">Edit Plus.</a></p>
<h3>2. Working on my site offline</h3>
<p>Download <a href="http://www.mamp.info/en/index.html" target="_blank">MAMP</a> and turn you Mac into your own personal server.  This is how I work on stuff before I take it live.</p>
<h3>3. Selecting a colour pallette</h3>
<p>Being colour blind, to pick colours that go well together I use a Hex Colour Code  <a href="http://www.2createawebsite.com/build/hex-colors.html" target="_blank">tool</a> to speed things up.</p>
<h3>4. To add gradients and rounded edges</h3>
<p>They can be a little slow to load but if you wanted rounded corners or gradients go <a href="http://www.roundedcornr.com/" target="_blank">here</a>.  <a href="http://www.alistapart.com/" target="_blank">Alist apart</a> is also a great design reference if you really want to get into it.</p>
<h3>5. Using other people’s photos from flickr</h3>
<p>Flickr has a page that explains the rules for using a picture you found on flickr, make sure it has a <a href="http://www.flickr.com/creativecommons/by-2.0/" target="_blank">Creative Commons</a> license and give them credit with a name and link on your blog post.</p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/Creative+Commons+License' rel='tag' target='_self'>Creative Commons License</a>, <a class='technorati-link' href='http://technorati.com/tag/Css+Files' rel='tag' target='_self'>Css Files</a>, <a class='technorati-link' href='http://technorati.com/tag/Edit+Plus+2' rel='tag' target='_self'>Edit Plus 2</a>, <a class='technorati-link' href='http://technorati.com/tag/Flickr' rel='tag' target='_self'>Flickr</a>, <a class='technorati-link' href='http://technorati.com/tag/Gradients' rel='tag' target='_self'>Gradients</a>, <a class='technorati-link' href='http://technorati.com/tag/Hex+Colour+Code' rel='tag' target='_self'>Hex Colour Code</a>, <a class='technorati-link' href='http://technorati.com/tag/Mamp' rel='tag' target='_self'>Mamp</a>, <a class='technorati-link' href='http://technorati.com/tag/People' rel='tag' target='_self'>People</a>, <a class='technorati-link' href='http://technorati.com/tag/rounded+corners' rel='tag' target='_self'>rounded corners</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://wordpresssavvy.com/9/5-wordpress-design-tricks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

