<?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>veryinspirational.com &#187; Articles</title>
	<atom:link href="http://veryinspirational.com/category/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://veryinspirational.com</link>
	<description></description>
	<lastBuildDate>Tue, 15 May 2012 05:02:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to make a twitter style &#8220;auto load&#8221; paging system with jQuery</title>
		<link>http://veryinspirational.com/blog/web-design-blog/2010/11/29/how-to-make-a-twitter-style-auto-load-paging-system-with-jquery/</link>
		<comments>http://veryinspirational.com/blog/web-design-blog/2010/11/29/how-to-make-a-twitter-style-auto-load-paging-system-with-jquery/#comments</comments>
		<pubDate>Mon, 29 Nov 2010 10:05:58 +0000</pubDate>
		<dc:creator>Melissa</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://veryinspirational.com/?p=6225</guid>
		<description><![CDATA[Paging is a method where you break a record set into multiple parts. Many of us with blogs and websites with multiple pages are used to the common "Prev  Next  Last" setup that allows us to navigate. ]]></description>
			<content:encoded><![CDATA[<p>Paging is a method where you break a record set into multiple parts. Many of us with blogs and websites with multiple pages are used to the common &#8220;Prev  Next  Last&#8221; setup that allows us to navigate. If you want something a little more comprehensive, you might even break the records up and show some paging numbers as well like &#8220;Prev 4 5 6 7 8 Next Last&#8221;.</p>
<p>But that&#8217;s just not very cool is it? <a href="http://twitter.com/markbiegel" target="_blank">Twitter</a> uses a system where you dont need to click next. The way that their content is delivered, the newest content is always at the top. Twitter might be a &#8220;micro blogging&#8221; system at heart, but this idea works with regular blog content as well. I have seen it in action on Tumblr and I have even implemented it on my own Opinion &amp; Discussion website.</p>
<p>We will be using PHP and Jquery to create a similar system.</p>
<p><strong>1: Lets start with setting up our initial data set.</strong></p>
<p>We are just going to pull 25 records from MySql and drop them into a list.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&lt;ul id=&quot;Results&quot;&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #000088;">$getFirstList</span> <span style="color: #339933;">=</span> <span style="color: #990000;">mysql_query</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;SELECT * FROM tableName ORDER BY id DESC Limit 25&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #b1b100;">while</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$listData</span> <span style="color: #339933;">=</span> <span style="color: #990000;">mysql_fetch_array</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$getFirstList</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;li&gt; Your Data goes Here! &lt;/li&gt;&quot;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$lastId</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$listData</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'id'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//just get keep the last ID of the set.</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;/ul&gt;</pre></div></div>

<p>
Above is a quick list and a simple way to grab the last ID of the result set, we are only getting 25 rows at a time right now so we dont need to be too complex.
</p>
<p><strong>2: The trigger.</strong><br />
We need a trigger to action the call for more results. I&#8217;m assuming that your 25 results will require the user to scroll to see them all, and with that in mind the trigger will be the final LI element in the list.<br />
Before the closing UL tag, insert this: <br/></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&lt;li id=&quot;more<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$lastId</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; class=&quot;morebox&quot;&gt;
	&lt;span id=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$lastId</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; class=&quot;more&quot;&gt;&lt;/span&gt;
&lt;/li&gt;</pre></div></div>

<p>
This list item will have the ID of the final result making it unique.</p>
<p><strong>3: Ajax processing.</strong><br />
We need a page that will load our extra results. This is a simple PHP/MySql query based on the variables that we send it. Here is a simple example:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
&nbsp;
<span style="color: #000088;">$lastId</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$_POST</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'lastId'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span> 
&nbsp;
<span style="color: #000088;">$getMoreList</span> <span style="color: #339933;">=</span> <span style="color: #990000;">mysql_query</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;SELECT * FROM tableName WHERE id &gt; '<span style="color: #006699; font-weight: bold;">$listId</span>' ORDER BY id DESC Limit 25&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #b1b100;">while</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$listData</span> <span style="color: #339933;">=</span> <span style="color: #990000;">mysql_fetch_array</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$getMoreList</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;li&gt; Your Data goes Here! &lt;/li&gt;&quot;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$lastId</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$listData</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'id'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//again, just get keep the last ID of the set.</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;li id=&quot;more<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$lastId</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; class=&quot;morebox&quot;&gt;
	&lt;span id=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$lastId</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; class=&quot;more&quot;&gt;&lt;/span&gt;
&lt;/li&gt;</pre></div></div>

<p>
In this, we regenerate the trigger with a new ID.</p>
<p><strong>4: jQuery to tie it all together.</strong></p>
<p>There is only a few steps here so I wont break it down too much. This is what we are going to do:<br />
	<strong>1:</strong> Initiate the script when the document is ready (document.ready function)<br />
	<strong>2:</strong> We set the container variable to &#8220;window&#8221;, and begin the function by looking for a &#8220;scroll&#8221; action. jQuery makes this simple by using the  <strong>.scroll()</strong> method.<br />
	<strong>3:</strong> Once we scroll, the ID of the trigger is set. If there is an ID then we can proceed.<br />
	<strong>4:</strong> We check the element&#8217;s position by using a custom function called belowFold(). This essentially checks to see if the trigger is NOT on the screen.<br />
	<strong>5:</strong> If it&#8217;s on the screen we continue by setting the trigger contents to show a loader.gif image.  We then do a simple POST to the PHP document that will load our next set of results. The only data we need to post is the ID of the LAST list element in the first set.<br />
	<strong>6:</strong> If the post was successfull, we load the new LI elements into place and remove the previous used trigger.</p>
<p>	Of cause if there is no ID, we set the trigger to be empty as there is no point loading nothing.</p>
<p><strong>The extra belowFold() function.</strong></p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">$.<span style="color: #660066;">belowFold</span> <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>element<span style="color: #339933;">,</span>container<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>container <span style="color: #339933;">===</span> undefined <span style="color: #339933;">||</span> container <span style="color: #339933;">===</span> window<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
            <span style="color: #003366; font-weight: bold;">var</span> pageFold <span style="color: #339933;">=</span> $<span style="color: #009900;">&#40;</span>window<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">height</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">+</span> $<span style="color: #009900;">&#40;</span>window<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">scrollTop</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span> <span style="color: #000066; font-weight: bold;">else</span> <span style="color: #009900;">&#123;</span>
            <span style="color: #003366; font-weight: bold;">var</span> pageFold <span style="color: #339933;">=</span> $<span style="color: #009900;">&#40;</span>container<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">offset</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">top</span> <span style="color: #339933;">+</span> $<span style="color: #009900;">&#40;</span>container<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">height</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
        <span style="color: #000066; font-weight: bold;">return</span> pageFold <span style="color: #339933;">&lt;=</span> $<span style="color: #009900;">&#40;</span>element<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">offset</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">top</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span></pre></div></div>

<p>This is a simple funtion that just checks the height of the window against the position of the trigger.</p>
<p>
<strong>Here is the complete jQuery function:</strong></p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span>document<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">ready</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
&nbsp;
	<span style="color: #003366; font-weight: bold;">var</span> container <span style="color: #339933;">=</span> window<span style="color: #339933;">;</span>
&nbsp;
	$<span style="color: #009900;">&#40;</span>container<span style="color: #009900;">&#41;</span>.<span style="color: #000066;">scroll</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> 
	<span style="color: #003366; font-weight: bold;">var</span> element <span style="color: #339933;">=</span> $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;.morebox&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>  
	<span style="color: #003366; font-weight: bold;">var</span> ID <span style="color: #339933;">=</span> $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'.more'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">attr</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;id&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span>ID<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>		             
			<span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span>$.<span style="color: #660066;">belowFold</span><span style="color: #009900;">&#40;</span>element<span style="color: #339933;">,</span>container<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
				$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#more&quot;</span><span style="color: #339933;">+</span>ID<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">html</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'&lt;img src=&quot;/images/loader.gif&quot; /&gt;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
				$.<span style="color: #660066;">post</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;/more.php&quot;</span><span style="color: #339933;">,</span> <span style="color: #009900;">&#123;</span> lastmsg<span style="color: #339933;">:</span>  ID <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span>
						   <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>data<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
							$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;ul#Results&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">append</span><span style="color: #009900;">&#40;</span>data<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
							$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#more&quot;</span><span style="color: #339933;">+</span>ID<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">remove</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
						   <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
				<span style="color: #009900;">&#125;</span>
		<span style="color: #009900;">&#125;</span><span style="color: #000066; font-weight: bold;">else</span><span style="color: #009900;">&#123;</span>
			$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;.morebox&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">html</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">''</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #009900;">&#125;</span>
	<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
$.<span style="color: #660066;">belowFold</span> <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>element<span style="color: #339933;">,</span>container<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>container <span style="color: #339933;">===</span> undefined <span style="color: #339933;">||</span> container <span style="color: #339933;">===</span> window<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
            <span style="color: #003366; font-weight: bold;">var</span> pageFold <span style="color: #339933;">=</span> $<span style="color: #009900;">&#40;</span>window<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">height</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">+</span> $<span style="color: #009900;">&#40;</span>window<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">scrollTop</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span> <span style="color: #000066; font-weight: bold;">else</span> <span style="color: #009900;">&#123;</span>
            <span style="color: #003366; font-weight: bold;">var</span> pageFold <span style="color: #339933;">=</span> $<span style="color: #009900;">&#40;</span>container<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">offset</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">top</span> <span style="color: #339933;">+</span> $<span style="color: #009900;">&#40;</span>container<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">height</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
        <span style="color: #000066; font-weight: bold;">return</span> pageFold <span style="color: #339933;">&lt;=</span> $<span style="color: #009900;">&#40;</span>element<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">offset</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">top</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>
And thats it. </p>
]]></content:encoded>
			<wfw:commentRss>http://veryinspirational.com/blog/web-design-blog/2010/11/29/how-to-make-a-twitter-style-auto-load-paging-system-with-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Amazing uses of JavaScript</title>
		<link>http://veryinspirational.com/blog/web-design-blog/2010/11/23/amazing-uses-of-javascript/</link>
		<comments>http://veryinspirational.com/blog/web-design-blog/2010/11/23/amazing-uses-of-javascript/#comments</comments>
		<pubDate>Tue, 23 Nov 2010 03:20:01 +0000</pubDate>
		<dc:creator>Melissa</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[effects]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://veryinspirational.com/?p=6189</guid>
		<description><![CDATA[The internet has become a much more colorful and moveable world since the advancement is JavaScript, CSS and other web languages. We are now able to breath new life into website design without using clunky 3rd party plugins.]]></description>
			<content:encoded><![CDATA[<p>The internet has become a much more colorful and moveable world since the advancement is JavaScript, CSS and other web languages. We are now able to breath new life into website design without using clunky 3rd party plugins. Although some of these effects can not be created for all Internet web browsers, if you know your market and you are confident that your website would still be functional with the effect removed, then why not add some new dimension to your design.</p>
<p><strong>Lets take a look at some outstanding uses of JavaScript (and their other supporting languages).</strong></p>
<p><a href="http://me.com" target="_blank"><img class="alignnone size-full wp-image-6194" title="mobileme" src="http://veryinspirational.com/wp-content/uploads/2010/11/mobileme.jpg" alt="" width="600" height="400" /></a><br />
Apple&#8217;s mobile me website is using a combination of canvas tag and thousands of lines of JS to acheive its outstanding interface effects.</p>
<p><a href="http://dragoninteractive.com" target="_blank"><img class="alignnone size-full wp-image-6196" title="rainbows" src="http://veryinspirational.com/wp-content/uploads/2010/11/rainbows.jpg" alt="" width="600" height="400" /></a><br />
Amazing. Simply amazing combination of JavaScript and CSS. You have to hand it to dragoninteractive, they really know how to turn heads with their experiments.</p>
<p><a href="http://alexbuga.com" target="_blank"><img class="alignnone size-full wp-image-6198" title="alexbuga" src="http://veryinspirational.com/wp-content/uploads/2010/11/alexbuga.jpg" alt="" width="600" height="400" /></a><br />
Seriously cool setup. Page scrolling, interactive everything and all with JavaScript.<br />
Just navigating around this website is a great user experience. This to me breaks the &#8216;flat page&#8217; feel that a website can have.</p>
<p><a href="http://youlove.us" target="_blank"><img class="alignnone size-full wp-image-6200" title="youloveus" src="http://veryinspirational.com/wp-content/uploads/2010/11/youloveus.jpg" alt="" width="600" height="400" /></a><br />
The cloud moving background that gives this website its dimension is using a JavaScript background positioning system. Scroll down to the footer and you will see the same thing with a nice city horizon. It give the website a great visual experince.</p>
<p><a href="http://greenanysite.com" target="_blank"><img class="alignnone size-full wp-image-6201" title="green" src="http://veryinspirational.com/wp-content/uploads/2010/11/green.jpg" alt="" width="600" height="400" /></a><br />
Not only is this website pretty, the page curl in the top right is a neat JavaScript effect.</p>
<p><a href="http://fuelbrandinc.com" target="_blank"><img class="alignnone size-full wp-image-6202" title="fuel" src="http://veryinspirational.com/wp-content/uploads/2010/11/fuel.jpg" alt="" width="600" height="400" /></a><br />
Fuel&#8217;s website shows a great use of color transitions and movement. It&#8217;s simple design and clean navigation lets your eyes be filled with the smooth transitions, resulting is a very professional experience.</p>
<p><a href="http://howarths.nl" target="_blank"><img class="alignnone size-full wp-image-6203" title="howarths" src="http://veryinspirational.com/wp-content/uploads/2010/11/howarths.jpg" alt="" width="600" height="400" /></a><br />
While the effects are not very &#8220;fancy&#8221;, they are elegant transitions and fades that all use JavaScript and CSS to deliver a very nice website that has class.</p>
<p><a href="http://mediocore.cz/" target="_blank"><img class="alignnone size-full wp-image-6204" title="mediocore" src="http://veryinspirational.com/wp-content/uploads/2010/11/mediocore.jpg" alt="" width="600" height="400" /></a><br />
This portfolio website has simple actions, but with the help of JavaScript and CSS it is delivered with a solid app feel.</p>
<p><a href="http://www.monofactor.com/" target="_blank"><img class="alignnone size-full wp-image-6205" title="monofactor" src="http://veryinspirational.com/wp-content/uploads/2010/11/monofactor.jpg" alt="" width="600" height="400" /></a><br />
MonoFactor uses a nice scrolling system that shuffles both content and showcase images in two different areas.</p>
<p><a href="http://www.nihilogic.dk/labs/wolf/" target="_blank"><img class="alignnone size-full wp-image-6207" title="wolf" src="http://veryinspirational.com/wp-content/uploads/2010/11/wolf.jpg" alt="" width="600" height="375" /></a><br />
And just for fun, to show the power of what can be done. Here is <strong>Wolfenstein 3D</strong> using javascript and the canvas tag.</p>
]]></content:encoded>
			<wfw:commentRss>http://veryinspirational.com/blog/web-design-blog/2010/11/23/amazing-uses-of-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>15 Very Creative Business Card Designs</title>
		<link>http://veryinspirational.com/blog/inspiration-blog/2010/11/15/15-very-creative-business-card-designs/</link>
		<comments>http://veryinspirational.com/blog/inspiration-blog/2010/11/15/15-very-creative-business-card-designs/#comments</comments>
		<pubDate>Mon, 15 Nov 2010 03:06:07 +0000</pubDate>
		<dc:creator>Melissa</dc:creator>
				<category><![CDATA[Inspiration]]></category>

		<guid isPermaLink="false">http://veryinspirational.com/?p=6024</guid>
		<description><![CDATA[First impressions are everything, and when you are working in the creative industry your personal stationary should not only be high quality but also well planned and thought out. ]]></description>
			<content:encoded><![CDATA[<p>First impressions are everything, and when you are working in the creative industry your personal stationary should not only be high quality but also well planned and thought out. Take these business cards as an example. Each has taken the business that it represents and crafted a high quality, funtional and most importantly rememberable business card.</p>
<p><img class="alignnone size-full wp-image-3396" title="327MarkRamadan" src="http://veryinspirational.com/wp-content/uploads/2010/06/327MarkRamadan.jpg" alt="" width="550" height="348" /></p>
<p><img class="alignnone size-full wp-image-3430" title="626TheDarllingRoom" src="http://veryinspirational.com/wp-content/uploads/2010/06/626TheDarllingRoom.jpg" alt="" width="550" height="443" /></p>
<p><img class="alignnone size-full wp-image-3459" title="867Bunny" src="http://veryinspirational.com/wp-content/uploads/2010/06/867Bunny.jpg" alt="" width="550" height="368" /></p>
<p><img class="alignnone size-full wp-image-3372" title="120EmersonTaymor" src="http://veryinspirational.com/wp-content/uploads/2010/06/120EmersonTaymor.jpg" alt="" width="550" height="561" /></p>
<p><img class="alignnone size-full wp-image-3452" title="817Orderin" src="http://veryinspirational.com/wp-content/uploads/2010/06/817Orderin.jpg" alt="" width="550" height="293" /></p>
<p><img class="alignnone size-full wp-image-3374" title="143TheFarm" src="http://veryinspirational.com/wp-content/uploads/2010/06/143TheFarm.jpg" alt="" width="550" height="412" /></p>
<p><img class="alignnone size-full wp-image-3476" title="990LuiceDesign" src="http://veryinspirational.com/wp-content/uploads/2010/06/990LuiceDesign.jpg" alt="" width="550" height="498" /></p>
<p><img class="alignnone size-full wp-image-3413" title="469Stylish" src="http://veryinspirational.com/wp-content/uploads/2010/06/469Stylish.jpg" alt="" width="550" height="401" /></p>
<p><img class="alignnone size-full wp-image-3433" title="663AWPExpress" src="http://veryinspirational.com/wp-content/uploads/2010/06/663AWPExpress.jpg" alt="" width="550" height="332" /></p>
<p><img class="alignnone size-full wp-image-3385" title="227DJTurntable" src="http://veryinspirational.com/wp-content/uploads/2010/06/227DJTurntable.jpg" alt="" width="550" height="354" /></p>
<p><img class="alignnone size-full wp-image-3477" title="990Popout" src="http://veryinspirational.com/wp-content/uploads/2010/06/990Popout.jpg" alt="" width="550" height="751" /></p>
<p><img class="alignnone size-full wp-image-3367" title="64TagCommunicationServices" src="http://veryinspirational.com/wp-content/uploads/2010/06/64TagCommunicationServices.jpg" alt="" width="550" height="412" /></p>
<p><img class="alignnone size-full wp-image-3468" title="918NinjaBTL" src="http://veryinspirational.com/wp-content/uploads/2010/06/918NinjaBTL.jpg" alt="" width="550" height="376" /></p>
<p><img class="alignnone size-full wp-image-3442" title="720ConcealedWeapon" src="http://veryinspirational.com/wp-content/uploads/2010/06/720ConcealedWeapon.jpg" alt="" width="550" height="512" /></p>
<p><img class="alignnone size-full wp-image-3429" title="621Modhair" src="http://veryinspirational.com/wp-content/uploads/2010/06/621Modhair.jpg" alt="" width="550" height="400" /></p>
<p>So after looking at these fine examples of creative business cards. How important is a business card to you?</p>
]]></content:encoded>
			<wfw:commentRss>http://veryinspirational.com/blog/inspiration-blog/2010/11/15/15-very-creative-business-card-designs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The design evolution of Twitter</title>
		<link>http://veryinspirational.com/blog/inspiration-blog/2010/11/09/the-design-evolution-of-twitter/</link>
		<comments>http://veryinspirational.com/blog/inspiration-blog/2010/11/09/the-design-evolution-of-twitter/#comments</comments>
		<pubDate>Tue, 09 Nov 2010 15:35:35 +0000</pubDate>
		<dc:creator>Melissa</dc:creator>
				<category><![CDATA[Inspiration]]></category>

		<guid isPermaLink="false">http://veryinspirational.com/?p=6000</guid>
		<description><![CDATA[From SMS to Web and Twttr.com to Twitter.com, this little blue bird has changed the way we communicate possibly forever. But where did it all start and how did Twitter go from a brainstorming idea to a world leading social network with one of the most unique simplistic designs around? For the designers out there here is a visual showcase of the evolution of Twitter and how it's look has developed over time.]]></description>
			<content:encoded><![CDATA[<p>From SMS to Web and Twttr.com to Twitter.com, this little blue bird has changed the way we communicate possibly forever. But where did it all start and how did Twitter go from a brainstorming idea to a world leading social network with one of the most unique simplistic designs around? For the designers out there here is a small visual showcase of the evolution of Twitter and how it&#8217;s look has developed over time.</p>
<p>We can all benefit and learn from these examples. What this shows is that when you are developing a website it&#8217;s the idea that is important. When you craft your idea, be it a blog or a service, getting the function right is the most important step. Once you have the website working as you want it, refining the design becomes a task of updating the look the a more modern feel while accommodating for extra features.</p>
<p>It&#8217;s the golden rule of SEO, Content is king. And it when it comes to service websites content, being the functions, is king. Nail this and then refine your design.</p>
<p>So lets take a look at the design evolution of Twitter.</p>
<p><img class="alignnone size-full wp-image-6002" title="twitter1" src="http://veryinspirational.com/wp-content/uploads/2010/11/twitter1.jpg" alt="" width="550" height="512" /></p>
<p>As with most projects, it all starts with a sketch and the idea is born.</p>
<p><img class="alignnone size-full wp-image-6003" title="twitter2" src="http://veryinspirational.com/wp-content/uploads/2010/11/twitter2.jpg" alt="" width="550" height="509" /></p>
<p>Almost all early concepts are nice and basic to allow all the user functionality to be refined and mastered.</p>
<p><img class="alignnone size-full wp-image-6004" title="twitter3" src="http://veryinspirational.com/wp-content/uploads/2010/11/twitter3.jpg" alt="" width="550" height="543" /></p>
<p>Initial designs take form using a color system and logo with main elements placed.</p>
<p><img class="alignnone size-full wp-image-6005" title="twitter4" src="http://veryinspirational.com/wp-content/uploads/2010/11/twitter4.jpg" alt="" width="550" height="386" /></p>
<p>Another design revision sees the entry of the Twitter bird</p>
<p><img class="alignnone size-full wp-image-6006" title="twitter5" src="http://veryinspirational.com/wp-content/uploads/2010/11/twitter5.jpg" alt="" width="550" height="298" /></p>
<p>Possibly the first design of what we all know Twitter to look like now.</p>
<p><img class="alignnone size-full wp-image-6007" title="twitter6" src="http://veryinspirational.com/wp-content/uploads/2010/11/twitter6.jpg" alt="" width="550" height="365" /></p>
<p>And now we have the latest,  most &#8220;movable&#8221; front page of Twitter. It&#8217;s stylish. I&#8217;ts dynamic. And it shows what Twitter is all about.</p>
<p><img class="alignnone size-full wp-image-6010" title="twitterInternal1" src="http://veryinspirational.com/wp-content/uploads/2010/11/twitterInternal1.jpg" alt="" width="550" height="426" /></p>
<p><img class="alignnone size-full wp-image-6011" title="twitterInternal2" src="http://veryinspirational.com/wp-content/uploads/2010/11/twitterInternal2.jpg" alt="" width="550" height="369" /></p>
<p><img class="alignnone size-full wp-image-6012" title="twitterInternal3" src="http://veryinspirational.com/wp-content/uploads/2010/11/twitterInternal3.jpg" alt="" width="550" height="369" /></p>
<p>While the Internal view of Twitter has also changed a bit, here is the major change in their layout structure and functionality</p>
]]></content:encoded>
			<wfw:commentRss>http://veryinspirational.com/blog/inspiration-blog/2010/11/09/the-design-evolution-of-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Halloween 2010 Inspiration</title>
		<link>http://veryinspirational.com/blog/inspiration-blog/2010/10/24/halloween-2010-inspiration/</link>
		<comments>http://veryinspirational.com/blog/inspiration-blog/2010/10/24/halloween-2010-inspiration/#comments</comments>
		<pubDate>Sun, 24 Oct 2010 12:58:34 +0000</pubDate>
		<dc:creator>Melissa</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[halloween]]></category>

		<guid isPermaLink="false">http://veryinspirational.com/?p=5881</guid>
		<description><![CDATA[With Halloween on the way we thought it would be a good idea to showcase some great Halloween digital art.
So without delay, here is some great Halloween inspiration from deviant art.]]></description>
			<content:encoded><![CDATA[<p>With Halloween on the way we thought it would be a good idea to showcase some great Halloween digital art.</p>
<p>So without delay, here is some great Halloween inspiration from deviant art.<br />
<a href="http://halloweengirl.deviantart.com/art/halloween-24394132"><img class="alignnone size-full wp-image-5884" title="halloween_by_HalloweenGirl" src="http://veryinspirational.com/wp-content/uploads/2010/10/halloween_by_HalloweenGirl.jpg" alt="" width="550" height="761" /></a></p>
<p><a href="http://yaichino.deviantart.com/art/Happy-Halloween-141984016"><img class="alignnone size-full wp-image-5892" title="Happy_Halloween_by_yaichino" src="http://veryinspirational.com/wp-content/uploads/2010/10/Happy_Halloween_by_yaichino.jpg" alt="" width="550" height="778" /></a></p>
<p><a href="http://oliko.deviantart.com/art/Happy-Halloween-2008-102301398"><img class="alignnone size-full wp-image-5891" title="Happy_Halloween_2008___by_oliko" src="http://veryinspirational.com/wp-content/uploads/2010/10/Happy_Halloween_2008___by_oliko.jpg" alt="" width="550" height="541" /></a></p>
<p><a href="http://vladstudio.deviantart.com/art/Halloween-Kitten-139357977"><img class="alignnone size-full wp-image-5889" title="Halloween_Kitten_by_vladstudio" src="http://veryinspirational.com/wp-content/uploads/2010/10/Halloween_Kitten_by_vladstudio.jpg" alt="" width="550" height="413" /></a></p>
<p><a href="http://sugargrl14.deviantart.com/art/Halloween-102206503"><img class="alignnone size-full wp-image-5888" title="Halloween_by_Sugargrl14" src="http://veryinspirational.com/wp-content/uploads/2010/10/Halloween_by_Sugargrl14.jpg" alt="" width="550" height="366" /></a></p>
<p><a href="http://kissmysteffy.deviantart.com/art/halloween-35219160"><img class="alignnone size-full wp-image-5886" title="halloween_by_kissmysteffy" src="http://veryinspirational.com/wp-content/uploads/2010/10/halloween_by_kissmysteffy.jpg" alt="" width="550" height="698" /></a></p>
<p><a href="http://jtotheotothee.deviantart.com/art/Halloween-180798858"><img class="alignnone size-full wp-image-5885" title="halloween_by_jtotheotothee-d2zn5ai" src="http://veryinspirational.com/wp-content/uploads/2010/10/halloween_by_jtotheotothee-d2zn5ai.jpg" alt="" width="550" height="806" /></a></p>
<p><a href="http://dusteramaranth.deviantart.com/art/Halloween-100876377"><img class="alignnone size-full wp-image-5883" title="Halloween_by_DusterAmaranth" src="http://veryinspirational.com/wp-content/uploads/2010/10/Halloween_by_DusterAmaranth.jpg" alt="" width="550" height="550" /></a></p>
<p><a href="http://pronouncedyou.deviantart.com/art/cute-halloween-100077451 "><img class="alignnone size-full wp-image-5882" title="cute_halloween_by_pronouncedyou" src="http://veryinspirational.com/wp-content/uploads/2010/10/cute_halloween_by_pronouncedyou.jpg" alt="" width="550" height="356" /></a></p>
<p><a href="http://martinabel.deviantart.com/art/Halloween-131070698"><img class="alignnone size-full wp-image-5887" title="Halloween_by_martinabel" src="http://veryinspirational.com/wp-content/uploads/2010/10/Halloween_by_martinabel.jpg" alt="" width="478" height="709" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://veryinspirational.com/blog/inspiration-blog/2010/10/24/halloween-2010-inspiration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>15 Detailed Vector Cars and Motorbikes</title>
		<link>http://veryinspirational.com/blog/inspiration-blog/2010/10/20/15-detailed-vector-cars-and-motorbikes/</link>
		<comments>http://veryinspirational.com/blog/inspiration-blog/2010/10/20/15-detailed-vector-cars-and-motorbikes/#comments</comments>
		<pubDate>Wed, 20 Oct 2010 02:48:16 +0000</pubDate>
		<dc:creator>Melissa</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[cars]]></category>
		<category><![CDATA[motorbikes]]></category>
		<category><![CDATA[vector]]></category>

		<guid isPermaLink="false">http://veryinspirational.com/?p=5917</guid>
		<description><![CDATA[One thing that every design can appreciate is great detailed vector artwork.<br /> Here is a collection of vector cars and motorbikes for your visual pleasure.]]></description>
			<content:encoded><![CDATA[<p>One thing that every design can appreciate is great detailed vector artwork.<br />
Here is a collection of vector cars and motorbikes for your visual pleasure.</p>
<p><a href="http://dangeruss.deviantart.com/art/Honda-NAS-Vector-24296106" target="_blank"><img class="alignnone size-full wp-image-5910" title="Honda_NAS___Vector_by_dangeruss" src="http://veryinspirational.com/wp-content/uploads/2010/10/Honda_NAS___Vector_by_dangeruss.jpg" alt="" width="550" height="423" /></a></p>
<p><a href="http://designerlizard.deviantart.com/art/V-Rex-Motorbike-90532550" target="_blank"><img class="alignnone size-full wp-image-5915" title="V_Rex_Motorbike_by_designerlizard" src="http://veryinspirational.com/wp-content/uploads/2010/10/V_Rex_Motorbike_by_designerlizard.jpg" alt="" width="550" height="353" /></a></p>
<p><a href="http://nrslkrkc.deviantart.com/art/YAMAHA-VECTOR-73620916" target="_blank"><img class="alignnone size-full wp-image-5916" title="YAMAHA_VECTOR_by_nrslkrkc" src="http://veryinspirational.com/wp-content/uploads/2010/10/YAMAHA_VECTOR_by_nrslkrkc.jpg" alt="" width="550" height="404" /></a></p>
<p><a href="http://luftwaffles.deviantart.com/art/Old-Ducati-Multistrada-72589127" target="_blank"><img class="alignnone size-full wp-image-5913" title="Old___Ducati_Multistrada_by_Luftwaffles" src="http://veryinspirational.com/wp-content/uploads/2010/10/Old___Ducati_Multistrada_by_Luftwaffles.jpg" alt="" width="550" height="360" /></a></p>
<p><a href="http://p3nx.deviantart.com/art/Saleen-S7R-Vector-48848358" target="_blank"><img class="alignnone size-full wp-image-5914" title="Saleen_S7R_Vector_by_p3nx" src="http://veryinspirational.com/wp-content/uploads/2010/10/Saleen_S7R_Vector_by_p3nx.jpg" alt="" width="550" height="353" /></a></p>
<p><a href="http://dewoodesign.deviantart.com/art/Lamborghini-vector-114022348" target="_blank"><img class="alignnone size-full wp-image-5911" title="Lamborghini_vector_by_Dewoodesign" src="http://veryinspirational.com/wp-content/uploads/2010/10/Lamborghini_vector_by_Dewoodesign.png" alt="" width="550" height="375" /></a></p>
<p><a href="http://jenniii.deviantart.com/art/motorbike-34076368" target="_blank"><img class="alignnone size-full wp-image-5912" title="motorbike_by_Jenniii" src="http://veryinspirational.com/wp-content/uploads/2010/10/motorbike_by_Jenniii.jpg" alt="" width="550" height="431" /></a></p>
<p><a href="http://dangeruss.deviantart.com/art/C-West-Skyline-Vector-17843240" target="_blank"><img class="alignnone size-full wp-image-5904" title="C_West_Skyline___Vector_by_dangeruss" src="http://veryinspirational.com/wp-content/uploads/2010/10/C_West_Skyline___Vector_by_dangeruss.jpg" alt="" width="550" height="332" /></a></p>
<p><a href="http://type1design.deviantart.com/art/60-s-beetle-vector-95962817" target="_blank"><img class="alignnone size-full wp-image-5903" title="60__s_beetle_vector_by_Type1design" src="http://veryinspirational.com/wp-content/uploads/2010/10/60__s_beetle_vector_by_Type1design.jpg" alt="" width="550" height="365" /></a></p>
<p><a href="http://bmackey.deviantart.com/art/Vector-Car-88805402" target="_blank"><img class="alignnone size-full wp-image-5902" title="3afc0bdcda4a5edc1dd9456edfbd6af8" src="http://veryinspirational.com/wp-content/uploads/2010/10/3afc0bdcda4a5edc1dd9456edfbd6af8.jpg" alt="" width="550" height="360" /></a></p>
<p><a href="http://turketo.deviantart.com/art/Efigy-Holden-Concept-Car-31631798" target="_blank"><img class="alignnone size-full wp-image-5908" title="Efigy___Holden_Concept_Car_by_Turketo" src="http://veryinspirational.com/wp-content/uploads/2010/10/Efigy___Holden_Concept_Car_by_Turketo.jpg" alt="" width="550" height="337" /></a></p>
<p><a href="http://j-s-n.deviantart.com/art/Ferrari-F430-WP-Vector-20266876" target="_blank"><img class="alignnone size-full wp-image-5909" title="Ferrari_F430_WP___Vector_by_j_s_n" src="http://veryinspirational.com/wp-content/uploads/2010/10/Ferrari_F430_WP___Vector_by_j_s_n.jpg" alt="" width="550" height="291" /></a></p>
<p><a href="http://dangeruss.deviantart.com/art/Civic-SS-Vector-20570003" target="_blank"><img class="alignnone size-full wp-image-5905" title="Civic_SS___Vector_by_dangeruss" src="http://veryinspirational.com/wp-content/uploads/2010/10/Civic_SS___Vector_by_dangeruss.jpg" alt="" width="550" height="341" /></a></p>
<p><a href="http://tasha25.deviantart.com/art/Harley-Davidson-Vector-28395850" target="_blank"><img class="alignnone size-full wp-image-5907" title="e303e1f44eed106cad1f2124cc298487" src="http://veryinspirational.com/wp-content/uploads/2010/10/e303e1f44eed106cad1f2124cc298487.png" alt="" width="550" height="482" /></a></p>
<p><a href="http://wrofee.deviantart.com/art/Dodge-Challenger-Vector-111050900" target="_blank"><img class="alignnone size-full wp-image-5906" title="Dodge_Challenger_Vector_by_Wrofee" src="http://veryinspirational.com/wp-content/uploads/2010/10/Dodge_Challenger_Vector_by_Wrofee.jpg" alt="" width="550" height="341" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://veryinspirational.com/blog/inspiration-blog/2010/10/20/15-detailed-vector-cars-and-motorbikes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>9 Websites offering Quality Free WordPress Themes</title>
		<link>http://veryinspirational.com/blog/web-design-blog/2010/10/13/9-websites-offering-quality-free-wordpress-themes/</link>
		<comments>http://veryinspirational.com/blog/web-design-blog/2010/10/13/9-websites-offering-quality-free-wordpress-themes/#comments</comments>
		<pubDate>Wed, 13 Oct 2010 02:23:50 +0000</pubDate>
		<dc:creator>Melissa</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://veryinspirational.com/?p=5851</guid>
		<description><![CDATA[When you are starting out designing for Wordpress it can be daunting to understand just how those fantastically designed websites that you see are constructed. How do they get their custom designs to display particular data and just how did they manage to get their layout to look so good and yet so different from the default Wordpress themes?, you ask.]]></description>
			<content:encoded><![CDATA[<p>When you are starting out designing for WordPress it can be daunting to understand just how those fantastically designed websites that you see are constructed. How do they get their custom designs to display particular data and just how did they manage to get their layout to look so good and yet so different from the default WordPress themes?, you ask.</p>
<p>One of the best ways to learn is through example. So here is a small list of websites that you can keep an eye on and get some great <strong>free WordPress themes</strong>.</p>
<p>These are free themes and we encourage you to download them and learn form their structure and then create your own themes with a better understanding of how they come together.</p>
<p><a href="http://www.woothemes.com" target="_blank">http://www.woothemes.com</a><br />
Woo Themes are one of the best theme creation companies around. All their designs are solid and the code behind their themes are clean and professional. While Woo Themes sell great themes they also offer some free themes.</p>
<p><a href="http://www.woothemes.com" target="_blank"><img class="alignnone size-full wp-image-5859" title="woothemes" src="http://veryinspirational.com/wp-content/uploads/2010/10/woothemes.jpg" alt="" width="550" height="353" /></a></p>
<p><a href="http://newwpthemes.com" target="_blank">http://newwpthemes.com</a><br />
NewWPThemes.com is a leading and trustworthy free WordPress themes provider. All themes listed are 100% unique, designed and developed by their staff, 100% free for personal or commercial use and licensed under creative commons license. All of their themes are updated, supported and always compatible with latest WordPress versions.</p>
<p><a href="http://newwpthemes.com" target="_blank"><img class="alignnone size-full wp-image-5855" title="newwpthemes" src="http://veryinspirational.com/wp-content/uploads/2010/10/newwpthemes.jpg" alt="" width="550" height="353" /></a></p>
<p><a href="http://www.skinpress.com" target="_blank">http://www.skinpress.com</a><br />
Skinpress.com offer high quality free wordpress themes that support widgets, adsense and banner advertising slots. Their templates also have twitter support.<br />
They also offer blogger, zen cart, website templates and flash intro files.</p>
<p><a href="http://www.skinpress.com" target="_blank"><img class="alignnone size-full wp-image-5857" title="skinpress" src="http://veryinspirational.com/wp-content/uploads/2010/10/skinpress.jpg" alt="" width="550" height="334" /></a></p>
<p><a href="http://freebiesdock.com" target="_blank">http://freebiesdock.com</a><br />
FreebiesDock.com is a collection of completely free design resources. All the products you’ll see there are created exclusively for FreebiesDock and you won’t see them anywhere else.</p>
<p><a href="http://freebiesdock.com" target="_blank"><img class="alignnone size-full wp-image-5853" title="freebiesdock" src="http://veryinspirational.com/wp-content/uploads/2010/10/freebiesdock.jpg" alt="" width="550" height="334" /></a></p>
<p><a href="http://wpcrunchy.com" target="_blank">http://wpcrunchy.com</a><br />
Wpcrunchy is a place where you can find premium quality wordpress themes. All themes come packed with handy features to get your website up and running with minimal effort.</p>
<p><a href="http://wpcrunchy.com" target="_blank"><img class="alignnone size-full wp-image-5861" title="wpcrunchy" src="http://veryinspirational.com/wp-content/uploads/2010/10/wpcrunchy.jpg" alt="" width="550" height="334" /></a></p>
<p><a href="http://www.organicthemes.com" target="_blank">http://www.organicthemes.com</a><br />
Organic Themes offer a variety of beautifully designed premium WordPress themes for businesses and blogs. Although Organic Themes are mainly a paid theme website, they do offer some free wordpress themes and they are great quality.</p>
<p><a href="http://www.organicthemes.com" target="_blank"><img class="alignnone size-full wp-image-5856" title="organicthemes" src="http://veryinspirational.com/wp-content/uploads/2010/10/organicthemes.jpg" alt="" width="550" height="334" /></a></p>
<p><a href="http://www.freethemelayouts.com" target="_blank">http://www.freethemelayouts.com</a><br />
FreeThemeLayouts.com provides premium WordPress themes absolutely FREE! They have great designers and expert WordPress coders who work together to create outstanding themes.</p>
<p><a href="http://www.freethemelayouts.com" target="_blank"><img class="alignnone size-full wp-image-5854" title="freethemelayouts" src="http://veryinspirational.com/wp-content/uploads/2010/10/freethemelayouts.jpg" alt="" width="550" height="334" /></a></p>
<p><a href="http://themes.rock-kitty.net" target="_blank">http://themes.rock-kitty.net</a><br />
themes.rock-kitty.net is a website where you can upload and share your wordpress theme creations. All their themes are free to download and use.</p>
<p><a href="http://themes.rock-kitty.net" target="_blank"><img class="alignnone size-full wp-image-5858" title="themesrockkitty" src="http://veryinspirational.com/wp-content/uploads/2010/10/themesrockkitty.jpg" alt="" width="550" height="334" /></a></p>
<p><a href="http://wordpressthemesbase.com" target="_blank">http://wordpressthemesbase.com</a><br />
Wordpressthemebase.com have a collection of wordpress themes ranging from simple clean designs to the more advanced. Most of their layouts have a similar blog style theme.</p>
<p><a href="http://wordpressthemesbase.com" target="_blank"><img class="alignnone size-full wp-image-5860" title="wordpressthemesbase" src="http://veryinspirational.com/wp-content/uploads/2010/10/wordpressthemesbase.jpg" alt="" width="550" height="334" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://veryinspirational.com/blog/web-design-blog/2010/10/13/9-websites-offering-quality-free-wordpress-themes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How Attention to Detail will enhance your design skills</title>
		<link>http://veryinspirational.com/blog/web-design-blog/2010/10/11/how-attention-to-detail-will-enhance-your-design-skills/</link>
		<comments>http://veryinspirational.com/blog/web-design-blog/2010/10/11/how-attention-to-detail-will-enhance-your-design-skills/#comments</comments>
		<pubDate>Mon, 11 Oct 2010 13:48:37 +0000</pubDate>
		<dc:creator>Melissa</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://veryinspirational.com/?p=5817</guid>
		<description><![CDATA[If you want to take your design skills to the next level then the first place you should start is with the look and feel. While raising your coding skills and getting into the latest trends of CSS3 and html5 will make you feel all warm and fuzzy in your skill-set, its the visual side of your work that will capture the eye of your next customer.]]></description>
			<content:encoded><![CDATA[<p>If you want to take your design skills to the next level then the first place you should start is with the look and feel. While raising your coding skills and getting into the latest trends of CSS3 and html5 will make you feel all warm and fuzzy in your skill-set, its the visual side of your work that will capture the eye of your next customer.</p>
<p>So what can you do? Crazy layouts? As much movement as you can fit in? Actually no. You need to work on your common elements in design and let the content speak to its audience. You need to apply attention to detail and raise the standard of your design skills.</p>
<p>I will run thought some common elements and how you can improve them.</p>
<p><strong>1: Forms</strong><br />
Forms are one of the most common and important interaction with your audience you will have. This is a great place to start styling into your own custom manor. Everyone knows that text boxes and textareas are bland and buttons grey and ugly. You might already be styling your forms with some color and borders but why not add some custom backgrounds and make your forms come alive. The simplest way to do this is just applying a background to the element with CSS. Here are some examples.</p>
<p><a href="http://ilovecolors.com.ar" target="_blank"><img class="alignnone size-full wp-image-5818" title="form1" src="http://veryinspirational.com/wp-content/uploads/2010/10/form1.jpg" alt="" width="550" height="200" /></a></p>
<p><a href="http://emblematiq.com" target="_blank"><img class="alignnone size-full wp-image-5822" title="form5" src="http://veryinspirational.com/wp-content/uploads/2010/10/form5.jpg" alt="" width="550" height="200" /></a></p>
<p><a href="http://brianhandleydesign.com" target="_blank"><img class="alignnone size-full wp-image-5821" title="form4" src="http://veryinspirational.com/wp-content/uploads/2010/10/form4.jpg" alt="" width="550" height="200" /></a></p>
<p><a href="http://gpacheco.fr" target="_blank"><img class="alignnone size-full wp-image-5820" title="form3" src="http://veryinspirational.com/wp-content/uploads/2010/10/form3.jpg" alt="" width="550" height="200" /></a></p>
<p><a href="http://61pixels.com" target="_blank"><img class="alignnone size-full wp-image-5819" title="form2" src="http://veryinspirational.com/wp-content/uploads/2010/10/form2.jpg" alt="" width="550" height="200" /></a></p>
<p><a href="http://swiths.com" target="_blank"><img class="alignnone size-full wp-image-5823" title="form6" src="http://veryinspirational.com/wp-content/uploads/2010/10/form6.jpg" alt="" width="550" height="200" /></a></p>
<p><span style="color: #999999;">*note, IE has a issue with text-indent so if you want to offset the button text try this method:<br />
background-image: url(&#8216;buttonBackground.png&#8217;);<br />
line-height: 999px; /* Set the line height higher than your image height */overflow: hidden; /* Hide the text */ </span></p>
<p><strong>2: Backgrounds</strong><br />
This is an area where you can really lift the look of your website. By designing a large background you can easily create an atmosphere for your website and give some visual depth to your work. Be sure to keep the file size as low as possible and you will enter a whole new style of design. Take a look at how a website can be transformed with large detailed backgrounds.</p>
<p><a href="http://jasonbradbury.com " target="_blank"><img class="alignnone size-full wp-image-5824" title="background1" src="http://veryinspirational.com/wp-content/uploads/2010/10/background1.jpg" alt="" width="550" height="400" /></a></p>
<p><a href="http://seemonterey.com" target="_blank"><img class="alignnone size-full wp-image-5825" title="background2" src="http://veryinspirational.com/wp-content/uploads/2010/10/background2.jpg" alt="" width="550" height="315" /></a></p>
<p><a href=" http://visitcascadia.com" target="_blank"><img class="alignnone size-full wp-image-5826" title="background3" src="http://veryinspirational.com/wp-content/uploads/2010/10/background3.jpg" alt="" width="550" height="315" /></a></p>
<p><a href="http://surfinparadise.com.au" target="_blank"><img class="alignnone size-full wp-image-5827" title="background4" src="http://veryinspirational.com/wp-content/uploads/2010/10/background4.jpg" alt="" width="550" height="315" /></a></p>
<p><a href="http://legendaryaircraft.hu" target="_blank"><img class="alignnone size-full wp-image-5828" title="background5" src="http://veryinspirational.com/wp-content/uploads/2010/10/background5.jpg" alt="" width="550" height="315" /></a></p>
<p><a href="http://macallanridge.com" target="_blank"><img class="alignnone size-full wp-image-5829" title="background6" src="http://veryinspirational.com/wp-content/uploads/2010/10/background6.jpg" alt="" width="550" height="315" /></a></p>
<p><strong>3: Menus</strong><br />
When it comes to navigation you don&#8217;t want to over complicate it, make sure that it is still usable by the average user. What you can do to spice up your navigation is use background images and stylish dropdown menus where they are needed. Here are some examples of great navigation design that is both clear to understand and visually pleasing.</p>
<p><a href="http://sourcebits.com" target="_blank"><img class="alignnone size-full wp-image-5830" title="menu1" src="http://veryinspirational.com/wp-content/uploads/2010/10/menu1.png" alt="" width="550" height="200" /></a></p>
<p><a href="http://robalan.com" target="_blank"><img class="alignnone size-full wp-image-5831" title="menu2" src="http://veryinspirational.com/wp-content/uploads/2010/10/menu2.png" alt="" width="550" height="200" /></a></p>
<p><a href="http://bushtheatre.co.uk" target="_blank"><img class="alignnone size-full wp-image-5832" title="menu3" src="http://veryinspirational.com/wp-content/uploads/2010/10/menu3.jpg" alt="" width="550" height="200" /></a></p>
<p><a href="http://sowerofseeds.org" target="_blank"><img class="alignnone size-full wp-image-5833" title="menu4" src="http://veryinspirational.com/wp-content/uploads/2010/10/menu4.jpg" alt="" width="550" height="200" /></a></p>
<p><a href="http://delibarapp.com" target="_blank"><img class="alignnone size-full wp-image-5834" title="menu5" src="http://veryinspirational.com/wp-content/uploads/2010/10/menu5.jpg" alt="" width="550" height="200" /></a></p>
<p><strong>4: Images</strong><br />
A simple way to add life to your content is to add images. But don&#8217;t settle for images with a single border, why not add an overlay to make the image more in line with the overall design of the website. These effects are generally a PNG image that is positioned on top of the image using CSS. Take a look at these great examples.</p>
<p><a href="http://jameslaicreative.com" target="_blank"><img class="alignnone size-full wp-image-5835" title="images1" src="http://veryinspirational.com/wp-content/uploads/2010/10/images1.jpg" alt="" width="550" height="200" /></a></p>
<p><a href="http://creamycss.com" target="_blank"><img class="alignnone size-full wp-image-5836" title="images2" src="http://veryinspirational.com/wp-content/uploads/2010/10/images2.jpg" alt="" width="550" height="200" /></a></p>
<p><a href="http://designbombs.com" target="_blank"><img class="alignnone size-full wp-image-5837" title="images3" src="http://veryinspirational.com/wp-content/uploads/2010/10/images3.jpg" alt="" width="550" height="200" /></a></p>
<p><a href="http://designflavr.com" target="_blank"><img class="alignnone size-full wp-image-5838" title="images4" src="http://veryinspirational.com/wp-content/uploads/2010/10/images4.jpg" alt="" width="550" height="200" /></a></p>
<p><strong>6: Video</strong><br />
When embedding video into your website it is often preferable to use YouTube as the host. This is for many reasons but the most important is you don&#8217;t want to put the drain of streaming media onto your client and leave them with a huge bill at the end of the day.</p>
<p>YouTube’s default embed code is far from pretty so what you want to do is use their API to make your own player.<br />
Using the YouTube Player API you can make yourself a chromeless player. From there you can style your own player and adding the functions that you want. These can all be controlled via javaScript and Actionscript if you wish to control the movie with flash. By using this method you would be able to create player controls to any style.</p>
<p><a href="http://code.google.com/apis/youtube/getting_started.html#player_apis" target="_blank"><img class="alignnone size-full wp-image-5839" title="video1" src="http://veryinspirational.com/wp-content/uploads/2010/10/video1.jpg" alt="" width="550" height="193" /></a></p>
<p><strong>5: Footers</strong><br />
We all know that a footer is a great place to store quick links and contact info. But if you build on the theme of your website and make the footer a feature in itself you then keep the user from feeling like they have hit the end of the page. Instead you open them up to another sub section of the website where they can navigate to other content. Take a look at these fine examples of footer design.</p>
<p><a href="http://goodsonbros.com" target="_blank"><img class="alignnone size-full wp-image-5840" title="footer1" src="http://veryinspirational.com/wp-content/uploads/2010/10/footer1.jpg" alt="" width="550" height="200" /></a></p>
<p><a href="http://freelenz.at" target="_blank"><img class="alignnone size-full wp-image-5841" title="footer2" src="http://veryinspirational.com/wp-content/uploads/2010/10/footer2.jpg" alt="" width="550" height="200" /></a></p>
<p><a href="http://viget.com" target="_blank"><img class="alignnone size-full wp-image-5842" title="footer3" src="http://veryinspirational.com/wp-content/uploads/2010/10/footer3.jpg" alt="" width="550" height="200" /></a></p>
<p><a href="http://hebatec.de" target="_blank"><img class="alignnone size-full wp-image-5843" title="footer4" src="http://veryinspirational.com/wp-content/uploads/2010/10/footer4.jpg" alt="" width="550" height="200" /></a></p>
<p><a href="http://yodiv.com" target="_blank"><img class="alignnone size-full wp-image-5844" title="footer5" src="http://veryinspirational.com/wp-content/uploads/2010/10/footer5.jpg" alt="" width="550" height="200" /></a></p>
<p>If you apply these practices and attention to detail then you will create far better website design that don&#8217;t interfere with the content that is being delivered. Instead you will create a rich user experience for your audience.</p>
]]></content:encoded>
			<wfw:commentRss>http://veryinspirational.com/blog/web-design-blog/2010/10/11/how-attention-to-detail-will-enhance-your-design-skills/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>17 Websites that all web designers and developers should know</title>
		<link>http://veryinspirational.com/blog/web-design-blog/2010/10/06/17-websites-that-all-web-designers-and-developers-should-know/</link>
		<comments>http://veryinspirational.com/blog/web-design-blog/2010/10/06/17-websites-that-all-web-designers-and-developers-should-know/#comments</comments>
		<pubDate>Wed, 06 Oct 2010 02:23:00 +0000</pubDate>
		<dc:creator>Melissa</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[web tools]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://veryinspirational.com/?p=5737</guid>
		<description><![CDATA[Every designer has their own set of websites and tools that they prefer. Having a toolkit can help you design and build your project faster and it also helps with the preparation of a design project by giving you a starting point for research. From fonts to backgrounds and code snippets to browser testing, here is an essential list of websites that all designers and developers should have in their list.]]></description>
			<content:encoded><![CDATA[<p>Every designer has their own set of websites and tools that they prefer. Having a toolkit can help you design and build your project faster and it also helps with the preparation of a design project by giving you a starting point for research. From fonts to backgrounds and code snippets to browser testing, here is an essential list of websites that all designers and developers should have in their list.</p>
<p><a href="http://www.colourlovers.com/">http://www.colourlovers.com</a></p>
<p><a href="http://www.colourlovers.com"><img class="alignnone size-full wp-image-5746" title="colorlovers" src="http://veryinspirational.com/wp-content/uploads/2010/10/colorlovers.jpg" alt="" width="550" height="352" /></a></p>
<p>Colour Lovers is a community of people who share colours, pallettes and patterns.<br />
This is a great website to get yourself some fresh ideas about what colors to use in your designs.</p>
<p><a href="http://dribbble.com/">http://dribbble.com</a></p>
<p><a href="http://dribbble.com"><img class="alignnone size-full wp-image-5748" title="dribbble" src="http://veryinspirational.com/wp-content/uploads/2010/10/dribbble.jpg" alt="" width="550" height="352" /></a></p>
<p>Dribbble is a community of designers who like to share what they are currently working on.<br />
Right now its invite only, so cross your fingers this opens up!</p>
<p><a href="http://flikode.com/">http://flikode.com</a></p>
<p><a href="http://flikode.com"><img class="alignnone size-full wp-image-5750" title="flikode" src="http://veryinspirational.com/wp-content/uploads/2010/10/flikode.jpg" alt="" width="550" height="352" /></a></p>
<p>Flikode  is a code snippet bookmarking website where you can find bits of code  in any language. It also has a help and discussion section so you can  have some community support.</p>
<p><a href="http://my.lovelycharts.com">http://my.lovelycharts.com</a></p>
<p><a href="http://my.lovelycharts.com"><img class="alignnone size-full wp-image-5753" title="mylovelycharts" src="http://veryinspirational.com/wp-content/uploads/2010/10/mylovelycharts.jpg" alt="" width="550" height="352" /></a></p>
<p>My  Lovely Charts is a great online app that lets you well&#8230;create charts.  I find it useful to make site-maps and other layout diagrams.</p>
<p><a href="http://www.colorcombos.com/">http://www.colorcombos.com</a></p>
<p><a href="http://www.colorcombos.com"><img class="alignnone size-full wp-image-5745" title="colorcombo" src="http://veryinspirational.com/wp-content/uploads/2010/10/colorcombo.jpg" alt="" width="550" height="352" /></a></p>
<p>Color  Combos is a simple website where you can view and test how colors look  together. Simple to use and with a huge library of color combinations  this is a great addition to your web toolkit.</p>
<p><a href="http://new.myfonts.com/WhatTheFont">http://new.myfonts.com/WhatTheFont</a></p>
<p><a href="http://new.myfonts.com/WhatTheFont"><img class="alignnone size-full wp-image-5758" title="whatthefont" src="http://veryinspirational.com/wp-content/uploads/2010/10/whatthefont.jpg" alt="" width="550" height="352" /></a></p>
<p>Ever  wonder what font is being used in an image? Or have you been supplied  with a logo to recreate but no fonts? What The Font is your saviour.  Just upload your image and it will try and detect what font is used.</p>
<p><a href="http://www.favicon.cc/">http://www.favicon.cc</a></p>
<p><a href="http://www.favicon.cc"><img class="alignnone size-full wp-image-5749" title="favico" src="http://veryinspirational.com/wp-content/uploads/2010/10/favico.jpg" alt="" width="550" height="352" /></a></p>
<p>A simple way to create a favicon. Just upload your image and it will generate an ico file for you.<br />
Or you can try your hand at using their editor.</p>
<p><a href="http://www.stripegenerator.com/">http://www.stripegenerator.com</a></p>
<p><a href="http://www.stripegenerator.com"><img class="alignnone size-full wp-image-5755" title="stripegenerator" src="http://veryinspirational.com/wp-content/uploads/2010/10/stripegenerator.jpg" alt="" width="550" height="352" /></a></p>
<p>Stripe  generator is a simple way to create tile background stripes of any  style for your website. This is a real time saver! They also have a  library of user generated stripes.</p>
<p><a href="http://ajaxload.info/">http://ajaxload.info</a></p>
<p><a href="http://ajaxload.info"><img class="alignnone size-full wp-image-5742" title="ajaxloader" src="http://veryinspirational.com/wp-content/uploads/2010/10/ajaxloader.jpg" alt="" width="550" height="352" /></a></p>
<p>If  you are ever needing a loading GIFfor you ajax application then look no  further. Ajax Load has a good library of loaders in different shapes.  You can also set the color that you need the loader to be in. Fast and  handy!</p>
<p><a href="http://www.bgpatterns.com/">http://www.bgpatterns.com</a></p>
<p><a href="http://www.bgpatterns.com"><img class="alignnone size-full wp-image-5743" title="bgpatterns" src="http://veryinspirational.com/wp-content/uploads/2010/10/bgpatterns.jpg" alt="" width="550" height="352" /></a></p>
<p>BG Patterns is exactly as the name suggests. It has a library of patters that can be used for background images.</p>
<p><a href="http://browsershots.org/">http://browsershots.org</a></p>
<p><a href="http://browsershots.org"><img class="alignnone size-full wp-image-5744" title="browsershots" src="http://veryinspirational.com/wp-content/uploads/2010/10/browsershots.jpg" alt="" width="550" height="352" /></a></p>
<p>Browser  Shots is a great tool to test your website in a lot of browser  conditions. Simple to use and with great results, just select the  browsers you want to test against and enter you domain name. The results  usually take about 30 minutes to display.</p>
<p><a href="http://sxc.hu/">http://sxc.hu</a></p>
<p><a href="http://sxc.hu"><img class="alignnone size-full wp-image-5756" title="sxchu" src="http://veryinspirational.com/wp-content/uploads/2010/10/sxchu.jpg" alt="" width="550" height="352" /></a></p>
<p>SXC is a community driven image stock exchange. Most of these images are free to use and are high resolution.</p>
<p><a href="http://lipsum.com/">http://lipsum.com</a></p>
<p><a href="http://lipsum.com"><img class="alignnone size-full wp-image-5751" title="lipsum" src="http://veryinspirational.com/wp-content/uploads/2010/10/lipsum.jpg" alt="" width="550" height="352" /></a></p>
<p>When you are pitching to a client it’s handy to have dummy content. A good standard is to use lipsum text. At <a href="http://lipsum.com/">lipsum.com</a> you can quickly generate as many paragraphs of text to suite your project.</p>
<p><a href="http://validator.w3.org/">http://validator.w3.org</a></p>
<p><a href="http://validator.w3.org"><img class="alignnone size-full wp-image-5757" title="w3cvalidator" src="http://veryinspirational.com/wp-content/uploads/2010/10/w3cvalidator.jpg" alt="" width="550" height="352" /></a></p>
<p>If  you want your website to be 100% web standard, then run it through the  W3C validator. You can also find CSS and RSS validators on their  website. It gives detailed responses to errors in your markup.</p>
<p><a href="http://tools.pingdom.com/">http://tools.pingdom.com</a></p>
<p><a href="http://tools.pingdom.com"><img class="alignnone size-full wp-image-5754" title="pingdom" src="http://veryinspirational.com/wp-content/uploads/2010/10/pingdom.jpg" alt="" width="550" height="352" /></a></p>
<p>Pingdom  offers a page load timer and breakdown of the files that are called  from your website as it loads. At its simplest form, it gives some great  insight into how your page loads and where you might have a bottleneck  file that is holding things up.</p>
<p><a href="http://dafont.com/">http://dafont.com</a></p>
<p><a href="http://dafont.com"><img class="alignnone size-full wp-image-5747" title="dafont" src="http://veryinspirational.com/wp-content/uploads/2010/10/dafont.jpg" alt="" width="550" height="352" /></a></p>
<p>DaFont  is the number 1 place to find fonts. With a great categorisation system  and the ability to type in your own text to see the result, this is the  perfect font website for designers.</p>
<p><a href="http://www.mockflow.com/">http://www.mockflow.com</a></p>
<p><a href="http://www.mockflow.com"><img class="alignnone size-full wp-image-5752" title="mockflow" src="http://veryinspirational.com/wp-content/uploads/2010/10/mockflow.jpg" alt="" width="550" height="352" /></a></p>
<p>Mock  Flow is one of the easiest online wire-framing services around. When  you need to draft a layout quickly and that is visually pleasing to the  eye, then don&#8217;t go past this website. It will be a great asset to your  toolkit.</p>
]]></content:encoded>
			<wfw:commentRss>http://veryinspirational.com/blog/web-design-blog/2010/10/06/17-websites-that-all-web-designers-and-developers-should-know/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using textures to enhance your design</title>
		<link>http://veryinspirational.com/blog/web-design-blog/2010/10/04/using-textures-to-enhance-your-design/</link>
		<comments>http://veryinspirational.com/blog/web-design-blog/2010/10/04/using-textures-to-enhance-your-design/#comments</comments>
		<pubDate>Mon, 04 Oct 2010 14:15:31 +0000</pubDate>
		<dc:creator>Melissa</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[textures]]></category>

		<guid isPermaLink="false">http://veryinspirational.com/?p=5705</guid>
		<description><![CDATA[A problem that I often see in design, and specifically website design, is the lack of life that is brought into the design. While we can all create a lot of very excellent effects using a variety of plug-ins and built in effects from Photoshop etc, you just cant match the quality of importing textures from the real world into your work.]]></description>
			<content:encoded><![CDATA[<p>A problem that I often see in design, and specifically website design, is the lack of life that is brought into the design. While we can all create a lot of very excellent effects using a variety of plug-ins and built in effects from Photoshop etc, you just cant match the quality of importing textures from the real world into your work.</p>
<p>You see its the imperfections found in fabrics, paints, wood and stone to name a few, that set off a design giving it a realistic atmosphere.</p>
<p>While it may be tempting to use a lot of elements to try and bring your website to life it can often end up overloaded, distracting and hard to use. Take a look at some of the websites in our design inspiration gallery and other css galleries around the Internet and you will see that most of the top design all use a variety of texture styles. The best you can see actually seem to lift the content off the page and create depth in their design.</p>
<p>So where do you use textures in your website design?<br />
You want to keep it simple and stick to backgrounds, menu bars, footers and sidebars. If you want to use textures in your content area just be careful and make sure that your text is still 100% readable and not a strain to the eyes.</p>
<p>From the examples you can see below, the best way to use quality textures is to keep them simple and not distract your users from the content they are actually using your website for.</p>
<p><a href="http://www.imagineplus.in/">http://www.imagineplus.in</a></p>
<p><a href="http://veryinspirational.com/wp-content/uploads/2010/09/127972894820100722021548.jpg"><img class="alignnone size-full wp-image-5427" title="Imagineplus" src="http://veryinspirational.com/wp-content/uploads/2010/09/127972894820100722021548.jpg" alt="" width="550" height="413" /></a></p>
<p><a href="http://www.curiousromain.com/">http://www.curiousromain.com</a></p>
<p><a href="http://veryinspirational.com/wp-content/uploads/2010/06/curious_romain.jpg"><img class="alignnone size-full wp-image-1518" title="curious_romain" src="http://veryinspirational.com/wp-content/uploads/2010/06/curious_romain.jpg" alt="" width="550" height="413" /></a></p>
<p><a href="http://arandown.com/">http://arandown.com</a></p>
<p><a href="http://veryinspirational.com/wp-content/uploads/2010/06/aran_down.jpg"><img class="alignnone size-full wp-image-1466" title="aran_down" src="http://veryinspirational.com/wp-content/uploads/2010/06/aran_down.jpg" alt="" width="550" height="413" /></a></p>
<p><a href="http://fortysevenmedia.com/">http://fortysevenmedia.com</a></p>
<p><a href="http://veryinspirational.com/wp-content/uploads/2010/04/fortysevenmedia.com_.jpg"><img class="alignnone size-full wp-image-461" title="fortysevenmedia.com" src="http://veryinspirational.com/wp-content/uploads/2010/04/fortysevenmedia.com_.jpg" alt="" width="550" height="413" /></a></p>
<p><a href="http://www.przeznaczenie.eu/">http://www.przeznaczenie.eu</a></p>
<p><a href="http://veryinspirational.com/wp-content/uploads/2010/06/przeznaczenie.jpg"><img class="alignnone size-full wp-image-1678" title="przeznaczenie" src="http://veryinspirational.com/wp-content/uploads/2010/06/przeznaczenie.jpg" alt="" width="550" height="413" /></a></p>
<p><a href="http://bestblogbox.com/">http://bestblogbox.com</a></p>
<p><a href="http://veryinspirational.com/wp-content/uploads/2010/06/best_blog_box.jpg"><img class="alignnone size-full wp-image-1476" title="best_blog_box" src="http://veryinspirational.com/wp-content/uploads/2010/06/best_blog_box.jpg" alt="" width="550" height="413" /></a></p>
<p><a href="http://www.motherearthbrewing.com/">http://www.motherearthbrewing.com</a></p>
<p><a href="http://veryinspirational.com/wp-content/uploads/2010/06/mother_earth_brewing.jpg"><img class="alignnone size-full wp-image-1628" title="mother_earth_brewing" src="http://veryinspirational.com/wp-content/uploads/2010/06/mother_earth_brewing.jpg" alt="" width="550" height="413" /></a></p>
<p><a href="http://trentwalton.com/">http://trentwalton.com</a></p>
<p><a href="http://veryinspirational.com/wp-content/uploads/2010/06/trent_walton.jpg"><img class="alignnone size-full wp-image-1734" title="trent_walton" src="http://veryinspirational.com/wp-content/uploads/2010/06/trent_walton.jpg" alt="" width="550" height="413" /></a></p>
<p><a href="http://jameslaicreative.com/">http://jameslaicreative.com</a></p>
<p><a href="http://veryinspirational.com/wp-content/uploads/2010/06/james_lai_creative.jpg"><img class="alignnone size-full wp-image-1584" title="james_lai_creative" src="http://veryinspirational.com/wp-content/uploads/2010/06/james_lai_creative.jpg" alt="" width="550" height="413" /></a></p>
<p><a href="http://www.dnadarwin.org/">http://www.dnadarwin.org</a></p>
<p><a href="http://veryinspirational.com/wp-content/uploads/2010/06/dna_darwin.jpg"><img class="alignnone size-full wp-image-1532" title="dna_darwin" src="http://veryinspirational.com/wp-content/uploads/2010/06/dna_darwin.jpg" alt="" width="550" height="413" /></a></p>
<p><a href="http://jaredcampbell.com/">http://jaredcampbell.com</a></p>
<p><a href="http://veryinspirational.com/wp-content/uploads/2010/06/jared_campbell.jpg"><img class="alignnone size-full wp-image-1586" title="jared_campbell" src="http://veryinspirational.com/wp-content/uploads/2010/06/jared_campbell.jpg" alt="" width="550" height="413" /></a></p>
<p><a href="http://www.healthyharvesthydro.com/">http://www.healthyharvesthydro.com</a></p>
<p><a href="http://veryinspirational.com/wp-content/uploads/2010/06/healthy_harvest_hydro.jpg"><img class="alignnone size-full wp-image-1568" title="healthy_harvest_hydro" src="http://veryinspirational.com/wp-content/uploads/2010/06/healthy_harvest_hydro.jpg" alt="" width="550" height="413" /></a></p>
<p>You can find a good source of free textures at websites like <a href="http://www.sxc.hu/">http://www.sxc.hu</a> and <a href="http://www.texturelovers.com/">http://www.texturelovers.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://veryinspirational.com/blog/web-design-blog/2010/10/04/using-textures-to-enhance-your-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wolverine Artwork</title>
		<link>http://veryinspirational.com/blog/inspiration-blog/2010/09/27/wolverine-artwork/</link>
		<comments>http://veryinspirational.com/blog/inspiration-blog/2010/09/27/wolverine-artwork/#comments</comments>
		<pubDate>Mon, 27 Sep 2010 06:53:21 +0000</pubDate>
		<dc:creator>Melissa</dc:creator>
				<category><![CDATA[Inspiration]]></category>

		<guid isPermaLink="false">http://veryinspirational.com/?p=5665</guid>
		<description><![CDATA[Seeing as thought <a href="http://www.news.com.au/technology/doctors-discover-how-to-make-titanium-bones/story-e6frfro0-1225928889483" target="_blank"><strong>Doctors figure out how to make titanium bones</strong></a> we thought we would pay tribute to the man who most probably spawned the idea. So here is a collection of very different Wolverine artworks.<br />]]></description>
			<content:encoded><![CDATA[<p>Seeing as thought <a href="http://www.news.com.au/technology/doctors-discover-how-to-make-titanium-bones/story-e6frfro0-1225928889483" target="_blank"><strong>Doctors figure out how to make titanium bones</strong></a> we thought we would pay tribute to the man who most probably spawned the idea. So here is a collection of very different Wolverine artworks.</p>
<p><a href="http://veryinspirational.com/wp-content/uploads/2010/09/Ghost-Rider-34-Wolverine-Art-Appreciation.jpg"><img class="alignnone size-full wp-image-5666" title="Ghost-Rider-34-Wolverine-Art-Appreciation" src="http://veryinspirational.com/wp-content/uploads/2010/09/Ghost-Rider-34-Wolverine-Art-Appreciation.jpg" alt="" width="550" height="846" /></a></p>
<p><a href="http://veryinspirational.com/wp-content/uploads/2010/09/yhst-23599503122488_2105_347489525.jpg"><img class="alignnone size-full wp-image-5682" title="yhst-23599503122488_2105_347489525" src="http://veryinspirational.com/wp-content/uploads/2010/09/yhst-23599503122488_2105_347489525.jpg" alt="" width="550" height="846" /></a></p>
<p><a href="http://veryinspirational.com/wp-content/uploads/2010/09/yhst-23599503122488_2105_347489525.jpg"></a><a href="http://veryinspirational.com/wp-content/uploads/2010/09/yhst-23599503122488_2104_83565988.jpg"><img class="alignnone size-full wp-image-5681" title="yhst-23599503122488_2104_83565988" src="http://veryinspirational.com/wp-content/uploads/2010/09/yhst-23599503122488_2104_83565988.jpg" alt="" width="550" height="846" /></a></p>
<p><a href="http://veryinspirational.com/wp-content/uploads/2010/09/yhst-23599503122488_2103_364363248.jpg"><img class="alignnone size-full wp-image-5680" title="yhst-23599503122488_2103_364363248" src="http://veryinspirational.com/wp-content/uploads/2010/09/yhst-23599503122488_2103_364363248.jpg" alt="" width="550" height="852" /></a></p>
<p><a href="http://toonfed.deviantart.com/art/x-men-ninja-Wolverine-81186288" target="_blank"><img class="alignnone size-full wp-image-5679" title="x_men_ninja_Wolverine_by_toonfed" src="http://veryinspirational.com/wp-content/uploads/2010/09/x_men_ninja_Wolverine_by_toonfed.jpg" alt="" width="550" height="913" /></a></p>
<p><a href="http://veryinspirational.com/wp-content/uploads/2010/09/wolverine-art.jpg"><img class="alignnone size-full wp-image-5678" title="wolverine-art" src="http://veryinspirational.com/wp-content/uploads/2010/09/wolverine-art.jpg" alt="" width="550" height="836" /></a></p>
<p><a href="http://veryinspirational.com/wp-content/uploads/2010/09/wolverineart2.jpg"><img class="alignnone size-full wp-image-5677" title="wolverineart2" src="http://veryinspirational.com/wp-content/uploads/2010/09/wolverineart2.jpg" alt="" width="550" height="843" /></a></p>
<p><a href="http://www.elfwood.com/~victorhuang2" target="_blank"><img class="alignnone size-full wp-image-5676" title="wolverine_vs_cyber" src="http://veryinspirational.com/wp-content/uploads/2010/09/wolverine_vs_cyber.jpg" alt="" width="550" height="528" /></a></p>
<p><a href="http://kalel06.deviantart.com/" target="_blank"><img class="alignnone size-full wp-image-5675" title="Wolverine_Line_Art_by_Kalel06" src="http://veryinspirational.com/wp-content/uploads/2010/09/Wolverine_Line_Art_by_Kalel06.jpg" alt="" width="550" height="637" /></a></p>
<p><a href="http://uminga.deviantart.com/art/Wolverine-126276074" target="_blank"><img class="alignnone size-full wp-image-5674" title="wolverine_by_uminga-d236j8q" src="http://veryinspirational.com/wp-content/uploads/2010/09/wolverine_by_uminga-d236j8q.jpg" alt="" width="550" height="856" /></a></p>
<p><a href="http://veryinspirational.com/wp-content/uploads/2010/09/Wolverine_by_RodReis.jpg"><img class="alignnone size-full wp-image-5673" title="Wolverine_by_RodReis" src="http://veryinspirational.com/wp-content/uploads/2010/09/Wolverine_by_RodReis.jpg" alt="" width="550" height="823" /></a></p>
<p><a href="http://veryinspirational.com/wp-content/uploads/2010/09/Wolverine_by_Elvire.jpg"><img class="alignnone size-full wp-image-5672" title="Wolverine_by_Elvire" src="http://veryinspirational.com/wp-content/uploads/2010/09/Wolverine_by_Elvire.jpg" alt="" width="550" height="440" /></a></p>
<p><a href="http://voltage24.deviantart.com/art/Wolverine-ART-PAD-136378689" target="_blank"><img class="alignnone size-full wp-image-5671" title="Wolverine_ART_PAD_by_voltage24" src="http://veryinspirational.com/wp-content/uploads/2010/09/Wolverine_ART_PAD_by_voltage24.jpg" alt="" width="550" height="411" /></a></p>
<p><a href="http://manapul.deviantart.com/art/Wolverine-Art-Finished-91942134" target="_blank"><img class="alignnone size-full wp-image-5670" title="Wolverine_Art_Finished_by_manapul" src="http://veryinspirational.com/wp-content/uploads/2010/09/Wolverine_Art_Finished_by_manapul.jpg" alt="" width="550" height="705" /></a></p>
<p><a href="http://skage.deviantart.com/art/wolverine-art-variant-color-117819286" target="_blank"><img class="alignnone size-full wp-image-5669" title="wolverine_art_appreciation_by_skage" src="http://veryinspirational.com/wp-content/uploads/2010/09/wolverine_art_appreciation_by_skage.jpg" alt="" width="550" height="854" /></a></p>
<p><a href="http://claw0208.deviantart.com/art/wolfverine-57807741" target="_blank"><img class="alignnone size-full wp-image-5668" title="wolfverine_by_claw0208" src="http://veryinspirational.com/wp-content/uploads/2010/09/wolfverine_by_claw0208.jpg" alt="" width="550" height="734" /></a></p>
<p><a href="http://veryinspirational.com/wp-content/uploads/2010/09/staples10.jpg"><img class="alignnone size-full wp-image-5667" title="staples10" src="http://veryinspirational.com/wp-content/uploads/2010/09/staples10.jpg" alt="" width="550" height="837" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://veryinspirational.com/blog/inspiration-blog/2010/09/27/wolverine-artwork/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Street Art from around the world</title>
		<link>http://veryinspirational.com/blog/inspiration-blog/2010/09/24/street-art-from-around-the-world/</link>
		<comments>http://veryinspirational.com/blog/inspiration-blog/2010/09/24/street-art-from-around-the-world/#comments</comments>
		<pubDate>Fri, 24 Sep 2010 00:15:57 +0000</pubDate>
		<dc:creator>Melissa</dc:creator>
				<category><![CDATA[Inspiration]]></category>

		<guid isPermaLink="false">http://veryinspirational.com/?p=5553</guid>
		<description><![CDATA[Street Art is one of the most creative forms of art. These artists have created masterpieces wherever they can, to voice their message or to just beautify the streets of their cities. Enjoy.]]></description>
			<content:encoded><![CDATA[<p>Street Art is one of the most creative forms of art. These artists have created masterpieces wherever they can, to voice their message or to just beautify the streets of their cities. Enjoy.</p>
<p><img class="alignnone size-full wp-image-5554" title="6a00d83451e8d469e200e55230762e8834-800wi" src="http://veryinspirational.com/wp-content/uploads/2010/09/6a00d83451e8d469e200e55230762e8834-800wi.jpg" alt="" width="550" height="368" /></p>
<p><img class="alignnone size-full wp-image-5575" title="titi_from_paris_detail" src="http://veryinspirational.com/wp-content/uploads/2010/09/titi_from_paris_detail.jpg" alt="" width="550" height="733" /></p>
<p><img class="alignnone size-full wp-image-5574" title="street-graffiti" src="http://veryinspirational.com/wp-content/uploads/2010/09/street-graffiti.jpg" alt="" width="550" height="379" /></p>
<p><img class="alignnone size-full wp-image-5573" title="street-art-walking-tour-paris" src="http://veryinspirational.com/wp-content/uploads/2010/09/street-art-walking-tour-paris.jpg" alt="" width="550" height="413" /></p>
<p><img class="alignnone size-full wp-image-5572" title="street-art-in-oaxaca-5" src="http://veryinspirational.com/wp-content/uploads/2010/09/street-art-in-oaxaca-5.jpg" alt="" width="550" height="825" /></p>
<p><img class="alignnone size-full wp-image-5571" title="street-art-bogota-1231287919_full550" src="http://veryinspirational.com/wp-content/uploads/2010/09/street-art-bogota-1231287919_full550.jpg" alt="" width="550" height="412" /></p>
<p><img class="alignnone size-full wp-image-5570" title="streetart1" src="http://veryinspirational.com/wp-content/uploads/2010/09/streetart1.jpg" alt="" width="550" height="415" /></p>
<p><img class="alignnone size-full wp-image-5569" title="street_art_on_Melrose" src="http://veryinspirational.com/wp-content/uploads/2010/09/street_art_on_Melrose.jpg" alt="" width="550" height="411" /></p>
<p><img class="alignnone size-full wp-image-5568" title="street_art_500" src="http://veryinspirational.com/wp-content/uploads/2010/09/street_art_500.jpg" alt="" width="550" height="413" /></p>
<p><img class="alignnone size-full wp-image-5567" title="Street Art 900px" src="http://veryinspirational.com/wp-content/uploads/2010/09/Street-Art-900px.jpg" alt="" width="550" height="365" /></p>
<p><img class="alignnone size-full wp-image-5566" title="speto-street-art3" src="http://veryinspirational.com/wp-content/uploads/2010/09/speto-street-art3.jpg" alt="" width="550" height="402" /></p>
<p><img class="alignnone size-full wp-image-5565" title="speto-street-art2" src="http://veryinspirational.com/wp-content/uploads/2010/09/speto-street-art2.jpg" alt="" width="550" height="402" /></p>
<p><img class="alignnone size-full wp-image-5564" title="nychos_infart02" src="http://veryinspirational.com/wp-content/uploads/2010/09/nychos_infart02.jpg" alt="" width="550" height="366" /></p>
<p><img class="alignnone size-full wp-image-5563" title="lyon-street-art11" src="http://veryinspirational.com/wp-content/uploads/2010/09/lyon-street-art11.jpg" alt="" width="550" height="367" /></p>
<p><img class="alignnone size-full wp-image-5562" title="german-street-art-080409-1" src="http://veryinspirational.com/wp-content/uploads/2010/09/german-street-art-080409-1.jpg" alt="" width="550" height="413" /></p>
<p><img class="alignnone size-full wp-image-5561" title="german-street-art-051007" src="http://veryinspirational.com/wp-content/uploads/2010/09/german-street-art-051007.jpg" alt="" width="550" height="440" /></p>
<p><img class="alignnone size-full wp-image-5560" title="brazil-street-art" src="http://veryinspirational.com/wp-content/uploads/2010/09/brazil-street-art.jpg" alt="" width="550" height="413" /></p>
<p><img class="alignnone size-full wp-image-5559" title="berlin-street-art-3" src="http://veryinspirational.com/wp-content/uploads/2010/09/berlin-street-art-3.jpg" alt="" width="550" height="414" /></p>
<p><img class="alignnone size-full wp-image-5558" title="berlin-street-art-2" src="http://veryinspirational.com/wp-content/uploads/2010/09/berlin-street-art-2.jpg" alt="" width="550" height="414" /></p>
<p><img class="alignnone size-full wp-image-5557" title="berlin-street-art" src="http://veryinspirational.com/wp-content/uploads/2010/09/berlin-street-art.jpg" alt="" width="550" height="414" /></p>
<p><img class="alignnone size-full wp-image-5556" title="athens street art6" src="http://veryinspirational.com/wp-content/uploads/2010/09/athens-street-art6.jpg" alt="" width="550" height="413" /></p>
<p><img class="alignnone size-full wp-image-5555" title="509635293_ab61037454" src="http://veryinspirational.com/wp-content/uploads/2010/09/509635293_ab61037454.jpg" alt="" width="550" height="413" /></p>
]]></content:encoded>
			<wfw:commentRss>http://veryinspirational.com/blog/inspiration-blog/2010/09/24/street-art-from-around-the-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>16 Amazing 3D Illustrations from the DAZ 3D Community</title>
		<link>http://veryinspirational.com/blog/inspiration-blog/2010/09/24/16-amazing-3d-illustrations-from-the-daz-3d-community/</link>
		<comments>http://veryinspirational.com/blog/inspiration-blog/2010/09/24/16-amazing-3d-illustrations-from-the-daz-3d-community/#comments</comments>
		<pubDate>Fri, 24 Sep 2010 00:14:26 +0000</pubDate>
		<dc:creator>Melissa</dc:creator>
				<category><![CDATA[Inspiration]]></category>

		<guid isPermaLink="false">http://veryinspirational.com/?p=5532</guid>
		<description><![CDATA[This collection of 3D art has been created using the tools from DAZ 3D.

Daz 3D is a leader in the 3D software industry, providing affordable, yet powerful 3D software including Bryce - a 3D environment and animation package, Carrara - a complete 3D modelling, animation and rendering package, DAZ Studio - a FREE 3D digital art creation tool, Hexagon - a ploygonal modelling software and Mimic - a lip-synching application.]]></description>
			<content:encoded><![CDATA[<p>This collection of 3D art has been created using the tools from DAZ 3D.</p>
<p>Daz 3D is a leader in the 3D software industry, providing affordable, yet powerful 3D software including Bryce &#8211; a 3D environment and animation package, Carrara &#8211; a complete 3D modelling, animation and rendering package, DAZ Studio &#8211; a FREE 3D digital art creation tool, Hexagon &#8211; a ploygonal modelling software and Mimic &#8211; a lip-synching application.</p>
<p>With DAZ 3D you can easily enter the 3D industry and build you skills! Plus they have a great community of support and sharing.</p>
<p><img class="alignnone size-full wp-image-5548" title="42993" src="http://veryinspirational.com/wp-content/uploads/2010/09/42993.jpg" alt="" width="550" height="496" /></p>
<p><img class="alignnone size-full wp-image-5547" title="40887" src="http://veryinspirational.com/wp-content/uploads/2010/09/40887.jpg" alt="" width="550" height="810" /></p>
<p><img class="alignnone size-full wp-image-5546" title="39307" src="http://veryinspirational.com/wp-content/uploads/2010/09/39307.jpg" alt="" width="550" height="733" /></p>
<p><img class="alignnone size-full wp-image-5545" title="39306M" src="http://veryinspirational.com/wp-content/uploads/2010/09/39306M.jpg" alt="" width="550" height="697" /></p>
<p><img class="alignnone size-full wp-image-5544" title="32400" src="http://veryinspirational.com/wp-content/uploads/2010/09/32400.jpg" alt="" width="550" height="413" /></p>
<p><img class="alignnone size-full wp-image-5543" title="30355" src="http://veryinspirational.com/wp-content/uploads/2010/09/30355.jpg" alt="" width="550" height="672" /></p>
<p><img class="alignnone size-full wp-image-5542" title="26995" src="http://veryinspirational.com/wp-content/uploads/2010/09/26995.jpg" alt="" width="550" height="733" /></p>
<p><img class="alignnone size-full wp-image-5541" title="26790" src="http://veryinspirational.com/wp-content/uploads/2010/09/26790.jpg" alt="" width="550" height="708" /></p>
<p><img class="alignnone size-full wp-image-5540" title="26153" src="http://veryinspirational.com/wp-content/uploads/2010/09/26153.jpg" alt="" width="550" height="446" /></p>
<p><img class="alignnone size-full wp-image-5539" title="25621" src="http://veryinspirational.com/wp-content/uploads/2010/09/25621.jpg" alt="" width="550" height="691" /></p>
<p><img class="alignnone size-full wp-image-5538" title="25062" src="http://veryinspirational.com/wp-content/uploads/2010/09/25062.jpg" alt="" width="550" height="706" /></p>
<p><img class="alignnone size-full wp-image-5537" title="24902" src="http://veryinspirational.com/wp-content/uploads/2010/09/24902.jpg" alt="" width="550" height="413" /></p>
<p><img class="alignnone size-full wp-image-5536" title="24600" src="http://veryinspirational.com/wp-content/uploads/2010/09/24600.jpg" alt="" width="550" height="688" /></p>
<p><img class="alignnone size-full wp-image-5535" title="24126" src="http://veryinspirational.com/wp-content/uploads/2010/09/24126.jpg" alt="" width="550" height="875" /></p>
<p><img class="alignnone size-full wp-image-5534" title="18475" src="http://veryinspirational.com/wp-content/uploads/2010/09/18475.jpg" alt="" width="550" height="688" /></p>
<p><img class="alignnone size-full wp-image-5533" title="6844" src="http://veryinspirational.com/wp-content/uploads/2010/09/6844.jpg" alt="" width="550" height="719" /></p>
]]></content:encoded>
			<wfw:commentRss>http://veryinspirational.com/blog/inspiration-blog/2010/09/24/16-amazing-3d-illustrations-from-the-daz-3d-community/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Websites using cute avatars and mascots</title>
		<link>http://veryinspirational.com/blog/web-design-blog/2010/09/22/10-websites-using-cute-avatars-and-mascots/</link>
		<comments>http://veryinspirational.com/blog/web-design-blog/2010/09/22/10-websites-using-cute-avatars-and-mascots/#comments</comments>
		<pubDate>Wed, 22 Sep 2010 04:31:44 +0000</pubDate>
		<dc:creator>Melissa</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://veryinspirational.com/?p=5507</guid>
		<description><![CDATA[Here at Very Inspirational we love mascots! That's why we have our cute little RSS Monster (you can see him at the top of the page).

The use of an avatar or mascot on your website (or any product for that matter) can greatly increase customer loyalty just through the recognition value that they create. Not only that you can easily run themed competitions and create merchendise as extra revenu streams all based on that little charater that you hold dear to your business.]]></description>
			<content:encoded><![CDATA[<p>Here at Very Inspirational we love mascots! That&#8217;s why we have our cute little <strong>RSS Monster</strong> (you can see him at the top of the page).</p>
<p>The use of an avatar or mascot on your website (or any product for that matter) can greatly increase customer loyalty just through the recognition value that they create. Not only that you can easily run themed competitions and create merchendise as extra revenu streams all based on that little charater that you hold dear to your business.</p>
<p>Not convinced? just have a look at <a href="http://reddit.com" target="_blank">reddit.com</a>. Their little Reddit Alien <img class="alignnone size-full wp-image-5508" style="border: none;" title="blog_snoo" src="http://veryinspirational.com/wp-content/uploads/2010/09/blog_snoo.png" alt="" width="29" height="40" /> has taken a lot of the Internet world by storm over the years and they have quite a range of merchandise for this little guy. You can get Reddit shirts, usb drives, bobble heads, soap and not to mention the fans who go on and make soap, cookies and other random stuff!</p>
<p>A mascot can help build a personality to your business, so have a think about it next time your thinking of an addition to your business model.</p>
<p>Here are some website that we think have great little mascots that theme their websites.</p>
<p><img class="alignnone size-full wp-image-1652" title="old_loft" src="http://veryinspirational.com/wp-content/uploads/2010/06/old_loft.jpg" alt="" width="550" height="413" /></p>
<p><img class="alignnone size-full wp-image-1754" title="webbli_world" src="http://veryinspirational.com/wp-content/uploads/2010/06/webbli_world.jpg" alt="" width="550" height="413" /></p>
<p><img class="alignnone size-full wp-image-1485" title="branded07" src="http://veryinspirational.com/wp-content/uploads/2010/06/branded07.jpg" alt="" width="550" height="413" /></p>
<p><img class="alignnone size-full wp-image-5181" title="coupongravy" src="http://veryinspirational.com/wp-content/uploads/2010/08/coupongravy.jpg" alt="" width="550" height="413" /></p>
<p><img class="alignnone size-full wp-image-1624" title="mochiads" src="http://veryinspirational.com/wp-content/uploads/2010/06/mochiads.jpg" alt="" width="550" height="413" /></p>
<p><img class="alignnone size-full wp-image-410" title="brightkite.com" src="http://veryinspirational.com/wp-content/uploads/2010/04/brightkite.com_.jpg" alt="" width="550" height="413" /></p>
<p><img class="alignnone size-full wp-image-439" title="designzillas.com" src="http://veryinspirational.com/wp-content/uploads/2010/04/designzillas.com_.jpg" alt="" width="550" height="413" /></p>
<p><img class="alignnone size-full wp-image-530" title="mindingmonsters.com" src="http://veryinspirational.com/wp-content/uploads/2010/04/mindingmonsters.com_.jpg" alt="" width="550" height="413" /></p>
<p><img class="alignnone size-full wp-image-441" title="digimurai.com" src="http://veryinspirational.com/wp-content/uploads/2010/04/digimurai.com_.jpg" alt="" width="550" height="413" /></p>
<p><img class="alignnone size-full wp-image-527" title="meomi.com" src="http://veryinspirational.com/wp-content/uploads/2010/04/meomi.com_.jpg" alt="" width="550" height="413" /></p>
]]></content:encoded>
			<wfw:commentRss>http://veryinspirational.com/blog/web-design-blog/2010/09/22/10-websites-using-cute-avatars-and-mascots/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Albert Lo &#8211; Freelance digital creative</title>
		<link>http://veryinspirational.com/blog/web-design-blog/2010/09/03/albert-lo-freelance-digital-creative/</link>
		<comments>http://veryinspirational.com/blog/web-design-blog/2010/09/03/albert-lo-freelance-digital-creative/#comments</comments>
		<pubDate>Fri, 03 Sep 2010 00:07:14 +0000</pubDate>
		<dc:creator>Melissa</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[interview]]></category>

		<guid isPermaLink="false">http://veryinspirational.com/?p=5383</guid>
		<description><![CDATA[Hi, my name is Albert Lo, founder and owner of albertlo design. I have been living the dream as a Freelance UX web designer /contractor for just over a year now and live in a leafy suburb in the UK. i like to collect urban vinyl toys in my spare time.
How did you get started in web design / development?]]></description>
			<content:encoded><![CDATA[<p>One of the best ways to get inspiration and motivation is to look at our peers in the industries that we work in. If we get the chance to see what goes through the mind of the people we respect in our industry we can use this to further our own skills and refine our working practice.</p>
<p>At Very Inspirational we try to help our community out by running small interviews to give you some insight into how these great artists work.</p>
<p>We hope you enjoy this quick interview with <strong>Alber Lo</strong>, a fantastic <strong>UX web designer &amp;</strong><a href="http://albertlo.com/" target="_blank"> visit his website</a>.<span id="more-5383"></span></p>
<hr /><img class="size-full wp-image-5385 alignright" style="border: solid 4px #eeeeee; margin: 0 0 10px 10px;" title="Albert Lo - Freelance Digital Creative" src="http://veryinspirational.com/wp-content/uploads/2010/09/albertlo.jpg" alt="" width="210" height="199" align="right" /></p>
<p>Hi, my name is Albert Lo, founder and owner of albertlo design. I have been living the dream as a Freelance UX web designer /contractor for just over a year now and live in a leafy suburb in the UK. i like to collect urban vinyl toys in my spare time.</p>
<h3><strong>How did you get started in web design / development?</strong></h3>
<p>I  originally started in Art and Design and excelled in this field when I  was younger. I loved painting and sketching&#8230;Art class was my favourite  subject. I progressed into Web Design as my area of expertise after  completing a Multimedia Computing degree.  I knew from the course I  didn&#8217;t really enjoy pure coding but I found I could combine my  creativity with some coding by designing for the web.</p>
<h3><strong>How do you start your design process?</strong></h3>
<p>I  don&#8217;t really set any rules for a process as it depends on the project.  Generally, if i&#8217;ve seen something that has inspired me, I tend to sketch  out any ideas on paper first. I sometimes roughly sketch out some  wireframes and maybe even doodle until I&#8217;m happy with my design. It&#8217;s  important to understand what the project is and by sketching, it allows  me to puts things into perspective. Sometimes, depending on the work and  project, I use a mind-mapping session for inspiration. Sometimes, I  just jump into Photoshop and experiment with any assets I have been  given, and this can spark an idea and develop further.</p>
<h3><strong> Where do you go for design inspiration?</strong></h3>
<p>Design  inspiration comes from anything, A lot of inspiration has come from  what I have seen while traveling. I like to look for inspiration outside  the realm of the web such as architecture, shop interiors, graphic  design and photography. I  also find inspiration from reading magazines.  I think finding inspiration is very personal, everyone has their own  way, and the beauty is there are no set rules to follow in how you find  inspiration.</p>
<p>Recently, I purchased Little  Snapper for Mac and I can archive images that I like or find inspiring,  which can then be useful for future projects. This has become  a really great tool and timesaver.</p>
<h3><strong>What is in your toolset? What cant you live without while you design/develop?</strong></h3>
<p>My  physical toolset comprises of a Moleskine sketchbook, a pencil, biro  and Sharpie. I need these to start doodling or sketching ideas out  before I start designing digitally.<br />
I don&#8217;t  think I can live without my MacBook pro, I use it all the time and carry  it with me as I prefer to use my own equipment, much better than  someone giving you some outdated and old machine to work on.<br />
The  Adobe suite is a must these days as it is seen as a standard in the  industry. My most used programs are Photoshop CS4 and Illustrator CS4.<br />
Other things I can&#8217;t live  without is music to work to and twitter to keep in the loop. This can be  distracting for some people, but I guess it simulates my working  environment and takes my mind off things if it&#8217;s all getting too  intense.</p>
<h3><strong>How do you think your design style has changed over the years?</strong></h3>
<p>I  think my design style has evolved over the years from influences I  encounter. I still strongly believe colour evokes human emotion and I  think this has intensified over the years.</p>
<p>I am continuously discovering new techniques and methods so my design style is bound to change in many ways.</p>
<h3><strong> What are your best methods for finding/attracting web design clients?</strong></h3>
<p>I  find participating in social networking and networking of any kind can  be really good methods of finding new clients. I have found that it is  sometimes who you know, not what you know, that will land you a job, so  be ready to hand out your business cards. You never know who you might  meet and you never know where it could take you.</p>
<p>I  have found word of mouth is the most powerful tool to attract new  clients. You are more likely to get a response if you have worked with  someone previously and they can recommend you for a job.</p>
<h3><strong> Since you first started in your career, how do you think has the web industry changed?</strong></h3>
<p>The  web industry has changed at such a fast pace, it&#8217;s hard to pinpoint how  it has changed. For me, the biggest change is the way people code their  sites, moving away from table layouts to CSS. I think this has made a  huge difference in how the web is now defined in terms of design  nowadays. The boundaries of design are being pushed daily.</p>
<h3><strong>What do you feel are the most important skills for a designer to have/develop?</strong></h3>
<p>Empathy  and people skills, master these and you are set to deal with anything,  whether working agency side or client side as half the battle is  convincing people. Obviously it is also important to have talent but I  think it will only take you so far.</p>
<p>Knowing and developing  composition and colour combinations is important. Grass root skills stay  with you but you also need to develop further and remain on top of news  and technology, as well as design trends.</p>
<h3><strong> What do you brand yourself as? Web Designer, Web Developer or other?</strong></h3>
<p>I brand myself as a Freelance UX web designer / contractor.</p>
<h3><strong> What tips would you offer to new designers?</strong></h3>
<p>My  tip for new designers is to gain experience in the industry as soon as  possible; paid or unpaid. It will enhance your portfolio and give it  credibility. It can be difficult but keeping up the good work will  eventually pay off as people will see you as being pro active.</p>
]]></content:encoded>
			<wfw:commentRss>http://veryinspirational.com/blog/web-design-blog/2010/09/03/albert-lo-freelance-digital-creative/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Iconic Fail Whale</title>
		<link>http://veryinspirational.com/blog/inspiration-blog/2010/07/13/the-iconic-fail-whale/</link>
		<comments>http://veryinspirational.com/blog/inspiration-blog/2010/07/13/the-iconic-fail-whale/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 05:29:11 +0000</pubDate>
		<dc:creator>Melissa</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[404]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[fail]]></category>
		<category><![CDATA[whale]]></category>

		<guid isPermaLink="false">http://veryinspirational.com/?p=5119</guid>
		<description><![CDATA[By now I think everyone knows the Fail Whale. While Twitter was gaining in popularity it had quite a reputation of outgrowing itself and just being out of service. The fail whale, created by Yiying Lu has become just an iconic page that there is even a fan club failwhale.com

The fail whale, as a design idea, has made it OK to occasionally fail in your website. No longer is a 404 a complete catastrophe. All you need to do is create yourself a nice, fun error page to let your members know its not the end of the world. Do it right and you might just end up with your own iconic 404 page when your website grows.]]></description>
			<content:encoded><![CDATA[<p>By now I think everyone knows the Fail Whale. While Twitter was gaining in popularity it had quite a reputation of outgrowing itself and just being out of service. The fail whale, created by <strong>Yiying Lu</strong> has become just an iconic page that there is even a fan club <a href="http://failwhale.com/" target="_blank">failwhale.com</a></p>
<p>The fail whale, as a design idea, has made it OK to occasionally fail in your website. No longer is a 404 a complete catastrophe. All you need to do is create yourself a nice, fun error page to let your members know its not the end of the world. Do it right and you might just end up with your own iconic 404 page when your website grows.</p>
<p>As a tribute to the fail whale, here is a collection of wacky, weird and unusual interpretations of the Fail Whale image.</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-5127" title="fail_whale_yiying_lu" src="http://veryinspirational.com/wp-content/uploads/2010/07/fail_whale_yiying_lu.jpg" alt="" width="495" height="370" /><span id="more-5119"></span></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-5142" title="yoda-fail-whale" src="http://veryinspirational.com/wp-content/uploads/2010/07/yoda-fail-whale.jpg" alt="" width="425" height="319" /></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-5141" title="twitter-fail-whale-ascii-art" src="http://veryinspirational.com/wp-content/uploads/2010/07/twitter-fail-whale-ascii-art.jpg" alt="" width="540" height="423" /></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-5140" title="twitter_sushi" src="http://veryinspirational.com/wp-content/uploads/2010/07/twitter_sushi.jpg" alt="" width="501" height="551" /></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-5139" title="twitter_fail_whale_in_laugh_out_loud_cats" src="http://veryinspirational.com/wp-content/uploads/2010/07/twitter_fail_whale_in_laugh_out_loud_cats.jpg" alt="" width="400" height="261" /></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-5138" title="The_whale_that_faileth_by_diamondie" src="http://veryinspirational.com/wp-content/uploads/2010/07/The_whale_that_faileth_by_diamondie.png" alt="" width="400" height="300" /></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-5137" title="sully_whale" src="http://veryinspirational.com/wp-content/uploads/2010/07/sully_whale.jpg" alt="" width="480" height="500" /></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-5136" title="reallifefailwhale" src="http://veryinspirational.com/wp-content/uploads/2010/07/reallifefailwhale.jpg" alt="" width="550" height="365" /></p>
<p style="text-align: center;"><img class="alignnone size-medium wp-image-5135" title="NBC-fail-whale" src="http://veryinspirational.com/wp-content/uploads/2010/07/NBC-fail-whale-508x413.jpg" alt="" width="508" height="413" /></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-5134" title="homer_the_new_fail_whale_by_edwheeler" src="http://veryinspirational.com/wp-content/uploads/2010/07/homer_the_new_fail_whale_by_edwheeler.jpg" alt="" width="550" height="344" /></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-5133" title="gmail-fail" src="http://veryinspirational.com/wp-content/uploads/2010/07/gmail-fail.jpg" alt="" width="400" height="302" /></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-5132" title="FailWhaleWeb" src="http://veryinspirational.com/wp-content/uploads/2010/07/FailWhaleWeb.jpg" alt="" width="550" height="484" /></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-5131" title="fail-whale-mj-480x366" src="http://veryinspirational.com/wp-content/uploads/2010/07/fail-whale-mj-480x366.jpg" alt="" width="480" height="366" /></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-5130" title="failwhalecolor" src="http://veryinspirational.com/wp-content/uploads/2010/07/failwhalecolor.jpg" alt="" width="550" height="393" /></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-5129" title="fail-whale" src="http://veryinspirational.com/wp-content/uploads/2010/07/fail-whale.jpg" alt="" width="500" height="284" /></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-5128" title="failwhale1" src="http://veryinspirational.com/wp-content/uploads/2010/07/failwhale1.jpg" alt="" width="396" height="500" /></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-5126" title="Fail_whale_col_tveskov" src="http://veryinspirational.com/wp-content/uploads/2010/07/Fail_whale_col_tveskov.jpg" alt="" width="400" height="349" /></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-5125" title="bay-bridge-fail-whale-20091030-140203" src="http://veryinspirational.com/wp-content/uploads/2010/07/bay-bridge-fail-whale-20091030-140203.jpg" alt="" width="420" height="336" /></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-5124" title="AQLiOovhNlw83lgd58pvnayDo1_500" src="http://veryinspirational.com/wp-content/uploads/2010/07/AQLiOovhNlw83lgd58pvnayDo1_500.jpg" alt="" width="496" height="497" /></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-5123" title="3444045862_434bbcaae9" src="http://veryinspirational.com/wp-content/uploads/2010/07/3444045862_434bbcaae9.jpg" alt="" width="436" height="500" /></p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-5122" title="2009-06-29" src="http://veryinspirational.com/wp-content/uploads/2010/07/2009-06-29.jpg" alt="" width="550" height="426" /></p>
]]></content:encoded>
			<wfw:commentRss>http://veryinspirational.com/blog/inspiration-blog/2010/07/13/the-iconic-fail-whale/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Amazing Origami Art</title>
		<link>http://veryinspirational.com/blog/inspiration-blog/2010/07/07/amazing-origami-art/</link>
		<comments>http://veryinspirational.com/blog/inspiration-blog/2010/07/07/amazing-origami-art/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 06:25:57 +0000</pubDate>
		<dc:creator>Melissa</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[origami]]></category>

		<guid isPermaLink="false">http://veryinspirational.com/?p=4507</guid>
		<description><![CDATA[Origami. That fun paper folding art that has been around longer than anyone can remember produces some of the most amazing and mind challenging art-forms. Just take a look at the following and you will surly feel the need to grab some paper and give it a go.]]></description>
			<content:encoded><![CDATA[<p><strong>Origami</strong>. That fun paper folding art that has been around longer than anyone can remember produces some of the most amazing and mind challenging art-forms. Just take a look at the following and you will surly feel the need to grab some paper and give it a go.</p>
<p>Visit <a href="http://www.origami-instructions.com/" target="_blank">Origami Instructions</a> for some tips and instructions on origami.</p>
<p><img class="alignnone size-full wp-image-4510" title="bird-origami" src="http://veryinspirational.com/wp-content/uploads/2010/07/bird-origami.jpg" alt="" width="550" height="413" /><span id="more-4507"></span></p>
<p><img class="alignnone size-full wp-image-4527" title="unicorn-origami" src="http://veryinspirational.com/wp-content/uploads/2010/07/unicorn-origami.jpg" alt="" width="550" height="412" /></p>
<p><img class="alignnone size-full wp-image-4526" title="unicorn2-origami" src="http://veryinspirational.com/wp-content/uploads/2010/07/unicorn2-origami.jpg" alt="" width="550" height="393" /></p>
<p><img class="alignnone size-full wp-image-4525" title="starwars-origami" src="http://veryinspirational.com/wp-content/uploads/2010/07/starwars-origami.jpg" alt="" width="550" height="460" /></p>
<p><img class="alignnone size-full wp-image-4524" title="sith-origami" src="http://veryinspirational.com/wp-content/uploads/2010/07/sith-origami.jpg" alt="" width="550" height="743" /></p>
<p><img class="alignnone size-full wp-image-4523" title="raiden-origami" src="http://veryinspirational.com/wp-content/uploads/2010/07/raiden-origami.jpg" alt="" width="550" height="604" /></p>
<p><img class="alignnone size-full wp-image-4522" title="mantas-origami" src="http://veryinspirational.com/wp-content/uploads/2010/07/mantas-origami.jpg" alt="" width="550" height="550" /></p>
<p><img class="alignnone size-full wp-image-4521" title="lion-origami" src="http://veryinspirational.com/wp-content/uploads/2010/07/lion-origami.jpg" alt="" width="550" height="412" /></p>
<p><img class="alignnone size-full wp-image-4520" title="kril-origami" src="http://veryinspirational.com/wp-content/uploads/2010/07/kril-origami.jpg" alt="" width="550" height="394" /></p>
<p><img class="alignnone size-full wp-image-4519" title="koi-origami" src="http://veryinspirational.com/wp-content/uploads/2010/07/koi-origami.jpg" alt="" width="550" height="821" /></p>
<p><img class="alignnone size-full wp-image-4518" title="ironman-origami" src="http://veryinspirational.com/wp-content/uploads/2010/07/ironman-origami.jpg" alt="" width="550" height="732" /></p>
<p><img class="alignnone size-full wp-image-4517" title="elli-origami" src="http://veryinspirational.com/wp-content/uploads/2010/07/elli-origami.jpg" alt="" width="550" height="413" /></p>
<p><img class="alignnone size-full wp-image-4516" title="eagle-origami" src="http://veryinspirational.com/wp-content/uploads/2010/07/eagle-origami.jpg" alt="" width="550" height="413" /></p>
<p><img class="alignnone size-full wp-image-4515" title="dragon-origami" src="http://veryinspirational.com/wp-content/uploads/2010/07/dragon-origami.jpg" alt="" width="550" height="390" /></p>
<p><img class="alignnone size-full wp-image-4514" title="dino-origami" src="http://veryinspirational.com/wp-content/uploads/2010/07/dino-origami.jpg" alt="" width="550" height="413" /></p>
<p><img class="alignnone size-full wp-image-4512" title="bug-origami" src="http://veryinspirational.com/wp-content/uploads/2010/07/bug-origami.jpg" alt="" width="550" height="413" /></p>
<p><img class="alignnone size-full wp-image-4511" title="bug2-origami" src="http://veryinspirational.com/wp-content/uploads/2010/07/bug2-origami.jpg" alt="" width="550" height="413" /></p>
<p><img class="alignnone size-full wp-image-4509" title="anime-origami" src="http://veryinspirational.com/wp-content/uploads/2010/07/anime-origami.jpg" alt="" width="550" height="390" /></p>
<p><strong>And possibly the best I have ever seen!</strong></p>
<p><img class="alignnone size-full wp-image-4513" title="castle-origami" src="http://veryinspirational.com/wp-content/uploads/2010/07/castle-origami.jpg" alt="" width="550" height="720" /></p>
]]></content:encoded>
			<wfw:commentRss>http://veryinspirational.com/blog/inspiration-blog/2010/07/07/amazing-origami-art/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Amazing Insect Macro Photography</title>
		<link>http://veryinspirational.com/blog/photography/2010/07/06/insect-macro-photography/</link>
		<comments>http://veryinspirational.com/blog/photography/2010/07/06/insect-macro-photography/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 05:36:55 +0000</pubDate>
		<dc:creator>Melissa</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[insect]]></category>
		<category><![CDATA[macro]]></category>

		<guid isPermaLink="false">http://veryinspirational.com/?p=4475</guid>
		<description><![CDATA[Macro photography sits in the category of taking very close-up photos that reveal an amazing amount of detail. A lot of the detail is not visible to the naked eye, and when it comes to bugs and insects this is due to the size and also speed. We simply don't get to see the detail.
This post is about taking the time to look at the beauty of the little creatures that live amoungst us.]]></description>
			<content:encoded><![CDATA[<p><strong>Macro photography</strong> sits in the category of taking very close-up photos that reveal an amazing amount of detail. A lot of the detail is not visible to the naked eye, and when it comes to bugs and insects this is due to the size and also speed. We simply don&#8217;t get to see the detail.</p>
<p>This post is about taking the time to look at the beauty of the little creatures that live amoungst us.</p>
<p><img class="alignnone size-full wp-image-4476" title="bee-macro4" src="http://veryinspirational.com/wp-content/uploads/2010/07/bee-macro4.jpg" alt="" width="550" height="605" /></p>
<p><span id="more-4475"></span><img class="alignnone size-full wp-image-4477" title="snail-macro7" src="http://veryinspirational.com/wp-content/uploads/2010/07/snail-macro7.jpg" alt="" width="550" height="427" /></p>
<p><img class="alignnone size-full wp-image-4478" title="beetles-macro17" src="http://veryinspirational.com/wp-content/uploads/2010/07/beetles-macro17.jpg" alt="" width="550" height="413" /></p>
<p><img class="alignnone size-full wp-image-4479" title="beetle-macro1" src="http://veryinspirational.com/wp-content/uploads/2010/07/beetle-macro1.jpg" alt="" width="550" height="452" /></p>
<p><img class="alignnone size-full wp-image-4480" title="dragon-macro6" src="http://veryinspirational.com/wp-content/uploads/2010/07/dragon-macro6.jpg" alt="" width="550" height="403" /></p>
<p><img class="alignnone size-full wp-image-4481" title="dragon-macro22" src="http://veryinspirational.com/wp-content/uploads/2010/07/dragon-macro22.jpg" alt="" width="550" height="558" /></p>
<p><img class="alignnone size-full wp-image-4482" title="bee-macro23" src="http://veryinspirational.com/wp-content/uploads/2010/07/bee-macro23.jpg" alt="" width="550" height="550" /></p>
<p><img class="alignnone size-full wp-image-4483" title="spider-macro20" src="http://veryinspirational.com/wp-content/uploads/2010/07/spider-macro20.jpg" alt="" width="550" height="368" /></p>
<p><img class="alignnone size-full wp-image-4484" title="grasshopper-macro11" src="http://veryinspirational.com/wp-content/uploads/2010/07/grasshopper-macro11.jpg" alt="" width="550" height="413" /></p>
<p><img class="alignnone size-full wp-image-4485" title="mantas-macro3" src="http://veryinspirational.com/wp-content/uploads/2010/07/mantas-macro3.jpg" alt="" width="550" height="778" /></p>
<p><img class="alignnone size-full wp-image-4486" title="bugs-macro18" src="http://veryinspirational.com/wp-content/uploads/2010/07/bugs-macro18.jpg" alt="" width="550" height="659" /></p>
<p><img class="alignnone size-full wp-image-4487" title="dragon-macro13" src="http://veryinspirational.com/wp-content/uploads/2010/07/dragon-macro13.jpg" alt="" width="550" height="413" /></p>
<p><img class="alignnone size-full wp-image-4488" title="moth-macro2" src="http://veryinspirational.com/wp-content/uploads/2010/07/moth-macro2.jpg" alt="" width="550" height="529" /></p>
<p><img class="alignnone size-full wp-image-4489" title="beetles-macro14" src="http://veryinspirational.com/wp-content/uploads/2010/07/beetles-macro14.jpg" alt="" width="550" height="443" /></p>
<p><img class="alignnone size-full wp-image-4491" title="beetles-macro10" src="http://veryinspirational.com/wp-content/uploads/2010/07/beetles-macro10.jpg" alt="" width="550" height="441" /></p>
<p><img class="alignnone size-full wp-image-4492" title="beetles-macro16" src="http://veryinspirational.com/wp-content/uploads/2010/07/beetles-macro16.jpg" alt="" width="550" height="413" /></p>
<p><img class="alignnone size-full wp-image-4493" title="bug-macro9" src="http://veryinspirational.com/wp-content/uploads/2010/07/bug-macro9.jpg" alt="" width="550" height="368" /></p>
<p><img class="alignnone size-full wp-image-4494" title="dragon-macro21" src="http://veryinspirational.com/wp-content/uploads/2010/07/dragon-macro21.jpg" alt="" width="550" height="413" /></p>
<p><img class="alignnone size-full wp-image-4495" title="flyant-macro15" src="http://veryinspirational.com/wp-content/uploads/2010/07/flyant-macro15.jpg" alt="" width="550" height="629" /></p>
<p><img class="alignnone size-full wp-image-4496" title="grasshopper-macro8" src="http://veryinspirational.com/wp-content/uploads/2010/07/grasshopper-macro8.jpg" alt="" width="550" height="732" /></p>
<p><img class="alignnone size-full wp-image-4497" title="beetles-macro19" src="http://veryinspirational.com/wp-content/uploads/2010/07/beetles-macro19.jpg" alt="" width="550" height="390" /></p>
<p><img class="alignnone size-full wp-image-4498" title="bee-macro25" src="http://veryinspirational.com/wp-content/uploads/2010/07/bee-macro25.jpg" alt="" width="550" height="394" /></p>
<p><img class="alignnone size-full wp-image-4499" title="mantas-macro24" src="http://veryinspirational.com/wp-content/uploads/2010/07/mantas-macro24.jpg" alt="" width="550" height="445" /></p>
<p><img class="alignnone size-full wp-image-4500" title="dragon-macro5" src="http://veryinspirational.com/wp-content/uploads/2010/07/dragon-macro5.jpg" alt="" width="550" height="366" /></p>
]]></content:encoded>
			<wfw:commentRss>http://veryinspirational.com/blog/photography/2010/07/06/insect-macro-photography/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Awesome High Detail Portrait Digital Illustration</title>
		<link>http://veryinspirational.com/blog/inspiration-blog/2010/07/02/awesome-high-detail-portrait-digital-illustration/</link>
		<comments>http://veryinspirational.com/blog/inspiration-blog/2010/07/02/awesome-high-detail-portrait-digital-illustration/#comments</comments>
		<pubDate>Fri, 02 Jul 2010 00:01:58 +0000</pubDate>
		<dc:creator>Melissa</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[digital]]></category>
		<category><![CDATA[illustration]]></category>
		<category><![CDATA[portrait]]></category>

		<guid isPermaLink="false">http://veryinspirational.com/?p=3633</guid>
		<description><![CDATA[Here is a quick collection of some very VERY good digital art and illustration.]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">Here is a collection of some very VERY good digital art and illustration.</p>
<p style="text-align: left;"><img class="alignnone size-full wp-image-2309" title="528Portraitofayounggirl" src="http://veryinspirational.com/wp-content/uploads/2010/06/528Portraitofayounggirl.jpg" alt="" width="550" height="595" /><span id="more-3633"></span></p>
<p style="text-align: left;"><img class="alignnone size-full wp-image-2395" title="845MeganFox" src="http://veryinspirational.com/wp-content/uploads/2010/06/845MeganFox.jpg" alt="" width="550" height="741" /></p>
<p style="text-align: left;"><img class="alignnone size-full wp-image-2336" title="611OpenGreen" src="http://veryinspirational.com/wp-content/uploads/2010/06/611OpenGreen.jpg" alt="" width="550" height="293" /></p>
<p style="text-align: left;"><img class="alignnone size-full wp-image-2263" title="340CarlzonPortrait" src="http://veryinspirational.com/wp-content/uploads/2010/06/340CarlzonPortrait.jpg" alt="" width="550" height="690" /></p>
<p style="text-align: left;"><img class="alignnone size-full wp-image-2284" title="419FatPilot" src="http://veryinspirational.com/wp-content/uploads/2010/06/419FatPilot.jpg" alt="" width="550" height="686" /></p>
<p style="text-align: left;"><img class="alignnone size-full wp-image-2297" title="479CaptainJackSparrow" src="http://veryinspirational.com/wp-content/uploads/2010/06/479CaptainJackSparrow.jpg" alt="" width="550" height="738" /></p>
<p style="text-align: left;"><img class="alignnone size-large wp-image-995" title="Admiral_by_Radojavor" src="http://veryinspirational.com/wp-content/uploads/2010/04/Admiral_by_Radojavor-557x769.jpg" alt="" width="550" height="760" /></p>
<p style="text-align: left;"><img class="alignnone size-full wp-image-2247" title="292Homeless" src="http://veryinspirational.com/wp-content/uploads/2010/06/292Homeless.jpg" alt="" width="550" height="457" /></p>
]]></content:encoded>
			<wfw:commentRss>http://veryinspirational.com/blog/inspiration-blog/2010/07/02/awesome-high-detail-portrait-digital-illustration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make your website &#8216;pop&#8217; with great typography</title>
		<link>http://veryinspirational.com/blog/typographyfonts/2010/06/30/make-your-website-pop-with-great-typography/</link>
		<comments>http://veryinspirational.com/blog/typographyfonts/2010/06/30/make-your-website-pop-with-great-typography/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 12:42:32 +0000</pubDate>
		<dc:creator>Melissa</dc:creator>
				<category><![CDATA[Typography/Fonts]]></category>
		<category><![CDATA[fonts]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://veryinspirational.com/?p=3620</guid>
		<description><![CDATA[OK, so the word 'pop' is like a needle in the eye for any designer who's client gives feedback like "it just needs to POP more", but hey, I think you all know what I mean here.  Typography in design can be the key difference between an average design and a masterpiece of usability.
Below are some ways that you can spice up your website designs and raise the quality of your portfolio. Your clients will love you for it.]]></description>
			<content:encoded><![CDATA[<p>OK, so the word &#8216;pop&#8217; is like a needle  in the eye for any designer who&#8217;s client gives feedback like &#8220;it just  needs to POP more&#8221;, but hey, I think you all know what I mean here.   Typography in design can be the key difference between an average  design and a masterpiece of usability.<br />
Below are some ways  that you can spice up your website designs and raise the quality of your  portfolio. Your clients will love you for it.</p>
<p><strong>Using Custom Fonts</strong><br />
Thanks to CSS we can  safely use custom fonts on websites now. Just keep in mind that not all  browsers support the use of otf,ttf or eot files. But don&#8217;t let this stop you, just  make sure that you have a backup default font that still fits with your  design. If you cover all bases then you wont have users suffer a  horrible website if they are stuck on old browsers.<br />
These are simple to  create and implement using a conversion tool like <a href="http://ttf2eot.sebastiankippe.com/" target="_blank"><strong>ttf2eot</strong></a> and then use  the <a href="http://veryinspirational.com/blog/web-design-blog/2010/04/18/using-font-face-css3-in-your-website/">@font-face</a> to embed the file reference into your style sheet.</p>
<p>The user doesn&#8217;t need  the font on their system, so don&#8217;t forget to upload it to your server.<span id="more-3620"></span></p>
<p><strong>Define a style guide</strong><br />
This may sound silly  and like a no brainer, but how many of you actually design a style guide  for the websites you are building. The style guide is the key to  consistency and will end up playing the key role in linking online to  offline works.</p>
<p>The first step is to ask your  client if they already have a style guide. If they do, great! Use it! If  they don’t, then design one for them.</p>
<p>You should always define a few  different levels of header (h1,h2,h3) styles, paragraph, lists and  links. Get all these together with your color guide and plan it all out.  The end result is going to be a much cleaner and visually appealing  website that will just flow from content to graphic elements with  consistent style.</p>
<p>Don’t  forget to include the custom fonts you want to use in the style guide.  This should be handed to the client so they can apply it to their other  works.</p>
<p>For more information, <a href="http://www.alistapart.com/authors/b/jinabolton" target="_blank"><strong>Jina Bolton</strong></a> wrote a great article on <a href="http://www.alistapart.com/articles/writingainterfacestyleguide/" target="_blank">writing an interface style guide</a>.</p>
<p><strong>Font Sizing</strong><br />
Getting your font size  right is crucial to getting your message delivered. You want to make  sure that your slogan/catch frase/branding statement/whatever is what  the users eyes are drawn to. Then the headings then the text. It’s all  simple and most of us do it anyway, but when this is all thought out and  planned it just works a lot better. Get the font sizes right and you  wont have confusion on where you should be looking.</p>
<p>So, set out your  hierarchy of importance and choose the right font sizes for your  message.</p>
<p><strong>Readability</strong><br />
This is one area that  gets overlooked sometimes. I&#8217;m not saying that you must have a white  background and black text, but for readability the lighter background  and darker text is a winner in almost all cases. If you do go for a dark  background, take a look around at some examples and look at the color  combination that are being used. There are some good ways to make light  text standout on a dark background without hurting your eyes.</p>
<p>Keep your line spacing  neat and don&#8217;t cramp as much as you can into a space. Open layouts are  much easier to read. Don&#8217;t forget that people often skim pages rather  then sit and read, so cater to this with quick lead ins to read more.  This allows you to keep your pages neat and tidy, making for a clean  layout.</p>
<p><strong>Examples</strong><br />
Here is just a few  examples of websites that I feel have great typography and cover all  areas I have mentioned above.</p>
<p style="text-align: center;"><a href="http://veryinspirational.com/web-design/2010/03/22/wewanttraffic-com/"><img class="alignnone size-thumbnail wp-image-639" style="margin-right: 20px;" title="wewanttraffic.com" src="http://veryinspirational.com/wp-content/uploads/2010/04/wewanttraffic.com_-219x165.jpg" alt="" width="219" height="165" /></a> <a href="http://veryinspirational.com/web-design/2010/03/26/vegasuncorked-com/"><img class="alignnone size-thumbnail wp-image-629" title="vegasuncorked.com" src="http://veryinspirational.com/wp-content/uploads/2010/04/vegasuncorked.com_-219x165.jpg" alt="" width="219" height="165" /></a> <a href="http://veryinspirational.com/web-design/2010/03/28/artist-in-design-de/"></a></p>
<p style="text-align: center;"><a href="http://veryinspirational.com/web-design/2010/03/28/artist-in-design-de/"><img class="alignnone size-thumbnail wp-image-1631" style="margin-right: 20px;" title="mutantlabs" src="http://veryinspirational.com/wp-content/uploads/2010/06/mutantlabs-219x165.jpg" alt="" width="219" height="165" /> <img class="alignnone size-thumbnail wp-image-393" title="artist-in-design.de" src="http://veryinspirational.com/wp-content/uploads/2010/04/artist-in-design.de_-219x165.jpg" alt="" width="219" height="165" /></a></p>
<p style="text-align: center;"><a href="http://veryinspirational.com/web-design/2010/06/29/ecto_machine/"><img class="alignnone size-thumbnail wp-image-1534" style="margin-right: 20px;" title="ecto_machine" src="http://veryinspirational.com/wp-content/uploads/2010/06/ecto_machine-219x165.jpg" alt="" width="219" height="165" /></a> <a href="http://veryinspirational.com/web-design/2010/05/21/mammut-medien/"><img class="alignnone size-thumbnail wp-image-1152" title="mammut-medien" src="http://veryinspirational.com/wp-content/uploads/2010/05/mammut-medien-219x165.jpg" alt="" width="219" height="165" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://veryinspirational.com/blog/typographyfonts/2010/06/30/make-your-website-pop-with-great-typography/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

