<?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> &#187; Art</title>
	<atom:link href="http://blogcraving.com/category/art/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogcraving.com</link>
	<description>What&#039;s your craving?</description>
	<lastBuildDate>Fri, 23 Mar 2012 05:03:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Customizing WordPress: Don&#8217;t Reinvent the Wheel</title>
		<link>http://blogcraving.com/customizing-wordpress-reinvent-wheel/</link>
		<comments>http://blogcraving.com/customizing-wordpress-reinvent-wheel/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 19:32:06 +0000</pubDate>
		<dc:creator>Travis Lusk</dc:creator>
				<category><![CDATA[How to...]]></category>
		<category><![CDATA[Layout]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://blogcraving.com/?p=733</guid>
		<description><![CDATA[The greatest single feature of WordPress is how easily it can be customized.  As a matter of fact, you&#8217;ve probably been on websites that you did not even realize were powered by WordPress. WP is much more than a blogging platform.  It can be a full-blown CMS.  All it takes is some elbow grease. With [...]]]></description>
			<content:encoded><![CDATA[<p>The greatest single feature of WordPress is how easily it can be customized.  As a matter of fact, you&#8217;ve probably been on websites that you did not even realize were powered by WordPress.</p>
<p>WP is much more than a blogging platform.  It can be a full-blown CMS.  All it takes is some elbow grease.</p>
<p>With that in mind, the other great thing about WordPress is open-source coding.</p>
<p>I&#8217;ll go out on a limb and say that 90% of the functions, designs, and layouts you want for your WordPress site already exist somewhere else.  If you want it, chances are that someone has already made it happen.</p>
<p>When creating your template, do not reinvent the wheel.</p>
<p>My advice is to <a href="http://blogcraving.com/blog-templates/">find a prebuilt template</a> that accomplishes the majority of what you want on your site.  It does not have to be exactly what you want, just somewhat in the neighborhood.</p>
<p>Get that template in your hands (either paid or free), and use it as your &#8220;launch pad.&#8221;<span id="more-733"></span></p>
<p>Next, go out and find the missing elements that you want.  Perhaps there&#8217;s a cool way of displaying author information in your WordPress posts, or a snazzy photo gallery function.  Just go out there and find it.</p>
<p>Then try to figure out how it was built.</p>
<p>If the template was built by a design shop, head over to that shop and see if you can buy the template.</p>
<p>You can also head over to the <a title="Wordpress support forums" href="http://wordpress.org/support/">WordPress support forums</a>.  They are free and can often tell you exactly how to achieve a certain function.</p>
<p>Take those cherry picked items back to your site and incorporate them into the template you previously purchased.  Often, it is as easy as copy/pasting some code and doing some light weight CSS work.</p>
<p>That should cover 90% of your design needs right there.  The remaining 10% will be what you have to build out from scratch.</p>
<p>Instead of building 80% or 100% of your template by hand, you&#8217;ve just cut the workload drastically.  Now you can focus your energy on those totally unique customizations instead of stuff that has been built 100 times over by other developers.</p>
<p>If you have taken the plunge and hired developer to help you, the same exercise will come in handy.  Get out there and look for the things that you want to have on your site.  Find designs you like.  Share all of this information with your developer, and it will make their life easier.  You will get what you are looking for much quicker if the developer has samples to work from.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogcraving.com/customizing-wordpress-reinvent-wheel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Make Your Own WordPress [Shortcode]</title>
		<link>http://blogcraving.com/wordpress-shortcode/</link>
		<comments>http://blogcraving.com/wordpress-shortcode/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 05:41:34 +0000</pubDate>
		<dc:creator>Travis Lusk</dc:creator>
				<category><![CDATA[How to...]]></category>
		<category><![CDATA[Layout]]></category>

		<guid isPermaLink="false">http://blogcraving.com/?p=631</guid>
		<description><![CDATA[Making your own custom Wordpress shortcode is actually very easy to do.  All you need to do is add a little bit of code to your site to generate a new Wordpress shortcode.]]></description>
			<content:encoded><![CDATA[<p>Making your own custom WordPress shortcode is actually very easy to do.  All you need to do is add a little bit of code to your site to generate a new WordPress shortcode.</p>
<p>Everyone loves the convenience of shortcodes such as the built in WordPress gallery shortcode.  All you do is put [shortcodehere] into your post, and the gallery shows up</p>
<p>You may have used some plugins that implement their own custom shortcodes as well.  For example, if you want a poll in your post, your plugin may just tell you to throw something like this in your post:</p>
<p>[poll id=43]</p>
<p>That tells your blog to go get poll number 43 and place it into the post with all the proper formatting.<span id="more-631"></span></p>
<h3>What if you wanted to make your own custom shortcode?</h3>
<p>Easy enough.  For the sake of this example, lets say that you wanted to put a 300&#215;250 square banner ad in the body of your post.  You don&#8217;t always need this ad unit, so you would like to have the ability to just place it in the occasional post or page quickly and easily without having to remember all of the code.</p>
<p>When all is said and done, all you want to do is add <code>[square_ad]</code> to your post, and your custom shortcode will handle the rest.</p>
<p>Here&#8217;s what you do.</p>
<p><strong>STEP 1:</strong></p>
<p>Locate your functions.php file in your themes folder.  If you do not have a functions.php file, just go ahead and make one.</p>
<p><strong>STEP 2:</strong></p>
<p>Paste this code into your functions.php file:</p>
<pre class="php">function post_ad() { 

return '&lt;center&gt;YOUR AD SERVER CODE GOES HERE&lt;/center&gt;';

 }

add_shortcode('square_ad', 'post_ad');</pre>
<p>Right there on line 3, you can see where I have labeled where to drop you ad code.  So just take your Google Adsense code or other third party serving code ane place it in there.</p>
<p>Review the code parts.</p>
<pre class="php">function post_ad() {</pre>
<p>In this first line of code, we are naming the function itself.  This is not necessarily the name of the short code, but a way to reference the function.  The post_ad part is the name.  Call it whatever you want.</p>
<pre class="php">return 'YOUR AD SERVER CODE GOES HERE';</pre>
<p>This is the important part.  This is your third party ad code.  However, it could be anything.</p>
<p>It could be a 3rd party script, a photo, or any other HTML that you want displayed.</p>
<p>If you do not want your item centered, no problem.  Just remove the center tag parts.</p>
<p>Lastly, there is this bit of code.</p>
<pre class="php">add_shortcode('square_ad', 'post_ad');</pre>
<p>The &#8216;square_ad&#8217; part is where you actually get to come up with the shortcode to use.  In this case, we would write <code>[square_ad]</code> anywhere on the page that we want this to show up.</p>
<p>The <code>post_ad</code> part is referencing back to the name of the function from a couple steps prior.  This name should match the name of the function.</p>
<h3>Finishing up.</h3>
<p><strong>Step 3:</strong></p>
<p>That&#8217;s pretty much it!  Pop that code into your functions.php file and upload the file.  On your next post, you should be able to just add your new shortcode to your post.</p>
<p>That&#8217;s it!  Give it a test drive to see how it goes.  It should work out for you nicely.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogcraving.com/wordpress-shortcode/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Got Speed? The Problem with Slow Loading Blogs</title>
		<link>http://blogcraving.com/speed-problem-slow-loading-blogs/</link>
		<comments>http://blogcraving.com/speed-problem-slow-loading-blogs/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 07:15:39 +0000</pubDate>
		<dc:creator>Travis Lusk</dc:creator>
				<category><![CDATA[How to...]]></category>
		<category><![CDATA[Layout]]></category>
		<category><![CDATA[Strategy]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Theme Optimization]]></category>
		<category><![CDATA[Thesis]]></category>

		<guid isPermaLink="false">http://blogcraving.com/?p=580</guid>
		<description><![CDATA[If you are not the tech savvy type, I'd be willing to bet your site loads slower than it should.  Most amateur bloggers (and some professional ones) are not very good developers.  Here's where I would normally make the case for hiring a firm like BlogCraving to handle these things for you, but this time I will spare you.

Let's just jump right to the point and find out if your site is a load hog.]]></description>
			<content:encoded><![CDATA[<p>Does your blog load slowly?  C&#8217;mon.  Be honest&#8230;we&#8217;re all friends here.</p>
<p>If you are not the tech savvy type, I&#8217;d be willing to bet your site loads slower than it should.  Most amateur bloggers (and some professional ones) are not very good developers.  Here&#8217;s where I would normally make the case for hiring a firm like BlogCraving to handle these things for you, but this time I will spare you.</p>
<p>Let&#8217;s just jump right to the point and find out if your site is a load hog.</p>
<h2>The speed test</h2>
<p>Head on over to <a href="http://tools.pingdom.com">tools.pingdom.com</a>.  This site will tell you definitively how fast your site loads.  All you have to do is put in your website&#8217;s URL and run the test.  It will show you the load time for every single element on your site.</p>
<p><img class="alignnone size-medium wp-image-581" title="Pingdom Tools" src="http://blogcraving.com/wp-content/uploads/2010/01/Pingdom_Tools-480x142.jpg" alt="Pingdom Tools 480x142 Got Speed? The Problem with Slow Loading Blogs" width="480" height="142" /></p>
<p>Then, just scroll down to the very bottom of the report to see the total load time for your site.  <span id="more-580"></span></p>
<p><img class="alignnone size-full wp-image-582" title="Pingdom Tools Load Time" src="http://blogcraving.com/wp-content/uploads/2010/01/Pingdom_Tools_Load_Time.jpeg" alt=" Got Speed? The Problem with Slow Loading Blogs" width="401" height="424" /></p>
<h2>How did you score?</h2>
<p>Don&#8217;t be shy.  Was it a big number?  If you are like a lot of blogs out there, you are probably right around 8 to 15 seconds.  It may not seem like much, but that is dog slow.  And if you are over that, yikes.</p>
<p>Ideally, you want to be under 5 seconds.  That shows a snappy site that people will be likely to enjoy (from a technical experience perspective).</p>
<p>Sites that load quickly have proven to receive much higher pageviews than slow sites.  That&#8217;s because users are more likely to click around on a site that loads fast.  Most users will not go on to page 3 or the 4th photo in your gallery if each page takes over 10 seconds to load.  It just become less and less enjoyable with each click no matter how good the content.</p>
<h2>What do you do?</h2>
<p>The answer to this question is an entire series of posts that we will get into in the coming days.  In the mean time, I&#8217;ll give you some tips.</p>
<ol>
<li><strong>Optimize those post images. </strong> You should really spend some time learning how to optimize your images for web publishing before you even upload them into WordPress (or your blog platform).  Lots of heavy images will surely kill your load time.  The Pingdom tool above will help you identify those big images.  Try Photoshop, Picasa, or even <a href="http://www.smushit.com/ysmush.it/">free services like SmushIt</a>.</li>
<li><strong>Cut back on external scripts and calls. </strong> We all know those free little add-on widgets are lots of fun to put on your site.  So are all those snazzy social media buttons.  Unfortunately, they can add a lot of load time because of all the external callouts they make.  The files/scripts themselves might even be a bit &#8220;beefy&#8221;.   Again, Pingdom will help you identify those problem services.  Once you know what they are, ask yourself how essential they really are and get rid of them.</li>
<li><strong>Is it your host? </strong> Most basic blogs are hosted on shared hosting.  In other words, you share a single server with a bunch of strangers.  You have no idea who else is on that server with you and what kind of resource they are drawing.  Your host may have certain throttle points in place to scale down resource hogs.  Maybe you&#8217;re super hot site is one of the sites drawing too much.  If that&#8217;s the case, it may be time to look into <a href="http://blogcraving.com/preferred-hosting-blog-solutions/">alternative hosting solutions</a> (this is a good problem to have because it shows that you are growing).</li>
<li> <strong>Dude, your theme is lame. </strong> It might be time to face the ugly truth that your site&#8217;s theme just isn&#8217;t that great.  Most free themes are free because they are not that great.  They may have some sloppy coding or CSS in them that do not make them scalable for growing sites.  They&#8217;ll serve you well to start, but as you become a bigger deal, your theme may end up holding you back.   If you&#8217;ve got some serious load time issues, I highly suggest you run (not walk) to <a href="http://blogcraving.com/thesis">check out the WordPress Thesis Theme</a>.  It is incredibly fast loading, easy to customize even for non technical types, and has great SEO features. More and more sites are headed to Thesis because of how well it performs.  It comes out of the box pretty plain, but you can quickly make it much more visually appealing.</li>
</ol>
<p>Over the next few days, we will take a deep dive into some of these optimization techniques as well as discuss things like Cloud Hosting, CDN&#8217;s, template optimization, and a lot more.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogcraving.com/speed-problem-slow-loading-blogs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Convert PSD to WordPress Template</title>
		<link>http://blogcraving.com/convert-psd-wordpress-template/</link>
		<comments>http://blogcraving.com/convert-psd-wordpress-template/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 01:32:22 +0000</pubDate>
		<dc:creator>Travis Lusk</dc:creator>
				<category><![CDATA[How to...]]></category>
		<category><![CDATA[Layout]]></category>
		<category><![CDATA[How]]></category>
		<category><![CDATA[PSD]]></category>
		<category><![CDATA[Templates]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blogcraving.com/?p=373</guid>
		<description><![CDATA[Have you ever tried to look for step by step instructions or a quick tutorial on how to convert a PSD file into a fully functioning WordPress theme or template? Our BlogCraving eBook will provide you with an illustrated guide in full color on how to create your very own WordPress theme.  Whether you already [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-383 aligncenter" title="Screenshot Converting PSD to WordPress Theme Template" src="http://bcimg1.s3.amazonaws.com/wp-content/uploads/2009/07/screenshot_convert_psd_to_wordpress_theme.jpg" alt="screenshot convert psd to wordpress theme How To Convert PSD to Wordpress Template" width="500" height="280" /></p>
<p>Have you ever tried to look for step by step instructions or a quick tutorial on how to convert a PSD file into a fully functioning WordPress theme or template?</p>
<p>Our BlogCraving eBook will provide you with an illustrated guide in full color on how to create your very own WordPress theme.  Whether you already have a PSD design or plan to make one in the future, this eBook will show you how to get it converted into a WordPress theme quickly and easily.</p>
<h3>Update</h3>
<p>This eBook is now completely free!  Visit our new instructions page on <a title="Free PSD to WordPress Conversion Instructions" href="http://blogcraving.com/free-psd-wordpress-conversion-tutorial/">how to convert a PSD file into a WordPress Theme Template with illustrations</a>.</p>
<p>Now you can convert your own template designs into WordPress templates for free. Just follow these simple instructions.  This popular eBook used to be $1.99 and is now completely free.  <a title="Free PSD to WordPress Conversion Instructions" href="http://blogcraving.com/free-psd-wordpress-conversion-tutorial/">Check it out for yourself today</a>.  No sign up, no charges, just completely free.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogcraving.com/convert-psd-wordpress-template/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Keep it Simple</title>
		<link>http://blogcraving.com/blog-navigation-click/</link>
		<comments>http://blogcraving.com/blog-navigation-click/#comments</comments>
		<pubDate>Tue, 13 May 2008 03:59:38 +0000</pubDate>
		<dc:creator>Travis Lusk</dc:creator>
				<category><![CDATA[Layout]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[usability improvements]]></category>

		<guid isPermaLink="false">http://www.icastlimited.com/?p=99</guid>
		<description><![CDATA[Keep your blog layout as simple as possible.  Make it easy for your users to do exactly what they want to do with as few clicks as possible.]]></description>
			<content:encoded><![CDATA[<p>Keep your blog layout as simple as possible.  Make it easy for your users to do exactly what they want to do with as few clicks as possible.</p>
<p><a href="http://blogcraving.com/blog-navigation-click/"><em>Click here to view the embedded video.</em></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogcraving.com/blog-navigation-click/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Test Your Site with Other Internet Browsers</title>
		<link>http://blogcraving.com/test-your-site-with-other-internet-browsers/</link>
		<comments>http://blogcraving.com/test-your-site-with-other-internet-browsers/#comments</comments>
		<pubDate>Tue, 06 May 2008 03:50:43 +0000</pubDate>
		<dc:creator>Travis Lusk</dc:creator>
				<category><![CDATA[Layout]]></category>
		<category><![CDATA[blog template]]></category>
		<category><![CDATA[compatibility issues]]></category>
		<category><![CDATA[cross browser compatibility]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[internet browsers]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[operating system]]></category>

		<guid isPermaLink="false">http://www.icastlimited.com/?p=97</guid>
		<description><![CDATA[Once you really get into customizing your blog template, look, design, and functions, you may run into some cross browser compatibility issues.  What does that mean? Basically, your site may not look the same in Internet Explorer as it does in Mozilla.  Your site may not look the same on a PC as it does [...]]]></description>
			<content:encoded><![CDATA[<p>Once you really get into customizing your blog template, look, design, and functions, you may run into some cross browser compatibility issues.  What does that mean?</p>
<p>Basically, your site may not look the same in Internet Explorer as it does in Mozilla.  Your site may not look the same on a PC as it does on a Mac.  This can be very frustrating because new designs are often a labor of love.</p>
<p>There&#8217;s nothing more frustrating than finding out your design/coding only works correctly on Firefox or only on IE.</p>
<p>So without having to buy a Mac and a PC, and without having to install every operating system known to man.  Well, there&#8217;s an easy solution, and it is FREE!</p>
<p>Visit <a title="Browser testing" href="http://browsershots.org/" target="_blank">browsershots.org</a>.  Enter your URL or page you want to test.  Then check off the browsers you&#8217;d like to use.  Click submit.</p>
<p>Refresh the page in a few minutes and the system will have uploaded screenshots of your site in all the browsers you selected.  Then, you can verify for yourself that your page is in fact displaying correctly.  If not, you&#8217;ll see that too.</p>
<p>Give it a try, and let us know how it went.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogcraving.com/test-your-site-with-other-internet-browsers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Build a Widget</title>
		<link>http://blogcraving.com/how-to-build-a-widget/</link>
		<comments>http://blogcraving.com/how-to-build-a-widget/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 03:30:05 +0000</pubDate>
		<dc:creator>Travis Lusk</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[builder]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[sprout]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[widgets]]></category>

		<guid isPermaLink="false">http://www.icastlimited.com/?p=93</guid>
		<description><![CDATA[The widgets are here! Ever want to make a HOT widget for your blog content? No idea how? Sprout Builder has you covered. Sprout lets you create amazing looking widgets in any size or shape you choose. You can pick from some starter templates, or build your own from scratch. Feed in your content, and [...]]]></description>
			<content:encoded><![CDATA[<p>The widgets are here!</p>
<p>Ever want to make a HOT widget for your blog content?  No idea how?  <a href="http://sproutbuilder.com/">Sprout Builder</a> has you covered.</p>
<p>Sprout lets you create amazing looking widgets in any size or shape you choose.  You can pick from some starter templates, or build your own from scratch.  Feed in your content, and boom&#8230;you&#8217;re done.</p>
<p>The tool also lets you instantly publish your widget on Facebook, MySpace, etc.  This is a sample widget they made (below).  Pretty cool.</p>
<p style="text-align: center;"><object width="300" height="271" data="http://farm.sproutbuilder.com/70470/load/QAArWRPQAQM7St4L.swf" type="application/x-shockwave-flash"><param name="id" value="playerLoader" /><param name="quality" value="high" /><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /><param name="wmode" value="transparent" /><param name="src" value="http://farm.sproutbuilder.com/70470/load/QAArWRPQAQM7St4L.swf" /><param name="name" value="playerLoader" /><param name="align" value="middle" /><param name="allowfullscreen" value="true" /></object></p>
]]></content:encoded>
			<wfw:commentRss>http://blogcraving.com/how-to-build-a-widget/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Make a Favicon for Your Website</title>
		<link>http://blogcraving.com/how-to-make-a-favicon-for-your-website/</link>
		<comments>http://blogcraving.com/how-to-make-a-favicon-for-your-website/#comments</comments>
		<pubDate>Thu, 17 Apr 2008 15:37:22 +0000</pubDate>
		<dc:creator>Travis Lusk</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[256 colors]]></category>
		<category><![CDATA[bowser]]></category>
		<category><![CDATA[brand awareness]]></category>
		<category><![CDATA[browser favorites]]></category>
		<category><![CDATA[custom graphics]]></category>
		<category><![CDATA[favicon]]></category>
		<category><![CDATA[favorite icon]]></category>
		<category><![CDATA[file format]]></category>
		<category><![CDATA[free applications]]></category>
		<category><![CDATA[ico file]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tool]]></category>

		<guid isPermaLink="false">http://www.icastlimited.com/?p=82</guid>
		<description><![CDATA[Ever wonder how those little icons get up in the address bar of your browser (pictured below).  Well, it&#8217;s actually pretty easy to do, and it really ads a professional flavor to your site.  It also helps with brand awareness.  Many RSS readers will also pull in the favicon with your feed making your feed [...]]]></description>
			<content:encoded><![CDATA[<p>Ever wonder how those little icons get up in the address bar of your browser (pictured below).  Well, it&#8217;s actually pretty easy to do, and it really ads a professional flavor to your site.  It also helps with brand awareness.  Many RSS readers will also pull in the favicon with your feed making your feed more identifiable among others on a page.</p>
<p style="text-align: center;"><a href="http://www.icastlimited.com/wp-admin/None"><img class="aligncenter size-full wp-image-83" title="favicon demo graphic" src="http://blogcraving.com/wp-content/uploads/2008/04/favicon_demo.jpg" alt="favicon demo How to Make a Favicon for Your Website" width="415" height="140" /></a></p>
<p><strong>What does &#8220;favicon&#8221; mean?</strong> It means favorite icon.  They were originally made to be custom graphics used when people added a site to their browser favorites.  Distinct icons make it easier to find what you want when digging though a long list of links.</p>
<p><strong>So how do you make one?</strong> Lets use the iCast Limited logo as an example.  We took what we call our pinwheel off of our logo and made it into a complete circle.  So that was the base from which our favicon was derived.</p>
<p>The specs for a favicon are that they must be 16&#215;16 or 32&#215;32 in dimension.  Most often, the browser will simply size down a 32&#215;32 to the size needed to fit the bowser.  Generally speaking, a 16&#215;16 favicon is restricted to 16 colors.  A 32&#215;32 may be up to 256 colors.  However, it is always smarter to develope your art to the lowest common denominator.  So stick to the 16&#215;16 with 16 colors if you can.</p>
<p>The favicon file format.  Once you have your favicon designed, there is a very specific file format that you must save the art as.  It cannot simply be a jpg or gif.  The favicon needs to be saved as a .ico file.  Also, the file must be named favicon.ico.  That&#8217;s <strong>required</strong>.<span id="more-82"></span></p>
<p>There are numerous free applications out there that will save your file in the .ico file format.  <a title="Easyicons 98 - Favicon tool" href="http://www.easyapps.com/" target="_blank">Easyicons 98</a> is a simple free program.  There&#8217;s also <a title="Simple favicon.ico tool." href="http://www.chami.com/html-kit/services/favicon/" target="_blank">this site where you simply upload</a> the file you want to use and it converts the file to an .ico.  It also renders an animated version if you want to use that instead.</p>
<p>If you are using Photoshop, there&#8217;s also <a title="Photoshop ico plugin" href="http://www.telegraphics.com.au/sw/" target="_blank">a free plugin you can install</a>.  That way you can use Photoshop to save a .ico file.</p>
<p><strong>Publishing your favicon.</strong> The last step is to upload and launch your favicon.  The first thing you need to do is upload your favicon to your server.  It is best if you upload the file to the root level of your site.  In other words, upload it to the highest level you have, ususally where your index page is located.  Try to avoid burrying it in a deeper folder.</p>
<p>Then a little bit of code.  Many browers will instantly find your favicon once you upload it.  Others need a little help in the form of a meta tag that points to your favicon.  Here&#8217;s the code:</p>
<pre>&lt;link rel="shortcut icon" href="favicon.ico" &gt;</pre>
<p>Or the full path:</p>
<pre>&lt;link rel="shortcut icon" href="http://YOURDOMAIN.com/favicon.ico" &gt;</pre>
<p>Place the code above between your &lt;head&gt;   &lt;/head&gt; tags.  The href=&#8221;favicon.ico&#8221; part is the path to where you have your favicon saved.  So you may want to make it an absolute path by changing it to href=&#8221;http://www.YOURDOMAIN.com/favicon.ico&#8221;. If you do decide to save your favicon somewhere else, simply change the address to reflect its location.</p>
<p><strong>That&#8217;s it!</strong> Once you place the code and upload the file, refresh your browser and you should see the icon up there.  You may have to clear your browser cache or close out and reopen.  From then on, you will see it up there.  Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://blogcraving.com/how-to-make-a-favicon-for-your-website/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

