<?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>GrandmasterB dot com &#187; Tutorials</title>
	<atom:link href="http://www.grandmasterb.com/category/tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.grandmasterb.com</link>
	<description>Wandering Thoughts of a Graphical Assassin</description>
	<lastBuildDate>Sat, 30 Jan 2010 17:55:41 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Q&amp;A with GrandmasterB &#8211; HTML/CSS Layout</title>
		<link>http://www.grandmasterb.com/qa-with-grandmasterb-htmlcss-layout/</link>
		<comments>http://www.grandmasterb.com/qa-with-grandmasterb-htmlcss-layout/#comments</comments>
		<pubDate>Wed, 27 May 2009 13:00:04 +0000</pubDate>
		<dc:creator>GrandmasterB</dc:creator>
				<category><![CDATA[Q&A with GMB]]></category>
		<category><![CDATA[coda]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.grandmasterb.com/?p=1093</guid>
		<description><![CDATA[
From time to time, I get questions about how I start designing websites, and how I build custom WordPress themes for my clients. I&#8217;ve spent the better part of the last year trying to streamline the process of designing and launching a blog theme. The problem that I have is I tend to get a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.grandmasterb.com/wp-content/uploads/2008/08/q_a_gmb.png"><img class="aligncenter size-full wp-image-299" title="Q&amp;A with GrandmasterB" src="http://www.grandmasterb.com/wp-content/uploads/2008/08/q_a_gmb.png" alt="Q&amp;A with GrandmasterB" width="510" height="135" /></a></p>
<p>From time to time, I get questions about how I start designing websites, and how I build custom WordPress themes for my clients. I&#8217;ve spent the better part of the last year trying to streamline the process of designing and launching a blog theme. The problem that I have is I tend to get a little carried away with trying to be perfect. Like most designers I start out with the basic tools&#8230;<a title="GrandmasterB - My Web Development Tools (Part One)" href="http://www.grandmasterb.com/my-web-development-tools-part-one/" target="_self">pencil and paper</a>. I draw out the layout and figure out the basic positioning of all of the necessary elements before I even think about putting anything down in Photoshop. That drawing stays with me until the very end of the project, and sometimes even after just for reference.</p>
<h4>How Does GrandmasterB Layout a Site for WordPress?</h4>
<p>Recently, Forest from <a title="The Random Forest" href="http://therandomforest.com/" target="_blank">The Random Forest</a> and <a title="Frugal Zeitgeist" href="http://frugalzeitgeist.com/" target="_blank">Frugal Zeitgeist</a> hit me up on Google Chat to ask me how I build a Wordpress theme and how I go from Photoshop layout to coding everything for Wordpress. Well, I know that I&#8217;m not the only designer/developer that works this way, but I build a simple HTML/CSS file that will serve as a template for the coding of the WordPress theme. In my opinion, there&#8217;s no reason to mess with all of the WordPress options and variables unless you have already solidified the design in it&#8217;s simplest form. I break down the design into the most simplest elements first:</p>
<p><span id="more-1093"></span></p>
<ol>
<li>Header</li>
<li>Content Area
<ol>
<li>Left Column</li>
<li>Right Column</li>
<li>Any other Columns</li>
</ol>
</li>
<li>Footer</li>
</ol>
<p>In my experience, 99.95% of the websites you visit will be comprised of those elements. I have built a basic HTML layout and copied it over to a <a title="Coda Clips" href="http://coda-clips.com/category/wordpress" target="_blank">Clip in Coda</a> that I can use for every new site and add or subtract items as needed. If you don&#8217;t use Coda, you can still make a template file to copy and paste whenever you need. Below is the basic structure of the file that I use&#8230;minus the standard HTML code.</p>
<h4>Basic HTML Layout</h4>
<p><code> &lt;div id="wrapper"&gt; &lt;!-- wraps everything into one div tag --&gt;<br />
<span> </span>&lt;div id="header"&gt;&lt;/div&gt;<br />
<span> </span><br />
<span> </span>&lt;div id="content-area"&gt; &lt;!-- houses the columns --&gt;<br />
<span> </span>&lt;div id="left-column"&gt;&lt;/div&gt;<br />
<span> </span>&lt;div id="right-column"&gt;&lt;/div&gt;<br />
<span> </span>&lt;/div&gt;<br />
<span> </span>&lt;div id="footer"&gt;&lt;/div&gt;<br />
&lt;/div&gt;</code></p>
<p>I know it looks simple, but that&#8217;s the idea&#8230;and it is simple! If you were to populate your divs with some content they will all just be stacked on top of each other. All of the detail like column heights, widths and position are determined by CSS. I had contemplated writing my own HTML/CSS layout tutorial, but that has been done a hundred times and there&#8217;s no sense in reinventing the wheel. One of the better tutorials that I have found was written by Steve Dennis on <a title="Subcide.com - Creating a CSS Layout from Scratch" href="http://www.subcide.com/tutorials/csslayout/index.aspx" target="_blank">Subcide.com</a>. It&#8217;s a very good tutorial, easy to follow and has great graphic examples to follow along with.</p>
<p>If you have any questions that you would like GrandmasterB to field hit me up via <a href="http://www.grandmasterb.com/contact">email</a> or on <a title="GrandmasterB on Twitter" href="http://twitter.com/grandmasterb" target="_blank">Twitter</a>.</p>
<p>~ GrandmasterB</p>
]]></content:encoded>
			<wfw:commentRss>http://www.grandmasterb.com/qa-with-grandmasterb-htmlcss-layout/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Mac Tricks: Adding Separators to the Dock</title>
		<link>http://www.grandmasterb.com/mac-tricks-adding-separators-to-the-dock/</link>
		<comments>http://www.grandmasterb.com/mac-tricks-adding-separators-to-the-dock/#comments</comments>
		<pubDate>Tue, 24 Mar 2009 13:00:30 +0000</pubDate>
		<dc:creator>GrandmasterB</dc:creator>
				<category><![CDATA[Mac Tricks]]></category>

		<guid isPermaLink="false">http://www.grandmasterb.com/?p=1067</guid>
		<description><![CDATA[
This is my first tutorial in what I&#8217;m hoping will become a series of easy Mac Tricks. I&#8217;m all about customization, and especially when it comes to my Mac and my workspace. When I got my new Mac Pro for work, I spent a good portion of the morning customizing the look from the icons, [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-1068" title="Mac Tricks: Adding Dock Separators" src="http://www.grandmasterb.com/wp-content/uploads/2009/03/dock-separators.png" alt="Mac Tricks: Adding Dock Separators" width="507" height="234" /></p>
<p>This is my first tutorial in what I&#8217;m hoping will become a series of easy Mac Tricks. I&#8217;m all about customization, and especially when it comes to my Mac and my workspace. When I got my new Mac Pro for work, I spent a good portion of the morning customizing the look from the icons, to the wallpapers and even the Dock. If you&#8217;re a fellow design or even a casual Mac user; I&#8217;m sure you have a fair amount of launch icons in your Dock. I wanted to find a way to add separators to the Dock, so that I could easily sort applications and make it easier to locate them without hunting.</p>
<p>Well, if you have tried to do the same thing you probably noticed that there&#8217;s no way to add dock separators built into OS X. So, how do you solve the problem? Well, with a little research I have found the solution. First let&#8217;s take a look at my existing dock:<span id="more-1067"></span></p>
<p><img class="aligncenter size-full wp-image-1072" title="Mac Dock Separator Tutorial: Before" src="http://www.grandmasterb.com/wp-content/uploads/2009/03/dock-separator-before.png" alt="Mac Dock Separator Tutorial: Before" width="507" height="234" /></p>
<p>As you can see, it&#8217;s quite a mess of icons and there&#8217;s really no rhyme or reason to how they&#8217;re laid out. With the addition of a separator between the icons, it would be easier to find the right application rather than scrolling through them all. So, how do you add a separator? As I mentioned there&#8217;s no clear cut way to add them from the OS, so you have to do a little tweaking in the Terminal. So if you don&#8217;t have the Terminal App in your dock, you can find it under: Applications &gt; Utilities &gt; Terminal.</p>
<p>With the Terminal App open, enter the following code to add a single separator to the Dock (copy and paste the first line to make it easier):</p>
<p><code>defaults write com.apple.dock persistent-apps -array-add '{ "tile-type" = "spacer-tile"; }'</p>
<p>hit return and type:</p>
<p>killall Dock</p>
<p>hit return</code></p>
<p>Your Dock will disappear and when it returns (a few seconds) there will be a separator towards the end of the Dock&#8230;it&#8217;s invisible, but it&#8217;s there. Now to position it, just click and drag it to where you want. If you want more than one separator, you just need to enter the first line of code again for as many separators as you want. That&#8217;s it&#8230;pretty easy! Here&#8217;s what my Dock looks like after the addition of separators.</p>
<p><img class="aligncenter size-full wp-image-1071" title="Mac Dock Separator Tutorial: After" src="http://www.grandmasterb.com/wp-content/uploads/2009/03/dock-separator-after.png" alt="Mac Dock Separator Tutorial: After" width="507" height="234" /></p>
<p>Now all of my icons in the Dock are organized by application type. I have created six groups of icons (some you can&#8217;t see).</p>
<ul>
<li>Browsers, Twitter and IM</li>
<li>Graphics Programs</li>
<li>Development Programs</li>
<li>Administrative Programs</li>
<li>System Apps</li>
<li>Games</li>
</ul>
<p>If you like this tutorial let me know, or if you have tips you&#8217;d like to share I&#8217;d love to hear them. Until next time&#8230;</p>
<p>~ GrandmasterB</p>
]]></content:encoded>
			<wfw:commentRss>http://www.grandmasterb.com/mac-tricks-adding-separators-to-the-dock/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Illustrator Tutorial: Give Your Flat Text Some Depth</title>
		<link>http://www.grandmasterb.com/illustrator-tutorial-give-your-flat-text-some-depth/</link>
		<comments>http://www.grandmasterb.com/illustrator-tutorial-give-your-flat-text-some-depth/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 13:00:43 +0000</pubDate>
		<dc:creator>GrandmasterB</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[adobe illustrator]]></category>
		<category><![CDATA[text effects]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.grandmasterb.com/?p=1017</guid>
		<description><![CDATA[
It&#8217;s been quite awhile since I have put together a tutorial using Adobe Illustrator. I&#8217;ve been working with Illustrator a lot more recently and decided to share an easy tutorial that will give your text some depth and make it pop off the page/screen a little more. I&#8217;ve used a few of these techniques before [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-1020" title="Illustrator Tutorial: Give Your Flat Text Some Depth" src="http://www.grandmasterb.com/wp-content/uploads/2009/03/flat-text-title.png" alt="Illustrator Tutorial: Give Your Flat Text Some Depth" width="507" height="234" /></p>
<p>It&#8217;s been quite awhile since I have put together a tutorial using Adobe Illustrator. I&#8217;ve been working with Illustrator a lot more recently and decided to share an easy tutorial that will give your text some depth and make it pop off the page/screen a little more. I&#8217;ve used a few of these techniques before in my tutorial &#8220;<a title="GrandmasterB - Feature Post Logo Tutorial" href="http://www.grandmasterb.com/create-a-logo-for-your-feature-posts/" target="_self">Feature Post Logo</a>&#8221; that I wrote last Spring. In that tutorial the finishing touches showed how to use the pen tool to add some shading to the text. This tutorial shows you another technique to achieve a shadow on your text.</p>
<div>
<h4>STEP ONE &#8211; Open Illustrator, Create a New Document and Set your Text</h4>
<p><a href="http://www.grandmasterb.com/wp-content/uploads/2009/03/step1-big.png"><img class="alignleft size-thumbnail wp-image-1022" title="step1-sm" src="http://www.grandmasterb.com/wp-content/uploads/2009/03/step1-sm-150x150.png" alt="step1-sm" width="150" height="150" /></a>I started out by creating a new document. Most of the time I use graphics for the web; however, there are times when my clients require the artwork for business cards, letterhead or other print collateral. So, you might want to create the new document profile for &#8220;print&#8221;, so that you don&#8217;t have to recreate the artwork if the client needs it for print.</p>
<p>After you have setup your new document, grab your text tool and set your type. For this tutorial, I used one of the great script fonts from <a title="House Industries" href="http://www.houseind.com" target="_blank">House Industries</a>&#8230;Sign Painter (House Script). This font isn&#8217;t free, but if you look around free font sites like <a title="DaFont.com" href="http://www.dafont.com" target="_blank">DaFont.com</a>; you should find something that works for you. One thing to note, is that you can use any style of font&#8230;I just chose a script font for fun.</p>
<p>I set the font size to 100 point, so that I could shrink it down later on for use on the web. If you use a script font you may need to bring in your tracking a little bit so that the letters flow together a little better. If your layers palette isn&#8217;t open go to: Window &gt; Layers and get it opened. Once it&#8217;s open click the arrow on the left of the layer name &#8220;Layer 1&#8243; and make sure you see the text. You&#8217;ll need to see these items as we go along. Once you&#8217;re happy with the type&#8230;it&#8217;s time to move onto step number two.<span id="more-1017"></span></div>
<div>
<h4>STEP TWO &#8211; Create Outlines</h4>
<p><a href="http://www.grandmasterb.com/wp-content/uploads/2009/03/step2-big.png"><img class="alignleft size-thumbnail wp-image-1024" title="step2-sm" src="http://www.grandmasterb.com/wp-content/uploads/2009/03/step2-sm-150x150.png" alt="step2-sm" width="150" height="150" /></a>This step is very easy, and there are two ways to go about accomplishing the task. The first way and probably the easiest is to right-click on the text and choose &#8220;Create Outlines&#8221;. Simple right?</p>
<p>Well, if you wanto to know exactly where in the menu this command lives&#8230;I&#8217;ll show you that too. You go to the menu bar and select Type &gt; Create Outlines. You can also choose to use the key command which is listed in the menu: CMD/CTRL+Shift+O.</p></div>
<div>
<h4>STEP THREE &#8211; Give the Text a Bit of Tilt (Optional)</h4>
<p><a href="http://www.grandmasterb.com/wp-content/uploads/2009/03/step3-big.png"><img class="alignleft size-thumbnail wp-image-1026" title="step3-sm" src="http://www.grandmasterb.com/wp-content/uploads/2009/03/step3-sm-150x150.png" alt="step3-sm" width="150" height="150" /></a>This step is completely optional. I like to make script fonts look a little bit italic, because it gives it a feeling of motion. Since there isn&#8217;t an italic style for this font; I have to do it myself. To give the text a bit of a tilt in Illustrator it&#8217;s very different from Photoshop. You have to go to the menu bar under Object &gt; Transform &gt; Shear&#8230;</p>
<p>Once you select &#8216;Shear&#8217;, it will bring up the options window and here you can choose the options you want.</p>
<p>I use the following settings for this tutorial:</p>
<ul>
<li>Shear Angle: 15° Degrees</li>
<li>Axis: Horizontal</li>
</ul>
<p>By default &#8216;Preview&#8217; is unselected. If you want to see what the text will look like before committing, you&#8217;ll need to select &#8216;Preview&#8217; first. Once you&#8217;re happy with the transformation of the text&#8230;you&#8217;re all set to move onto step number four.</p></div>
<div>
<h4>STEP FOUR &#8211; Change the Fill Color and Add a Stroke</h4>
<p><a href="http://www.grandmasterb.com/wp-content/uploads/2009/03/step4-big.png"><img class="alignleft size-thumbnail wp-image-1028" title="step4-sm" src="http://www.grandmasterb.com/wp-content/uploads/2009/03/step4-sm-150x150.png" alt="step4-sm" width="150" height="150" /></a>If you don&#8217;t have the &#8216;Control&#8217; bar open, now is the time to get that bad boy opened up. Go under the menu bar: Window &gt; Control and click it to get it opened. Grab the Selection Tool (black arrow) or hit (v) on your keyboard and select the type. You&#8217;ll see at the top left of the &#8216;Control&#8217; bar there are two boxes and one should be black, the other will be white with a red slash. The black box is your text fill color, the other box is the stroke color.</p>
<p>For this tutorial I changed the fill color and stroke color to 30% gray and change the stroke weight to 4pt. That option can be changed to the right of the stroke color.</p></div>
<div>
<h4>STEP FIVE &#8211; Copy Text and Nudge it Over</h4>
<p><a href="http://www.grandmasterb.com/wp-content/uploads/2009/03/step5-big.png"><img class="alignleft size-thumbnail wp-image-1030" title="step5-sm" src="http://www.grandmasterb.com/wp-content/uploads/2009/03/step5-sm-150x150.png" alt="step5-sm" width="150" height="150" /></a>This step of the tutorial is going to give the text a makeshift drop shadow. It&#8217;s very straightforward and easy to do. With the text selected we&#8217;re going to make a copy of it and paste it on the canvase, but it&#8217;s not going to be a normal paste of the object.</p>
<p>To copy the text you can use the key command or do it from the menu. The key command to copy is CMD/CTRL+C or to copy from the menu the command is under Edit &gt; Copy.</p>
<p>After you have copied the text we need to paste it onto the canvas. As I mentioned though you don&#8217;t want to just paste it, because Illustrator has a habit of putting objects wherever it pleases. What we want to do is &#8216;paste in front&#8217; of the copied object. To do that the key command is CMD/CTRL+F or via the menu bar it&#8217;s under Edit &gt; Paste in Front.</p>
<p>After you have pasted the text nudge it with the arrow keys up and to the left twice (hit left twice, then up twice). You&#8217;ll see that your text now has a bit of a three dimensional look to it&#8230;this is what we want.</p></div>
<div>
<h4>STEP SIX &#8211; Time to Add a Little Bit of Color</h4>
<div><a href="http://www.grandmasterb.com/wp-content/uploads/2009/03/step6-big.png"><img class="alignleft size-thumbnail wp-image-1032" title="step6-sm" src="http://www.grandmasterb.com/wp-content/uploads/2009/03/step6-sm-150x150.png" alt="step6-sm" width="150" height="150" /></a>With the top text layer still selected we&#8217;re going to copy and paste in front of the last layer.</p>
<p>After you have pasted the text in place, go ahead and change the color and the stroke. Change the stroke weight to 2pt&#8230;and you&#8217;re done with this step.</p>
<p>As we move along, these steps are going to seem repetitive but be sure you follow along so you don&#8217;t miss something.</p></div>
</div>
<div>
<h4>STEP SEVEN &#8211; Add a Gradient Layer</h4>
<p><a href="http://www.grandmasterb.com/wp-content/uploads/2009/03/step7-big.png"><img class="alignleft size-thumbnail wp-image-1034" title="step7-sm" src="http://www.grandmasterb.com/wp-content/uploads/2009/03/step7-sm-150x150.png" alt="step7-sm" width="150" height="150" /></a>Once again we&#8217;re going to copy the active layer and paste it in front of the last one. After you have pasted your text, open the gradient tool window under the menu bar: Window &gt; Gradient.</p>
<p>By default the gradient colors are set to make a gradient from black to white, and this is what we&#8217;re looking for. Unfortunately, Illustrator CS3 (which is what I&#8217;m using) doesn&#8217;t allow for transparent gradients, but Illustrator CS4 does. It&#8217;s not necessary for this tutorial, but if you&#8217;re looking for it you&#8217;ll need to upgrade.</p>
<p>Once you&#8217;ve selected the gradient you&#8217;ll want to leave it set at &#8216;Linear&#8217; and change the angle to -90° degrees. This will give us a gradient that is black on the bottom and white on the top. Once your gradient is set open the transparency window: Window &gt; Transparency. We&#8217;re going to change the Blend Mode to &#8216;Multiply&#8217; and the opacity to 50%. If you used a script font, chances are that your gradient may not blend between letters properly&#8230;don&#8217;t worry, we&#8217;ll fix that next.</p>
<h4>STEP EIGHT &#8211; The Magic of the Pathfinder</h4>
<p><a href="http://www.grandmasterb.com/wp-content/uploads/2009/03/step8-big.png"><img class="alignleft size-thumbnail wp-image-1036" title="step8-sm" src="http://www.grandmasterb.com/wp-content/uploads/2009/03/step8-sm-150x150.png" alt="step8-sm" width="150" height="150" /></a>The pathfinder tools are extremely cool and will allow you to do all sorts of interesting effects. Some of the options are a little touchy, but with some practice you should be able to figure out how to use them properly in no time at all. So, the first step here is to get the pathfinder window opened: Window &gt; Pathfinder (CMD/CTRL+Shift+F9).</p>
<p>Once the pathfinder window is open you&#8217;re going to want your gradient layer selected, then you want to choose the top left icon. If you hover over it with your mouse it will say &#8216;add to shape area&#8217;. Click on this option and it will make all of the letters one element and the gradient will appear as it should.</p>
<p>Once you&#8217;ve done that, go up to the transparency window. Change your Blend Mode to &#8216;Multiply&#8217; and the Opacity to 60%. Once you&#8217;re done, you should have a smooth transitional effect on the text like the image to the left. Leave that pathfinder window open&#8230;you&#8217;re going to need it again.</p>
<h4>STEP NINE &#8211; Let&#8217;s Find Some Shade (Part One)</h4>
<p><a href="http://www.grandmasterb.com/wp-content/uploads/2009/03/step9-big.png"><img class="alignleft size-thumbnail wp-image-1038" title="step9-sm" src="http://www.grandmasterb.com/wp-content/uploads/2009/03/step9-sm-150x150.png" alt="step9-sm" width="150" height="150" /></a>Sorry for the cheesy title, but I couldn&#8217;t think of anything else to say. With the gradient layer selected, copy and paste in front once again. Now you need to lock all of the other layers below (leaving the most recent layer), so you don&#8217;t edit them by accident. Then copy that top layer and paste in front again.</p>
<p>After you have pasted the layer, nudge it up once and left once. With your selection tool, drag and select both layers and change the fill color to Black.</p>
<p>After you&#8217;ve changed the fill color right click your mouse and choose &#8216;Ungroup&#8217;.</p>
<h4>STEP TEN &#8211; Let&#8217;s Find Some Shade (Part Two)</h4>
<p><a href="http://www.grandmasterb.com/wp-content/uploads/2009/03/step10-big.png"><img class="alignleft size-thumbnail wp-image-1040" title="step10-sm" src="http://www.grandmasterb.com/wp-content/uploads/2009/03/step10-sm-150x150.png" alt="step10-sm" width="150" height="150" /></a>This step of the tutorial is tricky at times, so it&#8217;s best to take it one letter at a time. For instance, if you click the image to the left you&#8217;ll see that I have selected only the &#8216;G&#8217;. Since the &#8216;G&#8217; is separate from the other letters if I were to select both layers and use the pathfinder&#8217;s &#8216;Subtract from Shape Area&#8217; function all of the other letters would be deleted and we&#8217;d be left with just the difference on the &#8216;G&#8217;&#8230;this is not good.</p>
<p>In this tutorial, since I used a script font and all of the letters are one element except for the &#8216;G&#8217;; I can do this in two steps. If you&#8217;ve used a font where there&#8217;s separation between the letters then you&#8217;ll need to do one at a time as mentioned above. So, I start by dragging a selection over the first letter and make sure it has selected both layers. Then go to the Pathfinder and click on &#8216;Subtract from Shape Area&#8217;, after you&#8217;ve done this you should see just a small sliver of the letter where they didn&#8217;t overlap. If your letter looks like <a href="http://www.grandmasterb.com/wp-content/uploads/2009/03/step10after-big.png">this</a>, then you&#8217;ve done a good job grasshopper. Repeat through all of the letters in your text, and then once you&#8217;ve completed that go back up to the Transparency window. Select all of the slivers and group them (CMD/CTRL-g) and change the blend mode to &#8216;Multiply&#8217; and the opacity to 50%.</p>
<p>ALL FINISHED</p>
<p><a href="http://www.grandmasterb.com/wp-content/uploads/2009/03/final-big.png"><img class="alignleft size-thumbnail wp-image-1019" title="final-sm" src="http://www.grandmasterb.com/wp-content/uploads/2009/03/final-sm-150x150.png" alt="final-sm" width="150" height="150" /></a>You&#8217;re all finished! If you&#8217;ve followed along through the process; your image should look fairly similar to the image to the left. The techniques in this tutorial range from beginner to intermediate, so if you don&#8217;t get it right away don&#8217;t beat yourself up. Give it another go, and try to figure out what went wrong.</p>
<p>When all else fails, you can still <a title="GrandmasterB Contact" href="http://www.grandmasterb.com/contact" target="_self">send me an email</a> and I can try to figure out where the issue is. As always, I appreciate your feedback and comments on the tutorial. Thank you for taking the time to go through the tutorial and visiting GrandmasterB.com. If you&#8217;re looking for any other tutorials, be sure to check out the <a title="GrandmasterB Tutorials" href="http://www.grandmasterb.com/tutorials" target="_self">Tutorials</a> page.</p>
<p>~ GrandmasterB</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.grandmasterb.com/illustrator-tutorial-give-your-flat-text-some-depth/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Q&amp;A with GrandmasterB &#8211; Markup Validation</title>
		<link>http://www.grandmasterb.com/qa-with-grandmasterb-markup-validation/</link>
		<comments>http://www.grandmasterb.com/qa-with-grandmasterb-markup-validation/#comments</comments>
		<pubDate>Sun, 25 Jan 2009 13:00:47 +0000</pubDate>
		<dc:creator>GrandmasterB</dc:creator>
				<category><![CDATA[Q&A with GMB]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[markup]]></category>
		<category><![CDATA[markup validation]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[validation]]></category>

		<guid isPermaLink="false">http://www.grandmasterb.com/?p=899</guid>
		<description><![CDATA[
It&#8217;s been quite awhile since I&#8217;ve posted anything new under the Question and Answers with GrandmasterB category, but today I received a great question in my inbox that I had to share with you all. The email was from my good pal Mike Cusden (you all know him as Cuzzy) from Cuzoogle. He had run [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-299" title="Q&amp;A with GrandmasterB" src="http://www.grandmasterb.com/wp-content/uploads/2008/08/q_a_gmb.png" alt="Q&amp;A with GrandmasterB" width="510" height="135" /></p>
<p>It&#8217;s been quite awhile since I&#8217;ve posted anything new under the Question and Answers with GrandmasterB category, but today I received a great question in my inbox that I had to share with you all. The email was from my good pal Mike Cusden (you all know him as Cuzzy) from Cuzoogle. He had run his site through the Markup Validation script at <a title="W3C Markup Validator" href="http://validator.w3.org/">http://validator.w3.org/</a> and it came back with quite a few errors and warnings, his question follows:</p>
<blockquote><p>Hey GrandmasterB, I ran my site through the Markup Validator and it came back with a ton of errors. Are any of these errors fixable? And is it something that&#8217;s relatively easy to fix?</p></blockquote>
<p>My first reaction was one of surprise, because every theme that I design and develop is run through to make sure that the code is 100% XHTML compliant before turning it over to the client. After taking a look at the output from the validator I could see exactly what the issue was and what needed to be fixed. For reference, I have pasted a copy of the report link <a title="W3C Markup Validator: Cuzoogle.com" href="http://validator.w3.org/check?uri=http%3A%2F%2Fcuzoogle.com%2F&amp;charset=(detect+automatically)&amp;doctype=Inline&amp;group=0&amp;user-agent=W3C_Validator%2F1.606" target="_blank">here</a> for you to follow along.</p>
<p>The problem that Cuzzy is having is that his theme code isn&#8217;t the problem, it&#8217;s the advertising code that he&#8217;s placed on the site. If you look at the errors that appear on the Markup Validation page, you&#8217;ll notice that the first error states the following:</p>
<blockquote><p>Line 15, Column 107: cannot generate system identifier for general entity &#8220;MarketPlace&#8221;.<br />
…om/widgets/q?ServiceVersion=20070822&amp;<strong><span style="color: #ff0000;">M</span></strong>arketPlace=US&amp;ID=V20070822/US/cuzoogle- </p></blockquote>
<p><span id="more-899"></span>There are a couple of things to look at here to determine the error. First you&#8217;ll notice next to the warning icon the words &#8220;Line 15, Column 107&#8243;. This is where the line of code is found if you view the source code in a text editor like DreamWeaver or BBEdit. Since this error is found on Line 15, it is going to be found in the header.php file of the WordPress theme. You see the capital &#8216;<span style="color: #ff0000;"><strong>M</strong></span>&#8216; is highlighted in red? That&#8217;s where the error is, if you read the description of the error it tells you that the ampersand before the letter &#8216;<span style="color: #ff0000;"><strong>M</strong></span>&#8216; is uncoded. What that means is it doesn&#8217;t have the proper code tag. Instead of using just the symbol you would use this code: <strong>&amp;amp;</strong></p>
<p>By fixing that one mistake with the ampersand, Cuzzy will be able to get rid of approximately 27 warnings/errors on his Markup Validation! Pretty cool and extremely easy to do. </p>
<h4>How Do I Validate Markup?</h4>
<p>I like to pull up my source code in Firefox and then copy and paste it into Coda (or your favorite text editor). I do that so I can see the line count and determine where the error is. I then open the file that contains that piece of code, in this case the header.php file. I don&#8217;t edit it though&#8230;what I do is &#8220;save as&#8221; and call it header.php.old and close it. I don&#8217;t like to edit working code, in case I have to revert back to the original. Open the header.php file again, make the change and then upload the file to your server. <strong>NOTE</strong>: If you&#8217;re using Coda, you can do all of this to your files that are on the server remotely and don&#8217;t have to worry about uploading files via FTP. After you make the change, go back to the HTML Markup Validator and click &#8220;revalidate&#8221;. The code will then be revalidated and you should see all of the errors for Line 15 disappear.</p>
<h4>Markup Validation Tools</h4>
<p>There are many tools available for validating your markup, but the good thing is that most of them are free! If you use Firefox, I highly recommend downloading <a title="Firefox Add-ons: Web Developer" href="https://addons.mozilla.org/en-US/firefox/addon/60">Web Developer Add-on</a> by Chris Pederick. Under the &#8216;Tools&#8217; menu on Web Developer it has links that will run your site through the Markup Validator as well as a CSS Validator. For editing code, I use Coda (as mentioned before), but you can use whatever text editor you choose. I highly recommend an editor which has a line count display. If you do a Google Search for &#8220;Free HTML Editors&#8221; you&#8217;ll find all kinds of stuff.</p>
<p>Well, that&#8217;s it for this edition of Q&amp;A with GrandmasterB. I hope that you all learned a little bit from this post. If anything it should shed a little light on markup validation and show you that it&#8217;s really something that you shouldn&#8217;t be afraid of. If you have any questions about markup validation or anything else related to web design or development, please shoot me an email. I would be happy to answer your questions&#8230;now, I&#8217;m off to make double sure my code is all up to par.</p>
<p>~ GrandmasterB</p>
]]></content:encoded>
			<wfw:commentRss>http://www.grandmasterb.com/qa-with-grandmasterb-markup-validation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Photoshop Tutorial: Create a Grunge Street Sign</title>
		<link>http://www.grandmasterb.com/photoshop-tutorial-create-a-grunge-street-sign/</link>
		<comments>http://www.grandmasterb.com/photoshop-tutorial-create-a-grunge-street-sign/#comments</comments>
		<pubDate>Thu, 27 Nov 2008 19:10:35 +0000</pubDate>
		<dc:creator>GrandmasterB</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[grunge]]></category>
		<category><![CDATA[icon tutorial]]></category>
		<category><![CDATA[Illustrator]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[Photoshop Tutorial]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.grandmasterb.com/?p=675</guid>
		<description><![CDATA[
The other day while watching ESPN, I noticed one of the advertisements for their NBA broadcasts titled &#8220;Destination NBA&#8221;. At the tail end of the spot they show an image of street signs with the upcoming games and times, with a cool worn/grunge effect to them (here&#8217;s a screenshot). Since it seems that I&#8217;ve developed [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.grandmasterb.com/wp-content/uploads/2008/11/street_sign.png"><img class="aligncenter size-full wp-image-677" title="Photoshop Tutorial: Grunge Street Sign" src="http://www.grandmasterb.com/wp-content/uploads/2008/11/street_sign.png" alt="" width="500" height="230" /></a><br />
The other day while watching ESPN, I noticed one of the advertisements for their NBA broadcasts titled &#8220;Destination NBA&#8221;. At the tail end of the spot they show an image of street signs with the upcoming games and times, with a cool worn/grunge effect to them (here&#8217;s a <a title="GrandmasterB: Desination NBA" href="http://www.grandmasterb.com/wp-content/uploads/2008/11/dscn0691.jpg" target="_blank">screenshot</a>). Since it seems that I&#8217;ve developed a flair for creating graphics with the same grungy look, I decided to try my hand at recreating the signs and at the same time write a tutorial on how I did it. My overall purpose of this tutorial is to show you how you can create the effect on  a street sign, not to duplicate the fine work by the ESPN graphics team.</p>
<p>I have included a resources file at the end of the tutorial for you to download if you like. Included in the resources file are a few of the textures that I use along with a few brush sets used in the tutorial. The font used for the tutorial was purchased by me and I cannot share it with anyone, as it would be against the usage policy. With all of the fine details out of the way&#8230;let&#8217;s get started.</p>
<p><span id="more-675"></span></p>
<p><a href="http://www.grandmasterb.com/wp-content/uploads/2008/11/picture-1.png"><img class="alignleft size-thumbnail wp-image-679" title="Grunge Street Sign Tutorial - Step One" src="http://www.grandmasterb.com/wp-content/uploads/2008/11/picture-1-150x150.png" alt="" width="150" height="150" /></a><strong>STEP ONE: Setup Your Document</strong></p>
<p>Start with an 800&#215;800 canvas. Position guides at 400&#215;400 and reset the center point at the cross. From there drag out guides to +/- 350px on the x-axis and +/- 150px on the y-axis. Reset your fill colors to Black and White (hit D on your keyboard). I realize that setting up all of these guides may seem like overkill, but I feel that it allows me to visualize the size of the final product and make sure everything fits properly.</p>
<p><a href="http://www.grandmasterb.com/wp-content/uploads/2008/11/picture-2.png"><img class="alignleft size-thumbnail wp-image-681" title="Grunge Street Sign Tutorial: Step Two" src="http://www.grandmasterb.com/wp-content/uploads/2008/11/picture-2-150x150.png" alt="" width="150" height="150" /></a><strong>STEP TWO: Draw Your Base Shape</strong></p>
<p>With the rounded-rectangle tool selected set the option to &#8217;shape layers&#8217; and the corner radius to 15px. Draw out your shape to fit within the outer guides. Right now, the color of the shape isn&#8217;t a big deal, we are going to be working on that soon. We will use this base layer as a building block for the remainder of the tutorial. Once you&#8217;re done rename the layer &#8220;Base Shape&#8221;&#8230;and now might be a good time to save your progress. You should have something similar to the screenshot provided after this step is completed.</p>
<p><a href="http://www.grandmasterb.com/wp-content/uploads/2008/11/picture-5.png"><img class="alignleft size-thumbnail wp-image-683" title="Grunge Street Sign Tutorial: Step Three" src="http://www.grandmasterb.com/wp-content/uploads/2008/11/picture-5-150x150.png" alt="" width="150" height="150" /></a><strong>STEP THREE: Layout the Inside White Stripe</strong></p>
<p>Change your fill color to white&#8230;if you have left your colors reset from step one, just hit X on the keyboard. Otherwise, hit D to reset the colors and X to swap to white. Drag new guides to +/- 340px x-axis and +/-140px y-axis. Then grab your rounded-rectangle tool again and set your corner radius to 10px and draw out your shape to the new guides. ReName this layer &#8220;Stripe&#8221;.</p>
<p>Now setup another set of guides at +/-335px x-axis and +/-135px y-axis. I know this seems like a lot of guides, but trust me they help out when you&#8217;re trying to position the line precisely. Grab your rounded-rectangle shape tool again and this time set the corner radius to 7px and set it to &#8217;subtract from shape layer&#8217; (see <a title="Photoshop: Subtract from Shape Layer" href="http://www.grandmasterb.com/wp-content/uploads/2008/11/subtract_shapelayer.png" target="_self">screenshot</a>). Drag out your shape inside the new guides. When you&#8217;re done you will have a thick  rounded corner stripe instead of a white box. This is our entire base shape. From here we will change everything to make it whatever color we want. I&#8217;m going with blue to match the sample image</p>
<h4>SIDE NOTE!</h4>
<p>I don&#8217;t like to work on my shape layers, so I generally just use them as guides for the other layers and creating masks for textures. I find that by using them as a base (or template) I can do more on new layers and group them together than trying to build onto the shape layer. If you follow this method you can resize your base layers, and apply a new layer mask to the other layers&#8230;and you don&#8217;t have to edit the entire document. So you can hide the base images and keep them separate put them into a group and rename them &#8220;Base Layers&#8221;. Select both layers (hold shift and click) then drag them to the bottom of the layers palette to the folder icon (<a title="Photoshop: Create Layer Group" href="http://www.grandmasterb.com/wp-content/uploads/2008/11/layer_group.png">screenshot</a>).</p>
<p><a href="http://www.grandmasterb.com/wp-content/uploads/2008/11/picture-7.png"><img class="alignleft size-thumbnail wp-image-696" title="Grunge Street Sign Tutorial: Step Four" src="http://www.grandmasterb.com/wp-content/uploads/2008/11/picture-7-150x150.png" alt="" width="150" height="150" /></a><strong>STEP FOUR: Time for Some Color</strong></p>
<p>From here create a new layer above the folder labeled &#8220;Base Layers&#8221;. I&#8217;m going to choose a light blue color and a darker blue and make a radial gradient for the base color. I will just choose the colors from the sample image.</p>
<p>• Light Blue: #0066ff<br />
• Dark Blue: #0e2d8a</p>
<p>Grab your gradient tool (G), set it to foreground to background and set the mode to radial gradient. From just inside the upper left set of guides drag out the gradient tool up and to the right (just outside the top guides).</p>
<p><a href="http://www.grandmasterb.com/wp-content/uploads/2008/11/picture-8.png"><img class="alignleft size-thumbnail wp-image-698" title="Grunge Street Sign Tutorial: Step Five" src="http://www.grandmasterb.com/wp-content/uploads/2008/11/picture-8-150x150.png" alt="" width="150" height="150" /></a><strong>STEP FIVE: Start Adding in Some Texture</strong></p>
<p>This is a favorite technique of mine, because it&#8217;s simple and does an excellent job of creating a really cool weathered look. We don&#8217;t want our final artwork to be an exact duplicate of the sample, so I&#8217;m going to use some other textures to create an original piece. I&#8217;m going to start by adding in a texture from some leaking rust. Open the file in Photoshop and get rid of the color by using Desaturate (CMD/CTRL-Shift-U or Image &gt; Adjustments &gt; Desaturate). Then fix the levels and contrast by doing Auto Levels (CMD/CTRL-Shift-L) and Auto Contrast (CMD/CTRL-Alt-Shift-L). After you&#8217;ve made your adjustments drag the texture over to your canvas. Resize (CMD/CTRL-T) as needed, I made mine 70% of the original image and moved it just to the top of the guides. After you&#8217;re happy with the placement change the blend mode to Overlay and leave the Opacity at 50%.</p>
<p>Next I&#8217;m going to take a grungy paper texture (vintage-grunge-textures: #2) and do the same thing as the rusty leak, but this time when you resize it rotate it 90 degrees. After you have it in position modify the brightness/contrast (Image&gt;Adjustments&gt;Brightness/Contrast) to Brightness: -71 / Contrast: +31. Change the blend mode to Overlay and leave the Opacity at 35%.</p>
<p>Duplicate the paper texture layer and change the blend mode to Multiply and the Opacity to 35%. By the time you&#8217;re finished you should have something relatively similar to <a title="Grunge Street Sign Tutorial" href="http://www.grandmasterb.com/wp-content/uploads/2008/11/picture-10.png" target="_blank">this image</a>.</p>
<p><a href="http://www.grandmasterb.com/wp-content/uploads/2008/11/picture-12.png"><img class="alignleft size-thumbnail wp-image-704" title="Grunge Street Sign Tutorial: Adding Shading" src="http://www.grandmasterb.com/wp-content/uploads/2008/11/picture-12-150x150.png" alt="" width="150" height="150" /></a><strong>STEP SIX: Add in Some Shading</strong></p>
<p>From here we have put together a pretty good looking texture for the sign. There are paint blots, the paint dripping from weather and numerous scratches from flying debris. Now we need to work on adding in some shading and making the outside portion of the sign a little darker to add some contrast. Pick out some of the grunge brushes supplied in the resources.zip file and start dropping in some black around the edges. I find it&#8217;s best to just stamp in color (one-click).</p>
<p>I don&#8217;t ever drag them out (or paint in strokes), because it doesn&#8217;t look right to me. This is the part of the tutorial where you can experiment as much as you want. Change brushes around as you go, so you don&#8217;t end up with the same shape all over, and try to overlap them. After you&#8217;ve got a decent border built up change the blend mode to Multiply and the Opacity to 65%.</p>
<p>It&#8217;s still a little too bright for my taste in the center area. From here make a new layer directly above the gradient layer. With your brushes set on a grunge brush and the foreground still set to black make a few clicks over the light portion of the canvas. Then set your blend mode on that layer to Color Burn and the Opacity to 45%.</p>
<p><a href="http://www.grandmasterb.com/wp-content/uploads/2008/11/picture-13.png"><img class="alignleft size-thumbnail wp-image-706" title="Grunge Street Sign Tutorial - Adding Highlights" src="http://www.grandmasterb.com/wp-content/uploads/2008/11/picture-13-150x150.png" alt="" width="150" height="150" /></a></p>
<p><strong>STEP SEVEN: Adding in Highlights</strong></p>
<p>Highlights are tricky and you have to follow the old &#8220;Less is More&#8221; rule. If you put too many highlights into the image it will look like garbage, not enough and it doesn&#8217;t look right. You need to use your judgement, but try not to over do it. Create a new layer and using the eyedropper tool (I) select a lighter blue (or light version of the color you chose) from your canvas.</p>
<p>Then using some of the Angry Blue brushes (included) position some spatters around the palette within the guides. After you have something you are happy with set the blend mode to Color Dodge and the Opacity to 28%.</p>
<p><a href="http://www.grandmasterb.com/wp-content/uploads/2008/11/picture-15.png"><img class="alignleft size-thumbnail wp-image-707" title="Grunge Street Sign Tutorial: Adding Text" src="http://www.grandmasterb.com/wp-content/uploads/2008/11/picture-15-150x150.png" alt="" width="150" height="150" /></a><strong>STEP EIGHT: Adding in Text</strong></p>
<p>If you look at the reference image the texture from the wear and tear is on top of the text, so we&#8217;re going to set our text up the same way. Highlight the gradient layer and then grab your text tool. The font we are using is the standard for all street signs called Interstate by FontBureau. I&#8217;m going to use Interstate Bold for the main text and the Regular weight for the other text.</p>
<p>Reset your colors (D) and Change your fill color to white (X) and type out your first word (for the larger text I set my type at 80pts). Once you setup your first piece of text you&#8217;re going to want to adjust the tracking and bring the characters closer together. To do this open your Character Palette and adjust the tracking to around -25 to -50. See this <a title="Photoshop: Adjusting the Tracking" href="http://www.grandmasterb.com/wp-content/uploads/2008/11/picture-14.png" target="_blank">screenshot</a> for reference.</p>
<p>Add in text as you see fit. I&#8217;m just making something similar to the sample image and changing up the information. After I&#8217;ve setup the heading text and the sub-text I&#8217;ve readjusted everything to be centered in the frame.</p>
<p><a href="http://www.grandmasterb.com/wp-content/uploads/2008/11/picture-16.png"><img class="alignleft size-thumbnail wp-image-709" title="Grunge Street Sign Tutorial: Where's the Stripe?" src="http://www.grandmasterb.com/wp-content/uploads/2008/11/picture-16-150x150.png" alt="" width="150" height="150" /></a><strong>STEP NINE: Where&#8217;s the White Stripe?</strong></p>
<p>You thought I forgot didn&#8217;t you? Well, to be honest&#8230;I almost did. Let&#8217;s start by creating a new layer just above the gradient layer. Remember when we saved the stripe layer in the folder? Good! Expand the folder and we&#8217;re going to make a selection of that stripe layer. Hold down Command (Mac) or Control (PC) and click the vector mask on the stripe layer.</p>
<p>You&#8217;ll now see the selection on your canvas. We want to fill this with white. If your fill color is not set to white, reset the colors (D) and swap to white (X). Now fill it! You can either do the quick key command (alt-delete/backspace) or Edit &gt; Fill. It&#8217;s up to you&#8230;both methods work exactly the same. Now it looks like we have something decent on screen, but it&#8217;s a tad bit messy&#8230;let&#8217;s clean it up.</p>
<p><a href="http://www.grandmasterb.com/wp-content/uploads/2008/11/picture-17.png"><img class="alignleft size-thumbnail wp-image-710" title="Grunge Street Sign: Finishing Up" src="http://www.grandmasterb.com/wp-content/uploads/2008/11/picture-17-150x150.png" alt="" width="150" height="150" /></a><strong>STEP TEN: Create a Layer Mask and Finish Up</strong></p>
<p>Now that we have the sign almost complete all we need to do is cutout the color and texture on the outside of the guides. To do this it is very simple. Select all of your layers and drag them to the folder icon to create a new group. Then just as we made the layer selection of the stripe we will make a selection of the &#8220;Base&#8221; layer.</p>
<p>After you&#8217;ve made your selection click the &#8220;add layer mask icon&#8221; in the layers palette (two left from the group icon). After you&#8217;re done with the layer mask, you can crop down the image and save it for the web or any other application you need. Obviously, this image is fairly large for most uses, but if you want to shrink it down you can. Remember the shape layers we created? By using the direct selection tool (hit A on the keyboard or select the white-arrow tool just below the text tool on your toolbar. It&#8217;s best to select one side of the shape and either shrink or enlarge it. then you can do the other sides.</p>
<p>That&#8217;s it for this tutorial! I have included a zipped file for the resources and a copy of the final Photoshop file for your reference. Remember, the key to creating great artwork is experimenting&#8230;you don&#8217;t always have to follow the rules. Thanks for reading, and I hope you enjoyed this tutorial.</p>
<p>~ GrandmasterB</p>
<p><strong>RESOURCE FILES</strong><br />
Photoshop File: <a title="Grunge Sign PSD File" href="http://www.grandmasterb.com/image_viewer/grunge_sign.psd">grunge_sign.psd</a> (3.7 MB)<br />
Resource File &#8211; Includes Textures and Grunge Brushes: <a title="Grunge Sign Resources" href="http://www.grandmasterb.com/image_viewer/grunge_sign_resources.zip">grunge_sign_resources.zip</a> (8.3 MB)</p>
<p>Check out my other <a title="GrandmasterB's Tutorials" href="http://www.grandmasterb.com/tutorials" target="_self">Tutorials</a> as well!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.grandmasterb.com/photoshop-tutorial-create-a-grunge-street-sign/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Q&amp;A with GrandmasterB &#8211; August 21</title>
		<link>http://www.grandmasterb.com/qa-with-grandmasterb-august-21/</link>
		<comments>http://www.grandmasterb.com/qa-with-grandmasterb-august-21/#comments</comments>
		<pubDate>Thu, 21 Aug 2008 20:46:21 +0000</pubDate>
		<dc:creator>GrandmasterB</dc:creator>
				<category><![CDATA[Q&A with GMB]]></category>
		<category><![CDATA[cuzoogle]]></category>
		<category><![CDATA[FireFTP]]></category>
		<category><![CDATA[GoogleBot]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.grandmasterb.com/?p=332</guid>
		<description><![CDATA[
I skipped the Q&#38;A last week in order to get some good questions rolling in the door and to find a good day of the week to commit to the feature post. I&#8217;ve settled on Thursdays for the Q&#38;A with GrandmasterB feature; since it allows me to get things caught up over the weekend and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.grandmasterb.com/wp-content/uploads/2008/08/q_a_gmb.png"><img class="aligncenter size-full wp-image-299" title="Q&amp;A with GrandmasterB" src="http://www.grandmasterb.com/wp-content/uploads/2008/08/q_a_gmb.png" alt="" width="500" height="132" /></a><br />
I skipped the Q&amp;A last week in order to get some good questions rolling in the door and to find a good day of the week to commit to the feature post. I&#8217;ve settled on Thursdays for the Q&amp;A with GrandmasterB feature; since it allows me to get things caught up over the weekend and more time to put together a clear and concise answer. Don&#8217;t forget to send me your questions and if your question is published you&#8217;ll get a free linkback from GrandmasterB and 100 EntreCard credits for your bankroll. Now onto the question for this week.</p>
<p>My boy Cuzzy (<a title="Cuzoogle" href="http://www.cuzoogle.com" target="_blank">Cuzoogle.com</a>) wrote me an email the other day asking me the following question:</p>
<p>I have recently started a new blog and want to set up a google site map. I downloaded the plugin and activated it but I am still having trouble getting my site map to work. It says I need to make sure the file is writeable and this was where I got lost. Can you help?</p>
<p><span id="more-332"></span></p>
<p>Cuzzy, this is actually a very common problem with installing plug-ins that need to be able to &#8220;write&#8221; to a given file on your server. In regards to your question the first thing you need to do is create the file for the sitemap. In order to do this you can use any text editor, I suggest using <strong>Notepad</strong> or if you have it <strong>Dreamweaver</strong> or another HTML editor. You don&#8217;t have to add any code to it, just save it as <strong><em>sitemap.xml</em></strong> and then upload it to the root directory of your site (wherever your index.php file is for WordPress).</p>
<p>If you don&#8217;t have an FTP client to upload your files I highly recommend installing FireFTP for Firefox. You should be able to download, install and setup the FTP client in record time; it is very user friendly. The only information that you will need to enter is your host (aka URL), username and password; once you have that hit connect and you should see the directory of your website in the right hand column. From here you will need to upload the <em><strong>sitemap.xml</strong></em> file to the home directory. Once it is uploaded right click it and choose &#8220;properties&#8221; (<a title="FireFTP: File Properties" href="http://www.grandmasterb.com/wp-content/uploads/2008/08/ftp_properties.png">see image</a>).</p>
<p>Once you have clicked on properties, it will bring up a window for you showing you the file permissions. Each checkbox has a numeric value, and for this case we need that number to add up to 0777. What you&#8217;ll need to do is make sure that you check Read, Write and Execute under each column and then click OKAY (<a title="FireFTP: File Properties Permissions" href="http://www.grandmasterb.com/wp-content/uploads/2008/08/ftp_properties2.png">see image</a>). You&#8217;ve now changed the file permissions for <strong><em>sitemap.xml</em></strong>.</p>
<p>After you have changed the file properties, go back to your WordPress Admin Panel and click on settings and then access the XML-Sitemap settings. Under the top section labeled &#8220;Status&#8221; you may still see a warning that the file isn&#8217;t writeable, that is okay. It doesn&#8217;t automatically check the files if you&#8217;ve made a change. Simply click on the &#8220;rebuild sitemap manually&#8221; link and it should write the sitemap and create a new compressed file as well. One thing to note is that under the Location of the Sitemap File you should check automatically; that will save you time in the long run.</p>
<p>That&#8217;s pretty much it for the XML-Sitemap plugin settings though. Once you have everything setup, you should begin to see more activity from the search engines crawling your content. If you haven&#8217;t done so already I highly recommend installing the <a title="Crawl Rate Tracker" href="http://www.blogstorm.co.uk/wordpress-crawl-rate-tracker/" target="_blank">Crawl Rate Tracker</a> plugin; with that plugin installed you can see when the top three search engines (GoogleBot, Yahoo! and MSN) are crawling your site and how often.</p>
<p>That is all for this week&#8217;s Q&amp;A with GrandmasterB. Thank you again, to <a title="Cuzoogle" href="http://www.cuzoogle.com" target="_blank">Cuzzy</a> for his question and your 100 EntreCard Credits are being emailed to you now. Don&#8217;t forget if there&#8217;s something you&#8217;d like to know about hit me up with a question and you too can get a linkback and 100 EntreCard credits if I answer your question on the Q&amp;A.</p>
<p>~ GrandmasterB</p>
]]></content:encoded>
			<wfw:commentRss>http://www.grandmasterb.com/qa-with-grandmasterb-august-21/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Q&amp;A with GrandmasterB &#8211; August 5</title>
		<link>http://www.grandmasterb.com/qa-with-grandmasterb-august-5/</link>
		<comments>http://www.grandmasterb.com/qa-with-grandmasterb-august-5/#comments</comments>
		<pubDate>Tue, 05 Aug 2008 14:00:15 +0000</pubDate>
		<dc:creator>GrandmasterB</dc:creator>
				<category><![CDATA[Q&A with GMB]]></category>
		<category><![CDATA[EntreCard]]></category>
		<category><![CDATA[favicon]]></category>
		<category><![CDATA[icon tutorial]]></category>
		<category><![CDATA[Photoshop Tutorials]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.grandmasterb.com/?p=298</guid>
		<description><![CDATA[
For awhile now, I have contemplated doing a Q&#38;A feature post that would address questions from my readers. I&#8217;ve been compiling some of the questions and answers that I think will help people out of a tight spot. These questions can be on any topic; from Photoshop questions to Wordpress issues, tutorial requests to general [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.grandmasterb.com/wp-content/uploads/2008/08/q_a_gmb.png"><img class="aligncenter size-full wp-image-299" title="Q&amp;A with GrandmasterB" src="http://www.grandmasterb.com/wp-content/uploads/2008/08/q_a_gmb.png" alt="" width="500" height="132" /></a><br />
For awhile now, I have contemplated doing a Q&amp;A feature post that would address questions from my readers. I&#8217;ve been compiling some of the questions and answers that I think will help people out of a tight spot. These questions can be on any topic; from Photoshop questions to Wordpress issues, tutorial requests to general banter. I will try to answer each question as best I can and give you resources where you can find more help on a given topic. So without further ado&#8230;I give you Q&amp;A with GrandmasterB.</p>
<p><strong>Question From: Jamie</strong><br />
In one of your tutorials it says to place a guide at 400x and 400y. How is this done??? Please help.</p>
<p><span id="more-298"></span></p>
<p><strong>Answer:</strong><br />
In order to drag guides onto the canvas you need to make sure your rulers are visible. There are two ways to do it. You can either go under the menu bar to View &gt; Rulers or the key command (Apple: cmd-r / Windows: ctrl-r). Once your rulers are visible move the cursor to the top ruler, click and drag down for horizonal guides and the left ruler will drag out vertical rulers. One thing to note is that the rulers can display multiple types of measurements:</p>
<ul>
<li>inches</li>
<li>centimeters</li>
<li>millimeters</li>
<li>pixels</li>
<li>picas</li>
<li>points</li>
<li>percentages</li>
</ul>
<p>To change the measurement type right click on the ruler and it will give you a menu. For this particular tutorial (and all tutorials that I write) I use pixels. If you create the 800 pixel x 800 pixel canvas you will see a 400 mark on the ruler. Simply click and drag to get the guide to where it needs to go. For more precise placement you can use the &#8216;INFO&#8217; window by going under Window &gt; Info or pressing F8. I&#8217;ve attached an image to this email to show you exactly where to locate the X and Y coordinates of the guides and cursor. I hope my answer to your question helps you out.</p>
<p><a href="http://www.grandmasterb.com/wp-content/uploads/2008/08/guides.png"><img class="alignnone size-thumbnail wp-image-300" title="Photoshop Guides" src="http://www.grandmasterb.com/wp-content/uploads/2008/08/guides-150x150.png" alt="" width="150" height="150" /></a></p>
<p><a href="http://www.grandmasterb.com/wp-content/uploads/2008/08/guides.png"></a> If you have any questions for me that you would like featured on Q&amp;A with GrandmasterB please send me an email via my <a title="GrandmasterB: Contact Page" href="http://www.grandmasterb.com/contact/" target="_self">Contact</a> page. In your email if you&#8217;re following along with a tutorial, please let me know which one and on which step you&#8217;re having issues with. Also, If you&#8217;d like a linkback to your site include your site in the email. If I publish your question, I will send you 100 EntreCard credits for participating. Stay tuned for future Q&amp;A posts via my <a title="GrandmasterB: Subscribe" href="http://feeds.feedburner.com/Grandmasterbcom" target="_blank">RSS Feed</a>&#8230;you won&#8217;t want to miss it.</p>
<p>~ GrandmasterB</p>
]]></content:encoded>
			<wfw:commentRss>http://www.grandmasterb.com/qa-with-grandmasterb-august-5/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Photoshop Tutorial: Grunge Styled Banner</title>
		<link>http://www.grandmasterb.com/photoshop-tutorial-grunge-styled-banner/</link>
		<comments>http://www.grandmasterb.com/photoshop-tutorial-grunge-styled-banner/#comments</comments>
		<pubDate>Wed, 23 Jul 2008 04:43:49 +0000</pubDate>
		<dc:creator>GrandmasterB</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[Banner Tutorial]]></category>
		<category><![CDATA[Go Media]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[vectors]]></category>

		<guid isPermaLink="false">http://www.grandmasterb.com/?p=245</guid>
		<description><![CDATA[

Recently, Cuzzy from Cuzoogle.com contacted me about creating a new banner image for his blogroll post dubbed &#8220;Rolling a Blog Joint&#8221;. Since the overall premise is a play on the word joint, I thought something with a textured paper background and perhaps a pot leaf image would do the trick. Amazingly, enough there is a [...]]]></description>
			<content:encoded><![CDATA[<div style="text-align:center;"><a href="http://www.grandmasterb.com/wp-content/uploads/2008/07/blogroll_graphic.png"><img class="aligncenter size-full wp-image-280" title="Rolling a Blog Joint Banner" src="http://www.grandmasterb.com/wp-content/uploads/2008/07/blogroll_graphic.png" alt="Tutorial Finished Product" width="460" height="160" /><br />
</a></div>
<p>Recently, Cuzzy from <a title="Cuzoogle" href="http://www.cuzoogle.com" target="_blank">Cuzoogle.com</a> contacted me about creating a new banner image for his blogroll post dubbed &#8220;Rolling a Blog Joint&#8221;. Since the overall premise is a play on the word <strong><em>joint</em></strong>, I thought something with a textured paper background and perhaps a pot leaf image would do the trick. Amazingly, enough there is a company named &#8216;Pot Leaf&#8217; and their logo was available on <a title="Brands of the World" href="http://www.brandsoftheworld.com" target="_blank">BrandsoftheWorld.com</a>, so that will save me a step of recreating the leaf in illustrator. The paper texture for the background will be a combination of a number of paper artwork that I found on <a title="Bittbox" href="http://www.bittbox.com/freebies/free-high-res-grungy-paper-textures/" target="_blank">Bittbox</a>; which is a great resource for this type of stuff. So, that should be enough background on this project&#8230;let&#8217;s get &#8216;<em><strong>rolling</strong></em>&#8216;.</p>
<p><a href="http://www.grandmasterb.com/wp-content/uploads/2008/07/step1.jpg"><img class="alignleft size-thumbnail wp-image-248" title="Tutorial: Step One" src="http://www.grandmasterb.com/wp-content/uploads/2008/07/step1-150x150.jpg" alt="Setting Up the Document" width="150" height="150" /></a><strong>STEP ONE: SETTING UP THE DOCUMENT</strong></p>
<p>The finished size of this image will be 450p wide x 150p high, but I&#8217;m going to start with a bigger canvas size. The reason being is that I want to be able to adjust the textured background to fit, and later I will crop it out. So, let&#8217;s start out by creating a new document that&#8217;s 600&#215;600. From there drag guides to the center at 300x and 300y and then recenter the rulers to make that point 0. After that drag out horizontal guides to +/- 75px and vertical guides to +/-225px. These outer guides will be our bounding box&#8230;all of the content will go inside this area. Anything outside the bounding box will be cutoff in the final step, so make double sure everything is inside that box.</p>
<p><a href="http://www.grandmasterb.com/wp-content/uploads/2008/07/step2.jpg"><img class="alignleft size-thumbnail wp-image-249" title="Tutorial Step Two: Creating the Background" src="http://www.grandmasterb.com/wp-content/uploads/2008/07/step2-150x150.jpg" alt="Creating the Background" width="150" height="150" /></a><strong>STEP TWO: CREATING THE BACKGROUND</strong></p>
<p>I want to make the background a different color from the text and leaf image, so I thought a light shade of brown would be a good contrast and it will make the paper more realistic. I&#8217;ll use a light shade (b79573) and a darker shade (7a5f43) and create a radial gradient; which will be the base of the background. Create a new layer and drag out a radial gradient starting a bit above the top guide and down towards the right corner (light to dark). We create a new layer, because I want to have a base layer that&#8217;s transparent&#8230;this layer will come into play later on in the tutorial. After you&#8217;ve made your gradient, rename the layer to &#8216;<strong>Base</strong>&#8216;.</p>
<p><span id="more-245"></span></p>
<p><a href="http://www.grandmasterb.com/wp-content/uploads/2008/07/step3.jpg"><img class="alignleft size-thumbnail wp-image-250" title="Tutorial Step Three: Adding Texture" src="http://www.grandmasterb.com/wp-content/uploads/2008/07/step3-150x150.jpg" alt="Adding Texture to the Background" width="150" height="150" /></a></p>
<p><strong>STEP THREE: ADD TEXTURE TO THE BACKGROUND</strong></p>
<p>For this step it isn&#8217;t necessary, but I&#8217;m using three different textures to give the background more depth. For your reference they are: paper2, paper3 and paper4. Take your first texture and drag it above the gradient layer. You&#8217;re going to want to resize it, so the quickest way is free transform. In the options window change the x and y points to 0, the scale to 20 x 20 and angle to 90°. After you&#8217;ve scaled the texture you&#8217;ll want to desaturate it (cmd/ctrl+shift+u). Then change the <a title="Photoshop: Layer Blend Mode" href="http://www.grandmasterb.com/wp-content/uploads/2008/07/blend_mode.png">Layer Blend Mode</a> to Overlay and the Opacity to about 60%. Rename the layer &#8216;<strong>Texture1</strong>&#8216;. You should have something like what I do&#8230;I hope. If you would like to experiment with other types of textures; I suggest checking out <a title="CG Textures" href="http://www.cgtextures.com/" target="_blank">CGTextures</a>.</p>
<p><a href="http://www.grandmasterb.com/wp-content/uploads/2008/07/step4.jpg"><img class="alignleft size-thumbnail wp-image-251" title="Tutorial Step Four: Adding More Texture" src="http://www.grandmasterb.com/wp-content/uploads/2008/07/step4-150x150.jpg" alt="Add More Texture for Effect" width="150" height="150" /></a><strong>STEP FOUR: MORE TEXTURE</strong></p>
<p>This step is an exact repeat of the end of step three. I&#8217;m going to take two more textures and repeat the free transform, desaturate and change the blend mode. The only difference is you&#8217;re going to reduce the opacity on each layer by a little bit. I&#8217;m doing 50% and 20%&#8230;but feel free to experiment. If you really want to change it up try changing the Blend Mode to something like Color Dodge or Color Burn. Rename these layers to &#8216;<strong>Texture2</strong>&#8216; and &#8216;<strong>Texture3</strong>&#8216;. If you find any other textures that you think will work with the image, go ahead and add them in&#8230;you never know what you&#8217;ll get when you start experimenting with Photoshop.</p>
<p><strong>STEP FIVE: ADD SOME GRAPHIC ELEMENTS</strong></p>
<p>For this step I&#8217;m going to dive into the <a title="Go Media Arsenal" href="http://www.grandmasterb.com/redir.php">Go Media Arsenal</a> to pick out some cool elements that will give us some depth. I&#8217;m going to really pile on the use of the Arsenal today; to show you just what you can do if you use them wisely. Remember the old adage &#8220;less is more&#8221;, you don&#8217;t want to go overboard. Here are the packs that are used in this tutorial.</p>
<p><a href="http://www.grandmasterb.com/redir.php"><img class="aligncenter size-full wp-image-289" title="Go Media Arsenal: Packs Used" src="http://www.grandmasterb.com/wp-content/uploads/2008/07/gomedia-arsenal-packs1.png" alt="" width="500" height="784" /></a><br />
I am going to use the following elements from these packs to design this banner. I will cover each of them in detail as I add them to the document.</p>
<div style="text-align: center; margin-bottom: 15px;"><a href="http://www.grandmasterb.com/wp-content/uploads/2008/07/blogroll_elements.png"><img class="aligncenter size-full wp-image-255" title="Go Media Vector Elements" src="http://www.grandmasterb.com/wp-content/uploads/2008/07/blogroll_elements.png" alt="Elements Used in This Tutorial" width="453" height="607" /></a></div>
<p><a href="http://www.grandmasterb.com/wp-content/uploads/2008/07/step5_1.jpg"><img class="alignleft size-thumbnail wp-image-254" title="Tutorial Step 5.1: Adding Graphic Elements" src="http://www.grandmasterb.com/wp-content/uploads/2008/07/step5_1-150x150.jpg" alt="Adding an abstract halftone" width="150" height="150" /></a><strong>Step 5.1 &#8211; Add the abstract halftone</strong></p>
<p>The first thing I&#8217;m going to do is add the abstract halftone element to the background to give it more texture by pasting it into photoshop as pixels (Photoshop will ask you what to do&#8230;I choose pixels, but you can do whatever is easiest for you). I enlarge it by going into Free Transform (cmd/ctrl-t) and then rotate it 45 degrees to the left. After that we want to duplicate that layer (Layer &gt; Duplicate Layer or hold down alt and drag&#8230;either way will work). After you&#8217;ve duplicated the layer you will flip it both horizontally and vertically (Edit &gt; Transform &gt; Flip Horizontal/Vertical). Then move it into position and center both layers. When you&#8217;re done merge those two layers by selecting both in the layers pallete, right-click and choose &#8216;merge layers&#8217;. After you&#8217;ve done that, change the blend mode to Multiply and opacity to 50%. Rename this layer to &#8216;Abstract1&#8242;.</p>
<p><a href="http://www.grandmasterb.com/wp-content/uploads/2008/07/step5_2.jpg"><img class="alignleft size-thumbnail wp-image-256" title="Tutorial Step 5.2: Duplicate the Halftone and Rotate" src="http://www.grandmasterb.com/wp-content/uploads/2008/07/step5_2-150x150.jpg" alt="Duplicate the Halfton and Rotate to the Left 45 Degrees" width="150" height="150" /></a><strong>Step 5.2 &#8211; Duplicate the halftone and twist</strong></p>
<p>Duplicate the halftone layer, rotate it another 45 degrees to the left and stretch it out a bit. After you&#8217;re happy with the shape and size change the opacity to 35%. Rename this layer to &#8216;Abstract2&#8242; and you should have something similar to what I have. Please note, you don&#8217;t have to be exact you can mess around with the positioning to achieve the desired effect. If you want you could even duplicate the first layer a second time and change some of the blend mode effects to grunge it up just a little bit more.</p>
<p><a href="http://www.grandmasterb.com/wp-content/uploads/2008/07/step5_3.jpg"><img class="alignleft size-thumbnail wp-image-257" title="Tutorial Step 5.3: Add the Radial Element" src="http://www.grandmasterb.com/wp-content/uploads/2008/07/step5_3-150x150.jpg" alt="Add the Radial Element" width="150" height="150" /></a><strong>Step 5.3 &#8211; Add the radial element</strong></p>
<p>Again, same as step 5.1 paste in the element as pixels and resize as needed, rename to &#8216;Radial&#8217;. After resizing it change the fill on the layer to 0% and add the following layer styles (Layer &gt; Add Layer Styles):</p>
<p><a title="Photoshop: Gradient Overlay" href="http://www.grandmasterb.com/wp-content/uploads/2008/07/step5_3_gradientoverlay.png">Gradient Overlay</a><br />
<a title="Photoshop: Stroke" href="http://www.grandmasterb.com/wp-content/uploads/2008/07/step5_3_stroke.png"> Stroke</a></p>
<p><a title="Photoshop: Stroke" href="http://www.grandmasterb.com/wp-content/uploads/2008/07/step5_3_stroke.png"> </a></p>
<p><a href="http://www.grandmasterb.com/wp-content/uploads/2008/07/step5_4.jpg"><img class="alignleft size-thumbnail wp-image-260" title="Tutorial Step 5.4: Add a Little Spatter" src="http://www.grandmasterb.com/wp-content/uploads/2008/07/step5_4-150x150.jpg" alt="Add a Little Spatter" width="150" height="150" /></a><strong>Step 5.4 &#8211; Add a little spatter</strong></p>
<p>This time I will use two separate elements to get achieve a more random looking effect. I&#8217;m going to paste in the spatter elements into Photoshop as &#8216;Vector Smart Objects&#8217; this time, because I will want to position them and transform them a few times on different layers. You can move them and transform them to the desired pattern you&#8217;re looking for. Make a new layer (above the radial), then make a selection of both layers by cmd/ctrl-clicking the first layer and then hold shift and select the second layer, and fill with black. Change the blend mode to Overlay and opacity to 60%, and rename the layer to &#8216;black.spatter&#8217;. You can then create another layer above this one, and resize the spatters again and rename to &#8216;white.spatter&#8217;. This time fill it with white, change the blend mode to soft light and the opacity to 80%.</p>
<p><a href="http://www.grandmasterb.com/wp-content/uploads/2008/07/step5_5.jpg"><img class="alignleft size-thumbnail wp-image-261" title="Tutorial Step 5.5: Add Some Flourishes and a Little Color" src="http://www.grandmasterb.com/wp-content/uploads/2008/07/step5_5-150x150.jpg" alt="Add Some Flourishes and a Little Color" width="150" height="150" /></a><strong>Step 5.5 &#8211; Some flourishes and a little more color</strong></p>
<p>Since the background is looking a bit monotone, it&#8217;s time to add some other elements and some color. With the last layer selected (the white spatter), create a new layer and name it &#8216;flourish1&#8242;. I&#8217;m going to drag in one of the flourishes from Arsenal Set 8 and place it in photoshop as &#8216;pixels&#8217;. I&#8217;ve rotated to the right and enlarged it, then once I was happy with it, pushed it up against the center guide and nudged it left 10px (shift-right arrow). The next step is to duplicate the layer and flip it horizontally (Edit &gt; Transform &gt; Flip Horizontal), once you&#8217;ve done that move it so the right side touches the center guide and nudge it to the left 10px (shift-left arrow). Merge the two layers together and change the fill to 0%. Go into your layer styles and add the following styles (Layers &gt; Layer Styles):</p>
<p><a title="Photoshop: Color Overlay" href="http://www.grandmasterb.com/wp-content/uploads/2008/07/step5_5_coloroverlay.png">Color Overlay (#345c34)</a><br />
<a title="Photoshop: Gradient Overlay" href="http://www.grandmasterb.com/wp-content/uploads/2008/07/step5_5_gradientoverlay.png">Gradient Overlay (#345c34 to White)</a><br />
<a title="Photoshop: Stroke" href="http://www.grandmasterb.com/wp-content/uploads/2008/07/step5_5_stroke.png">Stroke</a></p>
<p><a title="Photoshop: Stroke" href="http://www.grandmasterb.com/wp-content/uploads/2008/07/step5_5_stroke.png"> </a></p>
<p><a href="http://www.grandmasterb.com/wp-content/uploads/2008/07/step5_6.jpg"><img class="alignleft size-thumbnail wp-image-265" title="Tutorial Step 5.6: Add Another Set of Flourishes" src="http://www.grandmasterb.com/wp-content/uploads/2008/07/step5_6-150x150.jpg" alt="Add Another Set of Flourishes" width="150" height="150" /></a><strong>Step 5.6 &#8211; Another set of flourishes</strong></p>
<p>Paste in a different flourish and rename the layer to &#8216;flourish2&#8242;. Go ahead and resize it to fit your image. I&#8217;m fitting mine inside the bounding box, with the right side touching the guide and the left going over the center.  The idea is to make the flourishes appear as though they are coming out of the center of the radial pattern. Duplicate it, flip it horizontally and move it to the left, then merge the two layers. Change the fill to 0% and add the following layer styles:</p>
<p><a title="Photoshop: Color Overlay" href="http://www.grandmasterb.com/wp-content/uploads/2008/07/step5_6_coloroverlay.png">Color Overlay</a><br />
<a title="Photoshop: Outer Glow" href="http://www.grandmasterb.com/wp-content/uploads/2008/07/step5_6_outerglow.png">Outer Glow</a></p>
<p><a href="http://www.grandmasterb.com/wp-content/uploads/2008/07/step6.jpg"><br />
<img class="alignleft size-thumbnail wp-image-268" title="Tutorial Step 6: Build Out the Logo" src="http://www.grandmasterb.com/wp-content/uploads/2008/07/step6-150x150.jpg" alt="Add the Logo" width="150" height="150" /></a><strong>STEP SIX: BUILD OUT THE LOGO (Where&#8217;s the Leaf?)</strong></p>
<p>I snagged the &#8216;pot leaf&#8217; logo from Brands of the World and pasted it into Photoshop as a &#8216;Vector Smart Object&#8217;, resized it to fit and rotated it a bit off center. The original color of the logo is a very bright green and I&#8217;m not a big fan of the bright green so I&#8217;m going to change it to something darker. By adding the following layer styles I will be able to lift the logo off the background and give it some dimension:</p>
<p><a title="Photoshop: Drop Shadow" href="http://www.grandmasterb.com/wp-content/uploads/2008/07/step6_dropshadow.png">Drop Shadow<br />
</a><a title="Photoshop: Inner Glow" href="http://www.grandmasterb.com/wp-content/uploads/2008/07/step6_innerglow.png">Inner Glow<br />
</a><a title="Photoshop: Color Overlay" href="http://www.grandmasterb.com/wp-content/uploads/2008/07/step6_coloroverlay.png">Color Overlay<br />
</a><a title="Photoshop: Stroke" href="http://www.grandmasterb.com/wp-content/uploads/2008/07/step6_stroke.png">Stroke</a></p>
<p><span style="text-decoration: underline;"><a href="http://www.grandmasterb.com/wp-content/uploads/2008/07/step71.jpg"><br />
<img class="alignleft size-thumbnail wp-image-281" title="Tutorial Step 7: Add the Logo Text" src="http://www.grandmasterb.com/wp-content/uploads/2008/07/step71-150x150.jpg" alt="" width="150" height="150" /></a></span><strong>STEP SEVEN: ADD THE TEXT</strong></p>
<p>With the pot leaf layer selected grab your text tool and click in the center of the document and change the alignment to centered. After that type out your title, in this case &#8220;Rolling a Blog Joint&#8221;, leave the type black and change the Blend Mode to &#8220;Soft Light&#8221;. For this I&#8217;m using a grungy script font called <a title="DaFont: Hawaii Killer" href="http://www.dafont.com/hawaii-killer.font" target="_blank">Hawaii Killer</a>; which carriest over the grunge feel, but there was a problem. I found that the &#8220;B&#8221; in Blog was unreadable, so I changed the font to another free font called <a title="DaFont: Porcelain" href="http://www.dafont.com/porcelain.font" target="_blank">Porcelain</a>. I don&#8217;t normally recommend swapping out fonts, but in this case it worked out for the better.</p>
<p>Create a new layer beneath the type, and make a selection of the type layer (cmd/ctrl-click the layer). Expand the selection by 1px and fill with a light green (almost white), then add the following layer styles:<br />
<a title="Photoshop: Drop Shadow" href="http://www.grandmasterb.com/wp-content/uploads/2008/07/step7_dropshadow.png"> Drop Shadow</a><br />
<a title="Photoshop: Gradient Overlay" href="http://www.grandmasterb.com/wp-content/uploads/2008/07/step7_gradientoverlay.png"> Gradient Overlay</a><br />
<a title="Photoshop: Stroke" href="http://www.grandmasterb.com/wp-content/uploads/2008/07/step7_stroke.png"> Stroke</a></p>
<p><strong><a href="http://www.grandmasterb.com/wp-content/uploads/2008/07/step7_1.jpg"><br />
<img class="alignleft size-thumbnail wp-image-286" title="Tutorial Step 7.1: Adding more depth" src="http://www.grandmasterb.com/wp-content/uploads/2008/07/step7_1-150x150.jpg" alt="" width="150" height="150" /></a>Step 7.1 &#8211; Add a little more depth to the type</strong></p>
<p>Move the text to center it in the box and that&#8217;s it for the text. Once you have the text centered, duplicate the type layer, change the fill color to #345c34, change the Blend Mode to &#8220;Color Burn, the opacity to 50%. This will make the type pop off the screen a little bit more, to make it really pop though we&#8217;ll add the following layer style to give it some extra kick.</p>
<p><a title="Photoshop: Gradient Overlay" href="http://www.grandmasterb.com/wp-content/uploads/2008/07/step7_1_gradientoverlay.png">Gradient Overlay (black to 6a6a6a to black)</a></p>
<p><strong><a href="http://www.grandmasterb.com/wp-content/uploads/2008/07/step8.jpg"><img class="alignleft size-thumbnail wp-image-288" title="Tutorial Step 8: Final Touches" src="http://www.grandmasterb.com/wp-content/uploads/2008/07/step8-150x150.jpg" alt="Adding some final touches and details" width="150" height="150" /></a>STEP EIGHT: FINAL TOUCHES</strong></p>
<p>This step is purely optional, but I think it makes a cool effect. Remember that transparent layer we left way back in step one? Here&#8217;s where it comes into play&#8230;we&#8217;re going to fill it with a light shade of green (#94c294) to get a mix of colors. Then with the base layer selected add a layer mask and grab the gradient tool set to: radial and black to transparent. Then start making gradients around the bottom to reveal the green layer underneath. Once you have something you like&#8230;that&#8217;s it. You can add different colors or gradients to your liking&#8230;it&#8217;s all up to you.</p>
<p>Once you have something similar to the final image go ahead and crop it down and save it for the web. I hope you&#8217;ve enjoyed this original tutorial by GrandmasterB. If you&#8217;d like to check out tutorials in the future subscribe to the feed&#8230;you won&#8217;t be disappointed. Also, I&#8217;m going to start a new Question and Answers feature to address all of your burning graphic design questions in the near future&#8230;you won&#8217;t want to miss it.</p>
<p>~ GrandmasterB</p>
<p>This copyrighted tutorial was originally published at <a href="http://www.grandmasterb.com/tutorials">GrandmasterB.com</a> on 07/22/2008</p>
]]></content:encoded>
			<wfw:commentRss>http://www.grandmasterb.com/photoshop-tutorial-grunge-styled-banner/feed/</wfw:commentRss>
		<slash:comments>39</slash:comments>
		</item>
		<item>
		<title>Advanced Photoshop Magazine</title>
		<link>http://www.grandmasterb.com/advanced-photoshop-magazine/</link>
		<comments>http://www.grandmasterb.com/advanced-photoshop-magazine/#comments</comments>
		<pubDate>Sat, 28 Jun 2008 04:44:14 +0000</pubDate>
		<dc:creator>GrandmasterB</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Advanced Photoshop]]></category>
		<category><![CDATA[Go Media]]></category>
		<category><![CDATA[Photoshop Tutorials]]></category>

		<guid isPermaLink="false">http://www.grandmasterb.com/?p=199</guid>
		<description><![CDATA[I am usually not too big on picking up graphic design magazines, because a lot of times they&#8217;re really not worth the price you pay. Another reason is that for some reason American magazine publishers don&#8217;t seem to put many out, that are very helpful. After seeing that one of my favorite design houses, Go [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.advancedphotoshop.co.uk/"><img class="alignleft size-full wp-image-200" title="Advanced Photoshop Magazine" src="http://www.grandmasterb.com/wp-content/uploads/2008/06/advanced_photoshop1.png" alt="" width="200" height="303" /></a>I am usually not too big on picking up graphic design magazines, because a lot of times they&#8217;re really not worth the price you pay. Another reason is that for some reason American magazine publishers don&#8217;t seem to put many out, that are very helpful. After seeing that one of my favorite design houses, <a title="Go Media - Advanced Photoshop Feature" href="http://www.gomediazine.com/press/media-featured-advanced-photoshop-magazine/" target="_blank">Go Media was being featured</a> in the latest issue of <a title="Advanced Photoshop Magazine" href="http://www.advancedphotoshop.co.uk/" target="_blank">Advanced Photoshop Magazine</a> I figured I would check it out.</p>
<p>I went over to the local Borders bookstore and after walking around the store for ten minutes (it&#8217;s a new store and it&#8217;s huge), I finally found the magazine rack. My first impression of the magazine was that it&#8217;s designed well and definitely gets the readers attention with the bright cover art. The other thing that caught my attention was the sticker price. Each issue of the magazine runs <strong>£6.00</strong>, but with the markup and the exchange rate it was <strong>$15.50 USD</strong>. I immediately thought &#8220;this magazine is going back on the rack for the next sucker&#8221;, but I figured it wouldn&#8217;t hurt to give it a free browse in store.</p>
<p><span id="more-199"></span></p>
<p>I was definitely impressed by the contents of the magazine and the quality of the articles, but the tutorials are probably some of the best that I&#8217;ve ever seen. Each of the tutorials is extremely in-depth and very detailed, so much so that you can understand why the magazine is titled &#8220;<em>Advanced Photoshop</em>&#8220;. After giving it a once over I noticed that it comes with a CD loaded with all of the necessary files for each tutorial, along with a few bonus items. AHA! This $15 price tag isn&#8217;t looking too bad after all, so I figured I&#8217;d pick it up. </p>
<p>I haven&#8217;t tried any of the tutorials out yet, because I bought it on my lunch break. I have thumbed through the mag about five times though and read a few of the articles. If time permits, I&#8217;ll see if I can work out one of the less intense tutorials and let you all know how it goes. If you&#8217;re a Photoshop nut like me, you should definitely pick up the magazine or just give it a look at your local bookstore.</p>
<p>One other quick thing before I close out, you can download the tutorial files from the Advanced Photoshop website without purchasing the magazine, but unfortunately there isn&#8217;t a PDF or text file with the instructions for the tutorial. They are great resources to have on hand though&#8230;check &#8216;em out.</p>
<p>~ GrandmasterB</p>
]]></content:encoded>
			<wfw:commentRss>http://www.grandmasterb.com/advanced-photoshop-magazine/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Photoshop Tutorial: Custom RSS Feed Icons</title>
		<link>http://www.grandmasterb.com/photoshop-tutorial-custom-rss-feed-icons/</link>
		<comments>http://www.grandmasterb.com/photoshop-tutorial-custom-rss-feed-icons/#comments</comments>
		<pubDate>Sat, 14 Jun 2008 13:00:45 +0000</pubDate>
		<dc:creator>GrandmasterB</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Custom RSS Icons]]></category>
		<category><![CDATA[Google Images]]></category>
		<category><![CDATA[Jason Boom]]></category>
		<category><![CDATA[Photoshop Tutorials]]></category>

		<guid isPermaLink="false">http://www.grandmasterb.com/?p=158</guid>
		<description><![CDATA[If there&#8217;s one thing that I am a big proponent of it is customization&#8230;just take a look at my theme! I took the Milk-It Theme that was popularized by one of the better-known Making Money Online gurus and spun it into something of my own creation. I took that same approach when I created the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.grandmasterb.com/wp-content/uploads/2008/06/rss_icons.png"><img class="aligncenter size-full wp-image-163" title="custom rss icons" src="http://www.grandmasterb.com/wp-content/uploads/2008/06/rss_icons.png" alt="" width="500" height="230" /></a>If there&#8217;s one thing that I am a big proponent of it is customization&#8230;just take a look at my theme! I took the Milk-It Theme that was popularized by one of the better-known Making Money Online gurus and spun it into something of my own creation. I took that same approach when I created the RSS Feed Icon for the site. I didn&#8217;t want something that looked like it was pulled off the shelf and slapped on the site&#8230;I wanted something that was custom that carried the design of GrandmasterB. So, how did I do it? Well, I&#8217;m not a magician so I guess I am going to let this little secret out of the bag. I took the great source files from <a title="RSS Feed Icons" href="http://www.feedicons.com" target="_blank">Feed Icons</a> and morphed it into something of my own.</p>
<p><span id="more-158"></span></p>
<p>I&#8217;m going to show you two ways to make your Feed Icons custom. What you will need for this tutorial:</p>
<ul>
<li><a title="Feed Icons Dev Kit" href="http://www.feedicons.com/downloads/feedicons-devkit.zip" target="_blank">Feed Icons Dev Kit</a></li>
<li>Adobe Photoshop (of course)</li>
</ul>
<h4>BASIC CUSTOMIZATION</h4>
<p><a href="http://www.grandmasterb.com/wp-content/uploads/2008/06/feed-icon-128x128.png"><img class="alignleft size-full wp-image-164" title="feed-icon-128x128" src="http://www.grandmasterb.com/wp-content/uploads/2008/06/feed-icon-128x128.png" alt="" width="128" height="128" /></a>Unzip the Dev Kit and take a look inside, there are multiple sizes of the default orange and white rss feed icon as well as a folder full of grayscale versions. For this part of the tutorial go ahead and open one of the grayscale versions; I have opened the 128 x 128 pixel version (feed-icon-128&#215;128.psd) in Photoshop.</p>
<p>To add some color to this icon and make it your own will take you literally one step. It&#8217;s not flashy and is very simple, but it is customized to your liking and that&#8217;s what counts.</p>
<p><a href="http://www.grandmasterb.com/wp-content/uploads/2008/06/feed-icon-green.png"><img class="alignleft size-medium wp-image-165" title="feed-icon-green" src="http://www.grandmasterb.com/wp-content/uploads/2008/06/feed-icon-green.png" alt="" width="128" height="128" /></a><strong>STEP ONE (and only one) &#8211; Add Some Color</strong><br />
Simply go to the layers palette and click on &#8220;Add Layer Style&#8221; and choose Color Overlay. Change your Blend Mode to &#8220;Color&#8221; and choose a color to your liking that is &#8220;web safe&#8221;. Once you&#8217;ve got it click OK and you&#8217;ve just customized your RSS Feed Icon. Of course when you&#8217;ve finished be sure to &#8220;Save for Web&#8221; in the format of your choice.</p>
<p>As I stated this is very basic customization of the feed icon and doesn&#8217;t use a much (if any) creativity. So, how do you make something completely unique similar to the GrandmasterB Feed Icon&#8230;lemme show ya.</p>
<h4>ADVANCED CUSTOMIZATION &#8211; GLASSY ICON</h4>
<p><a href="http://www.grandmasterb.com/wp-content/uploads/2008/06/gmbfeed-icon-128x128.png"><img class="alignleft size-full wp-image-170" title="gmbfeed-icon-128x128" src="http://www.grandmasterb.com/wp-content/uploads/2008/06/gmbfeed-icon-128x128.png" alt="" width="128" height="128" /></a>The cool thing about these feed icons is that there are Illustrator versions included in the Dev Kit. I&#8217;m not going to dive into using the Illustrator files, but if you want to do some experimenting they are available. For this advanced version of the tutorial, I will use the supplied Photoshop file (link below) that has a few extras enclosed. For those of you that didn&#8217;t get the free vector starbursts from the <a title="Killer Metallic Text Tutorial - Part One" href="http://www.grandmasterb.com/photoshop-tutorial-how-to-create-killer-metallic-text-part-1/" target="_self">Killer Metallic Text Tutorial</a>; you get a second chance by downloading this Photoshop file.</p>
<p>What you will need for this tutorial:</p>
<ul>
<li>Download the <a title="GMB Feed Icon 128 x 128" href="http://www.grandmasterb.com/wp-content/uploads/2008/06/GMBfeed-icon-128x128.psd" target="_blank">GMBfeed-icon-128&#215;128.psd<br />
</a></li>
<li>Adobe Photoshop (of course)</li>
</ul>
<p><strong><span style="text-decoration: underline;"><a href="http://www.grandmasterb.com/wp-content/uploads/2008/06/feedicon_step1.png"><img class="alignleft size-full wp-image-172" title="feedicon_step1" src="http://www.grandmasterb.com/wp-content/uploads/2008/06/feedicon_step1.png" alt="" width="128" height="128" /></a></span>STEP ONE &#8211; Getting Started</strong><br />
If you haven&#8217;t done so already, download the required Photoshop file and open it. You&#8217;ll see that the grayscale version of the Feed Icon is included as well as two other layers which are hidden. To start out go ahead and turn off the visibility on the &#8220;feed icon&#8221; layer. We won&#8217;t need it for this tutorial, but I included it in case you wanted it. Now that we have nothing visible and a blank canvas turn on your guides (cmd-; or ctrl-;). Next with the &#8220;feed icon&#8221; layer selected create a new layer and name it &#8220;base&#8221;. Reset your colors to black and white (d)</p>
<p>Now, lets get something on that blank canvas. Grab your &#8220;rounded rectangle tool&#8221; and set your corner radius to 10px. Starting at the center of the canvas start dragging out your shape; once you see that it&#8217;s drawing hold down the Alt+Shift keys to drag the shape out from center and keep it uniform. Stop just short of filling the entire canvas. We will need space outside the shape for the next step. When you&#8217;re done you&#8217;ll have a shape like above.</p>
<p><strong><a href="http://www.grandmasterb.com/wp-content/uploads/2008/06/feedicon_step2.png"><img class="alignleft size-full wp-image-173" title="feedicon_step2" src="http://www.grandmasterb.com/wp-content/uploads/2008/06/feedicon_step2.png" alt="" width="128" height="128" /></a>STEP TWO &#8211; Add Layer Style to Base</strong><br />
This step is going to give the ugly black box we created in STEP ONE some style. Once this step is done, we&#8217;ll have the beginnings of a decent looking icon. Everything is built off this layer and you can customize the colors how you like. I&#8217;m going with RED, but you can make whatever color you like. With the &#8220;base&#8221; layer selected choose &#8220;add layer style&#8221; at the bottom of the layers palette. Add the following settings for each style, remember the color is up to you.</p>
<ul>
<li><a title="Step 2 Outer Glow" href="http://www.grandmasterb.com/wp-content/uploads/2008/06/step2_outerglow.png" target="_blank">Outer Glow</a></li>
<li><a title="Step 2 Inner Glow" href="http://www.grandmasterb.com/wp-content/uploads/2008/06/step2_innerglow.png" target="_blank">Inner Glow</a></li>
<li><a title="Step 2 Gradient Overlay" href="http://www.grandmasterb.com/wp-content/uploads/2008/06/step2_gradientoverlay.png" target="_blank">Gradient Overlay</a></li>
<li><a title="Step 2 Stroke" href="http://www.grandmasterb.com/wp-content/uploads/2008/06/step2_stroke.png" target="_blank">Stroke</a></li>
</ul>
<p><strong><a href="http://www.grandmasterb.com/wp-content/uploads/2008/06/feedicon_step3.png"><img class="alignleft size-full wp-image-174" title="feedicon_step3" src="http://www.grandmasterb.com/wp-content/uploads/2008/06/feedicon_step3.png" alt="" width="128" height="128" /></a>STEP THREE &#8211; Add Starburst</strong><br />
The &#8220;starburst&#8221; is one of the included layers within the Photoshop file. Now that we are at this step go ahead and turn on the layer visibility. It&#8217;s not very impressive is it? Well, lets change that! Double-click the color selector and change it to a darker version of your chosen color. Since I chose to use red, I&#8217;m using a fill color of #390808. Once you have your color chosen, change the layer Blend Mode to Color Dodge and the Opacity to 50%. As you can see the starburst is still visible outside the &#8220;base&#8221; layer. To fix that small issue we will make a selection of the &#8220;base&#8221; layer (cmd-click or ctrl-click the layer) and with the starburst layer selected choose &#8220;Create Layer Mask&#8221;. Now the starburst is contained within the borders of the base layer.</p>
<p><strong><a href="http://www.grandmasterb.com/wp-content/uploads/2008/06/feedicon_step4.png"><img class="alignleft size-full wp-image-175" title="feedicon_step4" src="http://www.grandmasterb.com/wp-content/uploads/2008/06/feedicon_step4.png" alt="" width="128" height="128" /></a>STEP FOUR &#8211; RSS Feed Icon Detail</strong><br />
From here we will turn on the last of the included layers &#8220;rss.icon.detail&#8221;. I&#8217;ve included this layer as a &#8220;vector smart object&#8221;, so that you could resize it without losing any of the details. If this layer were made of pixels (same with the starburst layer) and you resized it multiple times it would distort and look like garbage. Once the &#8220;rss.icon.detail&#8221; layer is on we&#8217;ll add the following layer styles to give it some pop.</p>
<ul>
<li><a title="Step 4 Inner Glow" href="http://www.grandmasterb.com/wp-content/uploads/2008/06/step4_innerglow.png" target="_blank">Inner Glow</a></li>
<li><a title="Step 4 Gradient Overlay" href="http://www.grandmasterb.com/wp-content/uploads/2008/06/step4_gradientoverlay.png" target="_blank">Gradient Overlay</a></li>
</ul>
<p>I chose to give this layer a metallic feel, but you can change it to appear however you like. It&#8217;s all a matter of preference.</p>
<p><strong><a href="http://www.grandmasterb.com/wp-content/uploads/2008/06/feedicon_step5.png"><img class="alignleft size-full wp-image-176" title="feedicon_step5" src="http://www.grandmasterb.com/wp-content/uploads/2008/06/feedicon_step5.png" alt="" width="128" height="128" /></a>STEP FIVE &#8211; Add Some Shading</strong><br />
This step and the next will both be built on layers above the &#8220;rss.icon.detail&#8221; layer, so we&#8217;ll start by creating a new layer above it and rename it to &#8220;shading&#8221;. Make sure your colors are reset to black/white, if not go ahead and reset them now (d). Make a selection of the &#8220;base&#8221; layer and grab the gradient tool. We&#8217;re going to create a linear gradient and set it to &#8220;foreground to transparent&#8221;. Draw a gradient starting at the top of the icon down to the middle and another starting at the bottom up to the middle. When you&#8217;re satisfied with your gradients change the Layer Opacity to 50%. NOTE: Don&#8217;t deselect your selection&#8230;you&#8217;ll need it in STEP SIX.</p>
<p><a href="http://www.grandmasterb.com/wp-content/uploads/2008/06/gmbfeed-icon-128x128.png"><img class="alignleft size-full wp-image-170" title="gmbfeed-icon-128x128" src="http://www.grandmasterb.com/wp-content/uploads/2008/06/gmbfeed-icon-128x128.png" alt="" width="128" height="128" /></a><strong>STEP SIX &#8211; Make It Glassy</strong><br />
Create a new layer above &#8220;shading&#8221; and rename it &#8220;glass&#8221;. Grab the elliptical marquee tool and starting at the top right corner (outside the canvas); hold down ALT+SHIFT (cross-hair will have an x below it) and drag out a selection. You should have a selection that resembles this image: <a title="Step 6 Marquee" href="http://www.grandmasterb.com/wp-content/uploads/2008/06/step6_marquee.png" target="_blank">step6_marquee.png</a></p>
<p>Grab the gradient tool and flip the colors to white/black (x). Starting at the bottom of the canvas drag the gradient up to the top of the canvas. If done correctly you&#8217;ll get a smooth transparent gradient that looks glassy. Deselect and you&#8217;re finished!</p>
<p>I hope that you have enjoyed this set of tutorials teaching you how to customize your own RSS Feed Icons. As you have seen there are quick, easy ways to make a custom icon and there are more advanced methods. These two options are just the tip of the iceberg though; I have seen a ton of custom Feed Icons all over the Internet and each one has it&#8217;s own unique shape, style and flare. One of my favorites has to be the Bomb Icon that <a title="Jason Boom" href="http://www.jasonboom.com" target="_blank">Jason Boom</a> uses for his feed. I&#8217;m sure there&#8217;s some repository of Feed Icons on display somewhere around the Internet&#8230;until you run into it though check out <a title="RSS Feed Icons - Google Images" href="http://images.google.com/images?client=safari&amp;rls=en-us&amp;q=feed%20icons&amp;ie=UTF-8&amp;oe=UTF-8&amp;um=1&amp;sa=N&amp;tab=wi" target="_blank">Google Images</a> for ideas. Speaking of Feeds if you enjoyed this tutorial and want to see more in the future; subscribe to get <a title="GrandmasterB Feed" href="http://feeds.feedburner.com/Grandmasterbcom" target="_blank">GrandmasterB</a> in your feed reader.</p>
<p>~ GrandmasterB</p>
<p>This copyrighted tutorial was originally published at <a href="http://www.grandmasterb.com/tutorials">GrandmasterB.com</a> on 06/14/2008</p>
]]></content:encoded>
			<wfw:commentRss>http://www.grandmasterb.com/photoshop-tutorial-custom-rss-feed-icons/feed/</wfw:commentRss>
		<slash:comments>49</slash:comments>
		</item>
	</channel>
</rss>
