<?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>Giblette Design</title>
	<atom:link href="http://www.giblette.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.giblette.com</link>
	<description>Web home of designer &#38; developer Joshua Giblette</description>
	<lastBuildDate>Wed, 16 Dec 2009 21:46:18 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>It&#8217;s Time to Shopp</title>
		<link>http://www.giblette.com/blog/web-development-blog/its-time-to-shopp/</link>
		<comments>http://www.giblette.com/blog/web-development-blog/its-time-to-shopp/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 20:53:50 +0000</pubDate>
		<dc:creator>Joshua Giblette</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.giblette.com/?p=1463</guid>
		<description><![CDATA[<p>I was recently given the opportunity to develop an eCommerce site for a client of mine.  I had developed a few eCommerce sites previously, all on different platforms, but for this project we wanted to go with WordPress as the CMS, and so my mind started to ponder back&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>I was recently given the opportunity to develop an eCommerce site for a client of mine.  I had developed a few eCommerce sites previously, all on different platforms, but for this project we wanted to go with WordPress as the CMS, and so my mind started to ponder back to eCommerce plug-ins I had used on previously.  Honestly the only remotely good one was <a href="http://www.instinct.co.nz/e-commerce/" target="_blank">WP eCommerce</a>, and I actually ended up have a lot of issues with implementing it, as it was very &#8220;buggy&#8221; at times.  So I set out to hopefully find a new solution that would integrate as an eCommerce platform with WordPress and that&#8217;s when I came across Shopp.</p>
<p>After reading through the documentation and watching a few of the demo videos I was pretty much sold, but knew that I wouldn&#8217;t really know how good of fit it would be until I was able to install it in my own WP environment.  Unfortunately this became a little bit of a leap of faith as Shopp is not a free plug-in.  I had to pony up the doe before I would even know if it was good or not.  This is why I am writing this review and tutorial, to hopefully help people make a decision on using Shopp without having to feel like they might be wasting their money in making the &#8220;$55 blind leap&#8221;.</p>
<p>Luckily for me, I wasn&#8217;t let down. Overall I have to say I give the plug-in an <strong>8.5 out of 10</strong>.  It is very impressive, very robust and easy to use, but it did have a few things that really irked me and I&#8217;ll touch those as well as the all of the benefits I found.</p>
<h3>Pros</h3>
<ul>
<li>Easy to install WordPress plug-in</li>
<li>Plays nicely with other plug-ins</li>
<li>Dashboard widgets for at-a-glance sales and marketing performance tracking</li>
<li>Shortcode support for placing products and categories in blog posts or pages</li>
<li>Handles multiple product images with easy drag-and-drop sorting</li>
<li>Basic inventory management and low-stock e-mail alerts</li>
<li>Support for selling digital &amp; physical products and donations</li>
<li>Search engine optimized shopping pages</li>
<li>Product image galleries with beautifully smooth transitions</li>
<li>Support for custom checkout fields and product inputs</li>
<li>Fast product search</li>
<li>Customizable product drill-down menus</li>
<li>Built-in tiered rates based on a flat rate, order quantity, or weight</li>
<li>Custom discount settings: Apply any of your discount options using promo/coupon codes</li>
<li>Standards-compliant mark-up output</li>
<li>Customizable shopping interface templates (Very easy to customize and control)</li>
<li>Over 200 comprehensive template tags for unparalleled custom template development</li>
<li>AJAX-capable shopping cart and development API for custom cart behaviors</li>
</ul>
<p>*These are just a few of the great features that I found very satisfying in using this plug-in.  You can view their entire list of features <a href="http://shopplugin.net/features/" target="_blank">here</a>.</p>
<h3>Cons</h3>
<ul>
<li>Conditional Tags were a little tricky to figure out</li>
<li>Permalink structure does not include a full path to a product by default</li>
<li>Documentation is very scattered and hard to navigate</li>
<li>Cost money / other eCommerce plug-ins don&#8217;t (but in my opinion it&#8217;s worth it)</li>
</ul>
<h3>How to Use Conditional Tags</h3>
<p>As I stated earlier I am very happy overall with Shopp, and out of the very few &#8220;Cons&#8221; that I came across while using it, there was really only one that made me pull my hair out at times.  It was the lack of documentation of using conditional tags.  WordPress has a conditional tag structure already built in that lets you easily change what content is displayed and how that content is styled on a particular page depending on what <em>conditions</em> that page matches.  A good example was that in my &#8220;Shopp&#8221; I wanted to add an &#8220;active&#8221; class to the category/page the user was currently on.  On a default WP page this is simple, you would use the following to do so:</p>
<pre class="brush:php">&lt;a href="/about-us/"&lt;?php
if (is_page('23'))
{
echo " class=\"current\"";
}?&gt;&gt;
Link to About Us
&lt;a/&gt;</pre>
<p>However, there is no notation in the Shopp documentation on how get this to work using the Shopp templates.  Since Shopp uses it&#8217;s own templating system, the only way to accomplish this task would be to create  a separate template for every category&#8230; wow that could really be a pain depending on how many categories you have, and have to add new templates down the road and as more categories are created!</p>
<p>Luckily after many hours of pulling what hair I have left out of my skull, I thought of this.  Which actually works!  It seems that Shopp does contain conditional tags, but there not documented anywhere!  To add a class to a link for a particular category you would the following:</p>
<pre class="brush:php">&lt;a href="/about-us/"&lt;?php
if(shopp('category','is-category','id=1'))
{
echo " class=\"current\"";
}?&gt;&gt;
Link to About Us
&lt;a/&gt;</pre>
<p>If you don&#8217;t need to change what content is displayed, only how then you can accomplish this completely through css and this nifty little piece of code:</p>
<pre class="brush:php">&lt;?php shopp('category','name'); ?&gt;</pre>
<p>What this will do is print the category name of current product/section you are on.  Here is an example of how you might use this to you styling benefit:</p>
<p>Let&#8217;s say, that for some reason,  you wanted to set all of the links to be blue in the &#8220;Movie&#8221; category of your online store.  Well, we will start by simply adding the php snippit above as a class/id value for the hightest surrounding div/element possible like so:</p>
<pre class="brush:php">&lt;div class="&lt;?php shopp('category','name'); ?&gt;"&gt;
     &lt;a href"/link-1/"&gt;Link 1&lt;/a&gt;
     &lt;a href"/link-1/"&gt;Link 2&lt;/a&gt;
&lt;/div&gt;</pre>
<p>This will now give the div/element a class of the category you are currently viewing.  In this case we are viewing the &#8220;Movies&#8221; category, so the class for this div will be set to &#8220;Movies&#8221; (yes it is case sensitive).  Next we just need to add some CSS to help style the links inside of that div by using a descendant selector like so:</p>
<pre class="brush:css">.Movies a {
     color: blue;
}</pre>
<p>This will now set all of the links to be blue, but only on the &#8220;Movies&#8221; category and single product pages.</p>
<p>I hope that this little tutorial is able to save some of you from losing as much hair as I did in finding this solution.  Other than this little bump in the development process, I think Shopp is a fantastic plug-in, it is well worth the cost, and I definitely recommend it to anyone looking to supply themselves or their clients with an easy to use eCommerce solution.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.giblette.com/blog/web-development-blog/its-time-to-shopp/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Flutter: WordPress Custom Fields Made Easy</title>
		<link>http://www.giblette.com/blog/web-development-blog/flutter-wordpress-custom-fields-made-easy/</link>
		<comments>http://www.giblette.com/blog/web-development-blog/flutter-wordpress-custom-fields-made-easy/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 19:25:23 +0000</pubDate>
		<dc:creator>Joshua Giblette</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Flutter]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.giblette.com/?p=1219</guid>
		<description><![CDATA[<p>For the past few years I have been referring clients to WordPress as my preferred CMS solution.  I have found WordPress to be a wonderful solution for many of my clients.  There are a few areas that could use some improvement, but honestly I don&#8217;t know of a perfect&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>For the past few years I have been referring clients to WordPress as my preferred CMS solution.  I have found WordPress to be a wonderful solution for many of my clients.  There are a few areas that could use some improvement, but honestly I don&#8217;t know of a perfect CMS out there, do you?  As most WP developers know, custom fields are the key to using it as a successful CMS, and there have been some major improvements in last few years to help make it easier to implement custom fields into your template files, but in my experience it seems that not all of my clients fully understand how to use custom fields they way they are built into WordPress by default.</p>
<p><img class="alignnone size-full wp-image-1232" title="custom-fields" src="http://www.giblette.com/wp-content/uploads/2009/10/custom-fields1.jpg" alt="custom-fields" width="540" height="165" /></p>
<p>There are ways to hack around and make it easier for your client, I even wrote an article over at <a href="http://blog.foraker.com/2009/08/using-wordpress-as-a-cms/">Foraker.com</a> that explains how incorporate the power of custom fields in WordPress, and this way may be easy to understand for people familiar with WP and PHP but for my clients  I feel that the default layout of using custom fields is a little hard to understand.  Mostly I have had issues with clients wanting to the custom field to be an image and the only way to do this is for the client to upload the photo first via the media up-loader and then insert the path in the custom field value.  Wouldn&#8217;t it be nice if the custom field just had an upload feature associated with it?   Also, sometimes my clients are unsure if they can stray from the ones I preset for them and just start creating their own custom field names and values.  This is an issue as they are unaware of the variable calls that need to be placed in the post/page templates as well.  Overall I feel it&#8217;s just not as easy as it should be.  This is where <a href="http://flutter.freshout.us/">Flutter</a> comes in.</p>
<h3>What is Flutter?</h3>
<p>Good question.  From the words of Freshout, the creators of Flutter, <em>&#8220;Flutter is a feature rich WordPress CMS plugin that focuses on easy templating for the developer and simplified content management for the admin by creating custom write panels that can be fully customized.&#8221;</em></p>
<p>A big bonus of Flutter is that it allows you to remove the &#8220;generic&#8221; page/post buttons from your WordPress dashboard navigation and input new custom buttons that will help categorize the website&#8217;s content in a way that is easier for your client to understand.  An example would if you have a cleint that will be publishing multiple types of posts, such as news or events. Instead of having the client manage these in one general section titled &#8220;posts&#8221; and hoping/praying that they remember to make sure they apply the correct template and custom fields.  With Flutter you can create two custom sections, one titled &#8220;News&#8221; and the other &#8220;Events&#8221;.  The client would then use these new buttons to manage posts according to their type, and the post edit screen will already have the associated template, category and custom fields preset.  Pretty sweet huh?!?  Alright then lets move on to the setup and installation of flutter.</p>
<h3>Getting Started</h3>
<p><strong>Installing Flutter:</strong></p>
<ol>
<li>Download the plug-in <a href="http://downloads.wordpress.org/plugin/fresh-page.1.1.zip">here</a></li>
<li>Unzip the file and upload it to your plug-ins directory (/wp-content/plugins/)</li>
<li>You will need to create a few additional folders on your server, and make sure they are writable:<br />
-/wp-content/plugins/fresh-page/thirdparty/phpthumb/cache/<br />
-/wp-content/files_flutter/<br />
-wp-content/files_flutter/modules/</li>
<li>Now login to your WP site and activate the plug-in (/wp-admin/plugins.php)</li>
</ol>
<p><strong>That&#8217;s it.</strong> You should now notice 2 additional buttons in your dashboard navigation.  One is a completely new tab titled &#8220;Flutter&#8221;,  in this section you will create all of your write panels (custom templates) and write fields.  The second is sub link under the &#8220;Settings&#8221; tab.  This section will help you set a few global settings for flutter, as well as WordPress in general.</p>
<h3>Custom Write Panels</h3>
<p>Custom write panels are basically custom templates for posts and pages.  Once you click on the the &#8220;Write Panel&#8221; link from flutter menu you will be given the option to manage current write panels, import a write panel or create a new one.</p>
<p><img class="alignnone size-full wp-image-1261" title="write-panel" src="http://www.giblette.com/wp-content/uploads/2009/10/write-panel.jpg" alt="write-panel" width="540" height="313" /></p>
<p><strong>Let&#8217;s create a new panel:</strong></p>
<ol>
<li>Click on the button &#8220;+ Create a Write Panel&#8221;</li>
<li>Now decide if the template will be for a post or a page (depending on your decision here, the options below may differ)</li>
</ol>
<p><strong>Options for a post:</strong></p>
<ol>
<li>Give it a name</li>
<li>Chose what categories posts created in this write panel will automatically be assigned to</li>
<li>Decide whether there will be multiples of this type of post</li>
<li>Set what fields the client will see on the edit post screen</li>
<li>Then set your advanced fields, FYI &#8211; sometimes the fewer options your client has to dig around in, the better.</li>
<li>Now click finish</li>
</ol>
<p><strong>Options for a page:</strong></p>
<ol>
<li>Give it a name</li>
<li>Choose a page template that pages in this write panel will use by default</li>
<li>Decide whether there will be multiples of this type of page</li>
<li>Set what fields the client will see on edit page screen</li>
<li>Then set your advanced fields, FYI -  Again, sometimes the fewer options your client has to dig around in, the better.</li>
</ol>
<p>After you have a write panel created (template), the next step is to add custom fields to that panel.</p>
<p><img class="alignnone size-full wp-image-1266" title="field" src="http://www.giblette.com/wp-content/uploads/2009/10/field.jpg" alt="field" width="540" height="217" /></p>
<ol>
<li>To create a new custom field click on the &#8220;+ Create a Field&#8221; link</li>
<li>Give it a name, this is the name you will use for your variable call so keep it simple</li>
<li>Label your field, this the title that the field will be given on the edit post/page screen</li>
<li>Decide whether or not the user can duplicate this field and add multiple entries of the same type of content</li>
<li>The order you would like to appear on the edit post/page screen</li>
<li>Set whether or not this field is required or not (if this set to required, the client will not be able to publish this post/page until a value is entered)</li>
<li>Type: Flutter offers multiple types of fields which a great bonus! For example now you can set this field type as image and on the edit post/page screen the user will have the option of uploading an image or entering a url path. Nice!</li>
<li>Press continue to add the field.  From here add as many custom fields as you wish for this particular panel</li>
</ol>
<h3>Template Configuration</h3>
<p>The next step is to call these custom fields to appropriate spots in your post/page templates.  There are few different ways to go about this, as your field values may serve various purposes.  Below I will outline the more general calls for flutter fields along with how to display multiple fields as the Freshout documentation is limited and a little hard to understand.</p>
<p>To call any custom field value we are going to use the php echo construct.  Also just to note that any of these calls should be used within <a href="http://codex.wordpress.org/The_Loop">the_loop</a>.</p>
<p><strong>Basic Variable Call</strong></p>
<pre class="brush:php">&lt;? echo get('variable'); ?&gt;</pre>
<p><strong>Get an Image with Image Tags</strong></p>
<pre class="brush:php">&lt;? echo get_image('variable'); ?&gt;</pre>
<p><strong>Get Multiple Check Box Values</strong></p>
<pre class="brush:php">&lt;? $checks = get('variable');
$output = "";
foreach($checks as $check){
$output .= "&lt;span&gt;$check,&lt;/span&gt; ";
}
echo $output;
// or return $output
?&gt;</pre>
<p><strong>Display Duplicate Fields</strong></p>
<pre class="brush:php">&lt;?php
$total = getFieldDuplicates('variable',1);
for($i = 1; $i &lt; $total+1; $i++){
echo get('variable',1,$i);
}?&gt;</pre>
<p><strong>Display Duplicate Groups</strong></p>
<p>This one is a little bit tricky as instead of just duplicating one custom field, we are duplicating a group that may contain multiple custom fields.  In the example below we are calling a group of fields that can be duplicated.  When using &#8220;getGroupDupliates(&#8216;variable1&#8242;)&#8221;, we can replace variable1 with any field name from that particular group.  For this call we are displaying a group that contains a field name of &#8220;variable1&#8243;. Then we begin to display the values which are a thumbnail with the value of &#8220;variable2&#8243; that has a title value of &#8220;variable1&#8243;. Then we are wanting this thumbnail to link to the value of &#8220;variable3&#8243;.<strong><br />
</strong></p>
<pre class="brush:php">&lt;?php $total = getGroupDuplicates('variable1');?&gt;
&lt;?php for($i = 1; $i &lt; $total+1; $i++):?&gt;
&lt;?php echo "&lt;li&gt;";
echo "&lt;a title=\"" .get('variable1',$i,1). "\" href=\"";
echo get('variable2',$i,1);
echo "\"&gt;";
echo "&lt;img src=\"" .get('variable3',$i,1). "\" alt=\"\" /&gt;";
echo "&lt;/a&gt;";
echo "&lt;/li&gt;"; ?&gt;
&lt;?php endfor;?&gt;</pre>
<h3>The End Result</h3>
<p>Once we have our write panels configured and our custom field calls placed in our WordPress template files we should be ready to rock and roll!</p>
<p>Oh and when creating your write panels and custom fields don&#8217;t feel like you have to have everything set in place right away. If the purpose of a write panel changes and you need to add/remove custom fields you can do this at any time and the changes will be made to any current or future posts/pages.</p>
<p>Flutter takes a little time to get used to but once you are able to get in a really play around with it you&#8217;ll begin to realize the potential it can have to make the use of custom fields much easier for you and your client.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.giblette.com/blog/web-development-blog/flutter-wordpress-custom-fields-made-easy/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>3 Years &amp; Counting&#8230;</title>
		<link>http://www.giblette.com/blog/news/3-years-counting/</link>
		<comments>http://www.giblette.com/blog/news/3-years-counting/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 03:28:21 +0000</pubDate>
		<dc:creator>Joshua Giblette</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.giblette.com/?p=1190</guid>
		<description><![CDATA[<p>It&#8217;s been almost 8 years since I designed and developed my first website in MS FrontPage 98. Yikes! Remember FrontPage!?! It was a site for a local film company a buddy and I started, boy was it&#8230;well&#8230; so &#8216;98!  Before I became passionate about pixel perfect web design and&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been almost 8 years since I designed and developed my first website in MS FrontPage 98. Yikes! Remember FrontPage!?! It was a site for a local film company a buddy and I started, boy was it&#8230;well&#8230; so &#8216;98!  Before I became passionate about pixel perfect web design and proper CSS, I was much more interested in film.  I was actually completely sold on the idea of going to Southern California for film school, but as it turns out my curiousity for web development and design over took my passion for film by a long shot.  When I look back now at that dramatic change of interest in my life, I have to say  that I am so glad I made the switch, and that I truly love what I am able to do for a living. (So is my bank account, as film school was far more expensive!)</p>
<p>It wasn&#8217;t until about three years ago though that I actually designed and developed my first portfolio site.  That design is now long gone ( thank goodness), along with the other half a dozen or so that I&#8217;ve rolled through in the past three years.  This site has seen many face lifts but has been a wonderful and powerful tool for showcasing my freelance  and corporate portfolio.  For those of you that may be just getting started in web design, I highly recommend creating a personal portfolio to help you showcase your work.  It can be a very valuable tool, as mine has really helped strengthen my career and land opportunities that may have been out of reach without one.  The reach and power that a solid online portfolio can have is far beyond anything I had imagined when I first began developing my own.  Another plus to having a personal site is that is can be a playground for learning new things in web development, as  no one can tell you what you can and can&#8217;t do on your own site.  You are your own client and that can be a good and a bad thing!</p>
<p>Since it&#8217;s original conception I have added quite a few things to help strengthen my site, including a blog.  This has been a great little space for me to let out my often incoherent ramblings.  Over time my reader base has grown and for those of you that have read or posted comments on my articles, I want say thank you. I have learned so much from many of you.  I also really appreciate all of the sites who have featured my work and for all of their great comments and emails.  These sites have really helped increase the amount of RSS subscribers, twitter followers and visits in general to my site.</p>
<p>Whether you are just starting out in the web design field or you are looking for a little boost in your traffic/readers, a first stop would be to submit your site to some of the web design galleries out there. Sometimes it can take a while for your site to be approved, as many of them are very particular in what sites they showcase, but once you are featured on one or two you will notice that your site will begin to trickle through the rest of the community without you even having to submit them.   It&#8217;s always fun to spot your work somewhere isn&#8217;t it?  This has always been really exciting to me, where I might be studding my analytics and notice that from the 2 or 3 sites that I submitted a link to, there are 30 more that are now showcasing and sharing my work.</p>
<p>I am grateful for the chance I have to share my passion for design, below are a few of the sites that have featured my personal portfolio over the past 3 years.  If you are looking for a place to start, all of these are great resources to help get your work out there.</p>
<h3>Special thanks to these sites:</h3>
<p><a href="http://cssmania.com/galleries/2009/09/24/giblette.php"><img src="/images/featured/featured-37.jpg" alt="" /></a><a href="http://abduzeedo.com/web-design-black-layouts-part-2"><img src="/images/featured/featured-36.jpg" alt="" /></a><a href="http://designshack.co.uk/design/giblette.html"><img src="/images/featured/featured-35.jpg" alt="" /></a><a href="http://designm.ag/inspiration/textured-websites/"><img src="/images/featured/featured-34.jpg" alt="" /></a><a href="http://creattica.com/css/giblette/25059"><img src="/images/featured/featured-33.jpg" alt="" /></a><a href="http://psdtuts.com/articles/inspiration/20-sources-of-inspiration-from-stone-dirt-and-rust/"><img src="/images/featured/featured-32.jpg" alt="" /></a><a href="http://webcreme.com/2009/10/giblette-design/"><img src="/images/featured/featured-31.jpg" alt="" /></a><a href="http://www.cssleak.com/detail-giblette_design-4406.html"><img src="/images/featured/featured-30.jpg" alt="" /></a><a href="http://cssbased.com/showcase/4527/giblette"><img src="/images/featured/featured-29.jpg" alt="" /></a><a href="http://welovewp.com/giblette.html"><img src="/images/featured/featured-28.jpg" alt="" /></a><a href="http://www.cult-f.net/2009/01/27/giblette-design/"><img src="/images/featured/featured-27.jpg" alt="" /></a><a href="http://www.inspirationbit.com/georgia-on-my-mind/"><img src="/images/featured/featured-26.jpg" alt="" /></a><a href="http://www.rgbmagazine.com.br/inspiracao/10-portfolios-que-valem-a-pena-conferir/"><img src="/images/featured/featured-25.jpg" alt="" /></a><a href="http://web.vivee.info/2009/01/05/giblette/"><img src="/images/featured/featured-24.jpg" alt="" /></a><a href="http://unmatchedstyle.com/gallery/giblettecom.php"><img src="/images/featured/featured-23.jpg" alt="" /></a><a href="http://aceinfowayindia.com/blog/2009/09/30-websites-with-maximum-orange/"><img src="/images/featured/featured-22.jpg" alt="" /></a><a href="http://www.designbombs.com/portfolio/joshua-giblette/"><img src="/images/featured/featured-21.jpg" alt="" /></a><a href="http://www.designyourway.net/blog/inspiration/weekly-30-inspirational-websites-25/"><img src="/images/featured/featured-20.jpg" alt="" /></a><a href="http://101bestwebsites.com//url/www.giblette.com/"><img src="/images/featured/featured-19.jpg" alt="" /></a><a href="http://www.designfridge.co.uk/gallery/trends/clean/joshua-giblette-design"><img src="/images/featured/featured-18.jpg" alt="" /></a><a href="http://www.cssincolor.com/archives/1019"><img src="/images/featured/featured-17.jpg" alt="" /></a><a href="http://cssfury.com/gallery/giblette.html"><img src="/images/featured/featured-16.jpg" alt="" /></a><a href="http://www.lemlinh.com/50-incridible-dark-websites/"><img src="/images/featured/featured-15.jpg" alt="" /></a><a href="http://www.webair.it/blog/2009/02/03/50-dark-website-design/"><img src="/images/featured/featured-14.jpg" alt="" /></a><a href="http://cssmayo.com/giblette-design/"><img src="/images/featured/featured-13.jpg" alt="" /></a><a href="http://cssscoop.com/thescoop/40-textured-websites-for-design-inspiration/"><img src="/images/featured/featured-12.jpg" alt="" /></a><a href="http://tyylitiedosto.fi/view/joshua_giblette"><img src="/images/featured/featured-11.jpg" alt="" /></a><a href="http://css-lounge.com/gallery/giblette-design/"><img src="/images/featured/featured-10.jpg" alt="" /></a><a href="http://wpcount.com/2009/09/giblette/"><img src="/images/featured/featured-9.jpg" alt="" /></a><a href="http://we4design.com.br/blog/index.php/2009/04/07/13-sites-com-texturas-para-ter-inspiracoes/"><img src="/images/featured/featured-8.jpg" alt="" /></a><a href="http://www.csscake.com/2009/10/joshua-giblette/"><img src="/images/featured/featured-7.jpg" alt="" /></a><a href="http://www.nicelydonecss.com/giblette-design/"><img src="/images/featured/featured-6.jpg" alt="" /></a><a href="http://www.welovecss.net/?p=2251"><img src="/images/featured/featured-5.jpg" alt="" /></a><a href="http://www.floobe.com/2008/12/28/css-website-giblette/"><img src="/images/featured/featured-4.jpg" alt="" /></a><a href="http://www.atelier143.com/"><img src="/images/featured/featured-3.jpg" alt="" /></a><a href="http://digcss.com/Div-CSS/2008/1227/giblette.com.shtml"><img src="/images/featured/featured-2.jpg" alt="" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.giblette.com/blog/news/3-years-counting/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Finally Seeing the Light</title>
		<link>http://www.giblette.com/blog/news/finally-seeing-the-light/</link>
		<comments>http://www.giblette.com/blog/news/finally-seeing-the-light/#comments</comments>
		<pubDate>Sat, 26 Sep 2009 01:09:22 +0000</pubDate>
		<dc:creator>Joshua Giblette</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.giblette.com/?p=1108</guid>
		<description><![CDATA[<div>
<h4 style="font-family: georgia;"><em>&#8220;Every creator painfully experiences the chasm between his inner vision and its ultimate expression.&#8221;</em></h4>
<p>- Isaac Bashevis Singer</p>
<p>This explains my situation to a tee, as I am sure it does for many other designers.  Over the last 2 years I have gone through theme, after theme, after flipping theme for&#8230;</p></div>]]></description>
			<content:encoded><![CDATA[<div>
<h4 style="font-family: georgia;"><em>&#8220;Every creator painfully experiences the chasm between his inner vision and its ultimate expression.&#8221;</em></h4>
<p>- Isaac Bashevis Singer</p>
<p>This explains my situation to a tee, as I am sure it does for many other designers.  Over the last 2 years I have gone through theme, after theme, after flipping theme for giblette.com and to no avail.  I was never fully satisfied while the end result.  Half of the issue was my process, which if only one good thing has come from my dissatisfaction with my personal site it&#8217;s that I&#8217;ve had the opportunity to refine my design process, which has helped me to deliver a more solid product to my clients.  The other half has to do with not really knowing what I want from my personal site. Is it a blog?  Is it a portfolio showcase?  Is it both?  Is it more?  Etc&#8230;</p>
<p>Finally after two years I feel that my process has been well refined and that my personal goals are understood enough that I was able to layout the overview of what giblette.com should be.  Really in the end it&#8217;s everything that I have been doing for the past few years.  It&#8217;s a playground&#8230; my playground.  The wonderful thing about having a personal website should be the freedom you receive in being able to try new ideas and express who you are. Instead of trying to develop a master theme that focused on &#8220;this or that&#8221;, what I really needed was something simple and to the point. I feel the new layout accomplishes this.  It is simple and flexible enough for future growth, as I am sure I will continue to have new ideas.  I have set up three main areas that should contain everything I want this site to accomplish.  So here is a quick outline of what this site will entail:</p>
<h4>my Work</h4>
<p>This is a big thing for every designer but I wanted a place where I could easily add new projects within just a few minutes of backend time and allow people to see the various types of work I am involved in.  Building a few custom fields in my WordPress theme has accomplished the speed of project entry and also incorporating an ajax based gallery I am able to quickly showcase different types of work that&#8217;s organized by work type.</p>
<h4>the Blog</h4>
<p>This is pretty self explanatory, it&#8217;s a blog.  The topics I hope to cover more about here are helpful tips &amp; tricks, tutorials and information about my experiences as a designer/web developer.</p>
<h4>my Projects</h4>
<p>Just as I tend to get a million ideas rushing through my head about this site, I always seem to get ideas about other side projects that I feel are worthy of future development. Well over the past year a few of these ideas have actually gone into development. Yay!  And a few are currently in beta almost ready for a public release. So in this section I will be giving overviews of my side projects (ie project purpose, version details, release dates, etc.).</p>
<p>Overall I am very pleased to finally have the site up to par and at a level I personally am happy with.  I am actually loving the lighter, brighter version of giblette.com.  For so long I have had dark themes and honestly I am not sure if that had anything to do with me not being completely satisfied or not but I do know one thing&#8230; I do prefer reading content on a lighter background.  I hated even proof reading my own articles in the previous dark themes.</p>
<p>Also, I have received this question a few times already so I&#8217;ll just answer it here. <strong><em>&#8220;Why orange?&#8221;</em></strong> &#8211; Well as I stated above, your personal website should really be an expression of who you are and what you&#8217;re about.  For me, life is really good right now&#8230; to quote the Frank Sinatra, <em>&#8220;</em><span id="main" style="visibility: visible;"><span id="search" style="visibility: visible;"><em>Orange is the happiest color&#8221;</em>, and</span></span> right now I have everything to be happy about.</div>
]]></content:encoded>
			<wfw:commentRss>http://www.giblette.com/blog/news/finally-seeing-the-light/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Social Networking Etiquette</title>
		<link>http://www.giblette.com/blog/marketing/social-networking-etiquette/</link>
		<comments>http://www.giblette.com/blog/marketing/social-networking-etiquette/#comments</comments>
		<pubDate>Sun, 19 Apr 2009 18:56:53 +0000</pubDate>
		<dc:creator>Joshua Giblette</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.giblette.com/?p=890</guid>
		<description><![CDATA[<p>Social networking can be an amazing tool to help us craft our online profiles/resumes. These online tools help many connect with old friends, find new jobs/new hires, and share personal information with others.  The one item we can’t soon forget though, is the damage that comes from not using&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>Social networking can be an amazing tool to help us craft our online profiles/resumes. These online tools help many connect with old friends, find new jobs/new hires, and share personal information with others.  The one item we can’t soon forget though, is the damage that comes from not using social networking tools properly. When publishing items online, you need to think about who will be able to see them, colleagues, friends, your boss, even family members. I want to review the following in this article to help us all avoid the pitfalls that can waylay us as we craft our online profiles and statuses:</p>
<ol>
<li>Internet privacy</li>
<li>Think before you post</li>
<li>Varying site usage and profiles</li>
<li>Quality, not quantity</li>
</ol>
<h4>Internet Privacy</h4>
<p>This is first item I want to touch on because it is so very important to understand how much lack of privacy there is on the Internet.  Despite the many precautions available to help protect yourself online, trust me &#8212; if there is someone who wants your information, they’ll find a way to get it.  So you need to be cautious about what you place online.  For some reason, there is a draw for the most timid people to feel brave in posting what they please online, and they feel that if they disguise their names, they are safe.  Not true.  There are many ways someone can trace content online back to original author. For those of you that have blogs, networking profiles, or personal/business websites, here are a few things I would recommend performing regularly to help protect yourself online:</p>
<ul>
<li>Change your online passwords every month</li>
<li>Review your analytics (if applicable) for suspicious activity every few days or so</li>
<li>If possible, install IP watchers for suspicious admin logins from unknown IP addresses</li>
<li>Review and make sure security settings are in place for your intended audience</li>
</ul>
<p>I am sure that many of us have had times where we have felt digitally violated, either via a site hacker or not fully understanding security settings and allowing someone to see something that wasn’t intended for all audiences. Recently, my personal site was hacked; this wasn’t the first time I was given the “opportunity” to be a victim of somebody’s idea of “good fun”.  They found a way into the admin page of my site, where they decided to have their way with my user comments.  They altered a few of them, making them appear as though I was writing my own comments and promoting myself in a rude and arrogant manner.  It actually took me a few weeks to finally be able to find out whom it was.  I had placed an admin IP watcher on my Wordpress blog, which notifies you of suspicious logins from unknown IP addresses.  I was then able to trace the IP address to someone I had previously worked with. This was a big wake up call to me &#8212; you never know who is watching your online profiles and waiting or looking for the opportunity to make a malicious move of destruction.  Since the occurrence, I have followed the 4 suggested items above regularly, because you just never know.</p>
<h4>Think Before You Post</h4>
<p>Now that you feel you have your privacy under control, the next thing I want to emphasis is being smart in what you choose to make visible to the masses out there on the Internet.  This is really where the whole etiquette part plays in.  The best way I can put it is “do unto others and you would have them do unto you”.  Whether you’re writing web content, blog posts, comments or status updates, only write things that you would feel comfortable saying in person.  Don’t try and hide behind a screename or being “anonymous” because as stated previously, if someone wants to find the original author bad enough, there’s always a way. Before you hit that “publish” button, stop and think about who might be viewing this and what, if any, ramifications may occur.  Honestly, all it takes is just one comment, blog post, online article, or status update to ruin a lifetime of profile building and resume development.  One thing to note is that many companies review all social profiles of  a future candidate.   Doing this has helped me in hiring individuals for freelance work or for the design teams that I have helped build at previous companies. I was often very surprised at how different the individuals appeared during their interview(s), as opposed to how they represented themselves online.</p>
<h4>Varying Site Usage and Profiles</h4>
<p>Now don’t be afraid to post things online due to the fact that a future employer might not agree with your opinions or personal beliefs that you may express on your profiles.  Being cautious does not mean you have to sacrifice in showing your personality.  You just need to have an understanding that not every social networking site is made for you to show any and everything about who you are. You can use each network for a particular use, such as using LinkedIn for your complete business profile and Facebook for all of your personal information.  However you decide to divide the two would be fine, just make sure that when you do divide them you continue to keep them separate.  Never combine your work and personal life in one profile.  If you have a personal profile and want to keep it personal, use the built-in security settings to make sure only people you choose and know can see the content. That does not mean that you can post whatever you want without consequence – there are many ways for a disgruntled “friend” to share the content of your profile with an unintended audience.</p>
<h4>Quality Not Quantity</h4>
<p>Think carefully before you send or accept friend requests.  What value would that person bring to your network?  Don’t just accept/invite everyone, you can’t be too careful when choosing friends.  The value of social networking is to leverage your contacts for referrals, business leads, new opportunities, etc. Only people who know you can help you. Also, just because you are friends with someone doesn’t mean you will be friends forever. Take time to occasionally review your friend list and get rid of people whose values and behavior don’t align with yours.  Recently I deleted over 250 friends from my Facebook account. I, too, got caught up in the buzz of having hundreds of friends in my network.  If you were one of these people, please don’t take it personally, as for most of you, it had nothing to do with who you are but just with what type of relationship we have.  All of my business contacts are now in my LinkedIn network and only close personal friends and family are in my Facebook network.  Trust me &#8212; you will get a far better value from a close network of 30-50 people than a network of 300-500 people that you hardly know.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.giblette.com/blog/marketing/social-networking-etiquette/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Fulfilling Your Calling as a Designer</title>
		<link>http://www.giblette.com/blog/ranting-and-raving/fulfilling-your-calling-as-a-designer/</link>
		<comments>http://www.giblette.com/blog/ranting-and-raving/fulfilling-your-calling-as-a-designer/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 19:29:06 +0000</pubDate>
		<dc:creator>Joshua Giblette</dc:creator>
				<category><![CDATA[Ranting and Raving]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Online Profile]]></category>

		<guid isPermaLink="false">http://www.giblette.com/?p=897</guid>
		<description><![CDATA[<p>One of the things I have come across a lot in designers that I have worked with, or have found online, is a lack of fulfillment in delivering their exact worth or measure.  Being a designer not only means you crank out crazy, revolutionary kick-a designs from your new&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>One of the things I have come across a lot in designers that I have worked with, or have found online, is a lack of fulfillment in delivering their exact worth or measure.  Being a designer not only means you crank out crazy, revolutionary kick-a designs from your new g5.  You&#8217;re more than that&#8230;well you&#8217;ll need to be if you are going to be a successful and accomplished in the field of design.</p>
<p>Nothing frustrates me more than to find a designer that has true, raw talent but lacks one very important element&#8230;confidence.  As a designer, you cannot only be a bottled up source of inspiration ready to explode onto print, web and any other favored medium. You need to be a salesman, ready to boast in stride about all of that creativity.  That&#8217;s right a salesman, I know, sometimes it seems that the usual stereotype of a salesman is far from the image you want to see in the mirror, some washed up high school/college athlete trying to sell something they truly don&#8217;t understand or comprehend.  That&#8217;s not at all what I mean.</p>
<h4>Your Responsibility</h4>
<p>It is your responsibility to sell to your client that there is a reason your ideas and creativity are worth the top dollar they should be paying you.  There are a lot of so called &#8220;designers&#8221; out there, and lets face it, sometimes the client is one of them. You cannot lack confidence in your work and ability, you need to be able to express the difference in quality in your work and the high school kid down the street.</p>
<p>It is also your responsibility to explain your methods and concepts in terms the client can understand.  Far too often I have seen designers/developers explain ideas in a way that is way too technical, it goes way over the client&#8217;s understanding, and in the end the idea is lost on the person who matters most, the client.  Even worse is when the designer doesn&#8217;t explain anything.  It&#8217;s too easy to get comfortable in thinking, &#8220;oh well this comes easy to me, so they&#8217;ll totally understand my thought process in this concept if I just send this design comp over in an email.&#8221;</p>
<p>Please, never assume that because something comes naturally and easy for you, that it will be the same for everyone else.  Take pride in your talents and remember that the client hired you for a reason. When delivering anything, always explain your concepts in the most non technical way as possible.  Also, if you have time, storyboard everything. It is so much easier to sell an idea with visual concepts.</p>
<h4>Don&#8217;t Under Sell</h4>
<p>This is another issue that seems to lie with designers green or veteran, they underbid their work.  You need to know what you are worth.  If you are charging $50 for logo and you feel you are creating great work, it&#8217;s time to rethink your pricing structure.  Your price is one element that sells you as a professional, people know that they get what they pay for.  By charging so little you undermine your talents and quality of work.  When you are charging you too little, you will appear to be no more a professional than your neighbor&#8217;s 16 year old nephew who &#8220;designs&#8221; websites in FrontPage­®.  Now if that&#8217;s what you want to be is the neighborhood kid who designs for the price of a tank of gas to get to the prom, then that&#8217;s fine, but that&#8217;s the farthest you&#8217;ll ever go.</p>
<p>Just know that clients <strong>are willing</strong> to pay what your product is really worth, if you can sell them on what sets you apart from the &#8220;nephew&#8221;.</p>
<h4>What Sets You Apart</h4>
<p>So what does set you apart?!?  College right?!?  Maybe.  College is great place to start, and to begin your knowledge and portfolio.  Here are a few things that set the design greats apart from the &#8220;nephews&#8221;: (in order of importance)</p>
<ol>
<li>Personality</li>
<li>Experience/Portfolio</li>
<li>Confidence</li>
<li>Thirst for knowledge</li>
<li>Ability to Listen</li>
<li>Communication/People Skills</li>
<li>Organization</li>
</ol>
<p>I have interviewed designers in the past for career opportunities and I rarely look at what College they attended.  I pay close attention to items listed above.  I would rather work with someone who has a great personality, amazing portfolio and can express their ideas and thoughts to me clearly, than someone you has a college degree, good portfolio and is a complete &#8220;jack-a&#8221;.</p>
<p>I am in no way saying college is not the way to, because it is.  All I am saying is there is so much more to design than a piece of paper or being able to recognize fonts at random. You need to be confident in your work and have the desire/ability to continue to learn.  You also need to be able to present your ideas with a level of enthusiasm that expresses, &#8220;Hey!  This is a one way street, it&#8217;s the way to go!&#8221;.  You have to know how to address all different types of people, as clients come in all shapes, sizes and personalities.  Last of all, being organized is a huge key to success, you need to remember your clients needs, and how you plan to accomplish them.</p>
<h4>Now get out there and sell</h4>
<p>So to wrap up this little rant, I just want to emphasize again, that if you want to be a successful designer, do not hide behind your Macbook or PC.  Get out there and express your ideas, explain your inspirations and sell, sell, sell.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.giblette.com/blog/ranting-and-raving/fulfilling-your-calling-as-a-designer/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>5 Minute Random Design Challenge</title>
		<link>http://www.giblette.com/blog/graphic-design/5-minute-random-design-challenge/</link>
		<comments>http://www.giblette.com/blog/graphic-design/5-minute-random-design-challenge/#comments</comments>
		<pubDate>Fri, 27 Feb 2009 19:40:33 +0000</pubDate>
		<dc:creator>Joshua Giblette</dc:creator>
				<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Practice]]></category>
		<category><![CDATA[Training]]></category>

		<guid isPermaLink="false">http://www.giblette.com/?p=901</guid>
		<description><![CDATA[<p>I am always looking for new ways to help further my skills in design and not only just for a certain medium or style. I constantly feel an urge to stretch and push the boundaries of my own skill sets and even design theories and practices in general.</p>
<p>In design,&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>I am always looking for new ways to help further my skills in design and not only just for a certain medium or style. I constantly feel an urge to stretch and push the boundaries of my own skill sets and even design theories and practices in general.</p>
<p>In design, you will always want to allow yourself enough time to go through multiple ideas, theories, concepts and revisions. This usually requires hours and hours of work. Having the antiquate amount of time allotted to a project can help make a designer relax and allow him/her to break &#8220;designer&#8217;s block&#8221; all together. With enough time allowed, the final product is always better than what the idea first started out as.</p>
<p>Now, for &#8220;training&#8221; if you will, I have tried to find new ways to stretch my process and refine my way of thinking through concepts and break the neediness I have for certain tools, practices, content and even time.  I have come to love a new way of &#8220;training&#8221; or pushing myself as a designer outside of my comfort zone. I found this idea posted by someone else via Facebook. I tried it and absolutely loved the thrill it gave, as it is different from everything I have ever done.</p>
<p>The Project is called <strong>&#8220;My New Band&#8217;s Album&#8221;</strong>, in which you create a CD cover for a new band. The trick is that the band&#8217;s name, album title and cover picture are all randomly generated&#8230;and you have to complete this &#8220;masterpiece&#8221; in under 5 minutes!<img title="More..." src="http://www.giblette.com/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /></p>
<h4><strong>Here are the rules:</strong></h4>
<p><strong>Challenge yourself to do this all within 5 minutes&#8230;.</strong></p>
<p>Make your band&#8217;s album cover:</p>
<p>1 &#8211; Go to Wikipedia. Hit “random”<br />
or click <a onmousedown="UntrustedLink.bootstrap($(this), &quot;0b60c7c1f62ceffadc9edabd6277422e&quot;, event)" rel="nofollow" href="http://en.wikipedia.org/wiki/Special:Random" target="_blank"><span>http://en.wikipedia.org/wiki/Specia</span>l:Random</a><br />
The first random Wikipedia article you get is the name of your band.</p>
<p>2 &#8211; Go to Quotations Page and select &#8220;random quotations&#8221;<br />
or click <a onmousedown="UntrustedLink.bootstrap($(this), &quot;0b60c7c1f62ceffadc9edabd6277422e&quot;, event)" rel="nofollow" href="http://www.quotationspage.com/random.php3" target="_blank"><span>http://www.quotationspage.com/rando</span>m.php3</a><br />
The last four or five words of the very last quote on the page is the title of your first album.</p>
<p>3 &#8211; Go to Flickr and click on “explore the last seven days”<br />
or click <a onmousedown="UntrustedLink.bootstrap($(this), &quot;0b60c7c1f62ceffadc9edabd6277422e&quot;, event)" rel="nofollow" href="http://www.flickr.com/explore/interesting/7days" target="_blank"><span>http://www.flickr.com/explore/inter</span>esting/7days</a><br />
Third picture, no matter what it is, will be your album cover.</p>
<p>4 &#8211; Use Photoshop  or similar to put it all together.</p>
<p>You can then take it one step further and share it via Facebook, as well as view what others have done.  Browsing others work can help inspire you in realizing what can or even cannot be done in under 5 minutes.</p>
<p>5 &#8211; Post it to Facebook.</p>
<p>6 &#8211; <a href="http://www.facebook.com/group.php?gid=53292118285#/group.php?gid=53292118285" target="_blank">Join the group and share your work!<br />
</a></p>
<p>I hope you found this to be a great way to help push yourself outside of your comfort zone as far as time and content are concerned.   It is really exciting to try and create something that is marketable, out of complete randomness in under 5 minutes!</p>
<p>Also below are some of my final results that I felt turned out the best.  Not all of the ones you create will be your favorites, but practice makes perfect.  <strong>Good luck and Have fun!</strong></p>
<p><img title="activeingredient" src="http://giblette.com/wp-content/uploads/2009/02/activeingredient.jpg" alt="activeingredient" width="500" height="500" /></p>
<p><img title="defense" src="http://giblette.com/wp-content/uploads/2009/02/defense.jpg" alt="defense" width="500" height="500" /></p>
<p><img title="24" src="http://giblette.com/wp-content/uploads/2009/02/24.jpg" alt="24" width="500" height="500" /></p>
<p><img title="god" src="http://giblette.com/wp-content/uploads/2009/02/god.jpg" alt="god" width="500" height="500" /></p>
<p><img title="licking" src="http://giblette.com/wp-content/uploads/2009/02/licking.jpg" alt="licking" width="500" height="500" /></p>
<p><img title="cassettes" src="http://giblette.com/wp-content/uploads/2009/02/cassettes.jpg" alt="cassettes" width="500" height="500" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.giblette.com/blog/graphic-design/5-minute-random-design-challenge/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Falling Out of Love with Lightbox&#8230;</title>
		<link>http://www.giblette.com/blog/web-development-blog/falling-out-of-love-with-lightbox/</link>
		<comments>http://www.giblette.com/blog/web-development-blog/falling-out-of-love-with-lightbox/#comments</comments>
		<pubDate>Wed, 11 Feb 2009 20:48:06 +0000</pubDate>
		<dc:creator>Joshua Giblette</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Image Galleries]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Lightbox]]></category>

		<guid isPermaLink="false">http://www.giblette.com/?p=910</guid>
		<description><![CDATA[<p>You know the moment you first hear a new song on the radio, and it makes you stop whatever you are thinking about our doing and you turn up the volume? Then you intensely listen towards the end to find out who sings it? It&#8217;s that wonderful feeling of&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>You know the moment you first hear a new song on the radio, and it makes you stop whatever you are thinking about our doing and you turn up the volume? Then you intensely listen towards the end to find out who sings it? It&#8217;s that wonderful feeling of finding something new and exhilarating! After awhile it seems everyone begins to love it, which is good. It means you have good taste in music&#8230;then you begin to notice that whenever you turn the radio on, there it is&#8230;there&#8217;s that song&#8230;on every station! That&#8217;s when it begins to get old and you can&#8217;t even stand to listen to it anymore, you hurry and change the channel, anxious to find something else.</p>
<p>This is how I feel about lightbox (and all of it&#8217;s predecessors) right about now.<br />
<img title="More..." src="http://www.giblette.com/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /><br />
Don&#8217;t get me wrong <a href="http://www.lokeshdhakar.com/" target="_blank">Lokesh Dhakar</a>, I think you have done a marvelous job on Lightbox, but just like an amazing artist who has a colossal hit that tops the charts, it has run it&#8217;s course (at least for me). Everywhere I look it&#8217;s being used, every new designer&#8217;s or photographer&#8217;s portfolio I find&#8230;there it is! Now there are a few who have taken it upon themselves to alter and adjust the script to help create a more cohesive feel with their site, and have even made very impressive style adjustments via CSS, kudos to all of you! On the other hand, most seem to just roll with the same white box, and are forgetting or don&#8217;t even try to advance their portfolio&#8217;s to be anything unique. The point of a portfolio is to help you standout from everyone else, if you&#8217;re not, then what&#8217;s the point? I know it&#8217;s like the pot calling the kettle black, I have been guilty too of over using it or it&#8217;s predecessors for simple gallery creations, but it&#8217;s time to move on.</p>
<p>The reason we all fell in love with Lightbox was that it was something unique, something we hadn&#8217;t seen before. The other big thing is that it&#8217;s simple to implement into any site, these two things make it addictive to designers. Designer&#8217;s need/want something to be unique, on the edge, dynamic and easy to use. So if you have seen anything or have been working on anything ground breaking, please share.</p>
<p>All I&#8217;m asking is that I want to see something new, I want to hear that next &#8220;underground hit&#8221; just waiting to emerge.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.giblette.com/blog/web-development-blog/falling-out-of-love-with-lightbox/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>You&#8217;re Invited</title>
		<link>http://www.giblette.com/blog/graphic-design/youre-invited/</link>
		<comments>http://www.giblette.com/blog/graphic-design/youre-invited/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 20:56:15 +0000</pubDate>
		<dc:creator>Joshua Giblette</dc:creator>
				<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Invitation Design]]></category>

		<guid isPermaLink="false">http://www.giblette.com/?p=918</guid>
		<description><![CDATA[<p>This last year and even so far this year, I have had a lot of requests for invitation design.  Mostly weddings or anniversaries, but  I usually don&#8217;t get a ton of invitation design jobs that roll my way, so when I do I love to stretch the bounds of&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>This last year and even so far this year, I have had a lot of requests for invitation design.  Mostly weddings or anniversaries, but  I usually don&#8217;t get a ton of invitation design jobs that roll my way, so when I do I love to stretch the bounds of the  &#8220;normal boring and generic trends&#8221; of invitation design.  We all get a few announcements  in the mail every year, and lets face it, how many of them actually make you look twice or even leave that big an impression?!?  Usually 6 months down the road you don&#8217;t even remember being invited.</p>
<p>An invitation should be the kickoff to great conversations for upcoming events, so I hope you enjoy my collection and feel inspired to go out and design with passion, creativity and purpose.<img title="More..." src="http://www.giblette.com/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /></p>
<p><img title="invite1" src="http://giblette.com/wp-content/uploads/2009/01/invite1.jpg" alt="invite1" width="509" height="1045" /></p>
<p><img title="invite2" src="http://giblette.com/wp-content/uploads/2009/01/invite2.jpg" alt="invite2" width="509" height="1045" /></p>
<p><img title="invite3" src="http://giblette.com/wp-content/uploads/2009/01/invite3.jpg" alt="invite3" width="509" height="1045" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.giblette.com/blog/graphic-design/youre-invited/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Branding with a Purpose</title>
		<link>http://www.giblette.com/blog/marketing/branding-with-a-purpose/</link>
		<comments>http://www.giblette.com/blog/marketing/branding-with-a-purpose/#comments</comments>
		<pubDate>Thu, 15 Jan 2009 22:52:11 +0000</pubDate>
		<dc:creator>Joshua Giblette</dc:creator>
				<category><![CDATA[Branding]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.giblette.com/?p=924</guid>
		<description><![CDATA[<p>Purpose or concept, it&#8217;s the idea behind every good marketing strategy, and it should be behind every corporate identity&#8230;but sadly enough it just isn&#8217;t.  We&#8217;ve all seen the &#8220;professionally designed&#8221; logos that plaster billboard ads, websites and other material, that just don&#8217;t seem to fit or make sense with&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>Purpose or concept, it&#8217;s the idea behind every good marketing strategy, and it should be behind every corporate identity&#8230;but sadly enough it just isn&#8217;t.  We&#8217;ve all seen the &#8220;professionally designed&#8221; logos that plaster billboard ads, websites and other material, that just don&#8217;t seem to fit or make sense with the image a company is trying to portray.  Or the logo just seems to have no point whatsoever, in that it feels like the &#8220;designer&#8221; just thought the 20px drop shadow &#8220;looked cool!&#8221; Well I thought I would give my two cents on the subject.  I want to provide you with some tips on what creates a good brand as well as show you some great existing brands.</p>
<h4><strong>tips to a great start on a new identity</strong></h4>
<ol>
<li><strong>Do some research! </strong>- You will always want to start by researching the company you will be branding to figure out what their goals and market audience is or will be.</li>
<li><strong>Take a look around</strong> &#8211; Look into current trends, and maybe even competing companies to really help you understand the market.</li>
<li><strong>The Spider Web</strong> &#8211; Now that you have some ideas what the company is all about, take out a piece of paper and pen.  Begin by writing down the company name in the middle of the paper and then like a spider web, start branching out with descriptive words about that company to help get your ideas out.  This will help you narrow down the purpose and symbolism your brand should entail.</li>
<p><img title="More..." src="http://www.giblette.com/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /></p>
<li><strong>Bust out the old sketch pad and pencil</strong> &#8211; Never go directly to Illustrator!  I have made this mistake in the past, and it takes so much longer to illustrate ideas on a computer than it does to quickly sketch them out.  Also don&#8217;t stop at the first good sketch, push yourself to do few more and then a few more.  Even though you may feel the first one is good, the one 30 more sketches down the road will be even better.</li>
<li><strong>Tweak it, tweak it, and then tweak it again</strong> &#8211; Enough said.</li>
<li><strong>Scan that sucker!</strong> &#8211; Once you feel you have expressed all of your ideas and paths on paper, it&#8217;s time to go digital.  The easiest way to transfer your idea to Illustrator is to scan it.  Then take that scanned image, no matter how rough, and place it in Illustrator.  Now lock that layer and begin to work on top of it.  You may go through many different rounds of that same logo in Illustrator, but once you have it you&#8217;ll know it.  You will also know that it is absolutely the most solid brand that your creative mind could produce.</li>
<li><strong>All done </strong>- Please know that there is never one correct, or one right answer for a branding solution, there are millions for each project, but your job as a designer is to find just one.</li>
</ol>
<h4>examples of brands with great purpose</h4>
<p><img title="logo-01" src="http://giblette.com/wp-content/uploads/2009/01/logo-01.jpg" alt="logo-01" width="565" height="208" /></p>
<h2>FedEx®</h2>
<p>See anything?  Some people notice the well crafted hidden message in this logo, but not many right away.  Yet it creates a feeling of urgency and speed, which is exactly the message FedEx wants to deliver.  There is no way that this beautifully crafted logo was created without hours of sketching, pondering and more sketching.</p>
<p><img title="logo-02" src="http://giblette.com/wp-content/uploads/2009/01/logo-02.jpg" alt="logo-02" width="565" height="208" /></p>
<h2>symantec®</h2>
<p><em>&#8220;It embodies the idea of symbiotic relationships, protection and security, balance with flexibility, and the undeniable synergy of two halves uniting to create a greater whole.&#8221; </em><strong>- symantec</strong> Interesting, see how they have used the Ying Yang to represent synergy?!?  Simple yet, symbolic.</p>
<p><img title="logo-031" src="http://giblette.com/wp-content/uploads/2009/01/logo-031.jpg" alt="logo-031" width="565" height="208" /></p>
<h2>nike®</h2>
<p>Ah, one of the kings of marketing.  Contrary to popular belief, the swoosh is not piece of a wing, it actually symbolizes a check mark.   The check mark helps express the feeling that &#8220;this product is good to go&#8221;, or &#8220;go ahead, purchase this one&#8221;.  It definitely helps express accomplishment in a very simple yet symbolic manner.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.giblette.com/blog/marketing/branding-with-a-purpose/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
