<?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>Designrshub - Design Articles, Inspirations, Resources and Freebies</title>
	<atom:link href="http://designrshub.com/feed" rel="self" type="application/rss+xml" />
	<link>http://designrshub.com</link>
	<description>Designrshub is a design blog dedicated to provide high quality web and graphic design resources, inspirations, freebies and social media articles.</description>
	<lastBuildDate>Tue, 18 Jun 2013 10:14:25 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>How to Create Your Own Payment Gateway For Magento</title>
		<link>http://designrshub.com/2013/06/payment-gateway-for-magento.html</link>
		<comments>http://designrshub.com/2013/06/payment-gateway-for-magento.html#comments</comments>
		<pubDate>Tue, 18 Jun 2013 10:13:39 +0000</pubDate>
		<dc:creator>Designrshub.com</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[eCommerce]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://designrshub.com/?p=17742</guid>
		<description><![CDATA[<p>Creating your own payment gateway for Magento always starts with the configuration file. Luckily the Module Creator has done the work for you. In this tutorial, you will learn how to create your own payment gateway for Magento. Ensure that the app/code/local is in the right path. Also, you should replace the NewModule with your [...]</p><p><a href="http://designrshub.com">Designrshub - Design Articles, Inspirations, Resources and Freebies - Designrshub is a design blog dedicated to provide high quality web and graphic design resources, inspirations, freebies and social media articles.</a></p>]]></description>
				<content:encoded><![CDATA[<p>Creating your own payment gateway for Magento always starts with the configuration file. Luckily the Module Creator has done the work for you.</p>
<p>In this tutorial, you will learn how to create your own payment gateway for Magento. Ensure that the app/code/local is in the right path. Also, you should replace the NewModule with your own module name.</p>
<p>You might want to take a look at the following related articles: </p>
<ul>
<li><a target="_blank" href="http://designrshub.com/2013/06/wordpress-retro-themes.html">Vintage Themes Collection: 25 WordPress Retro Themes</a></li>
<li><a target="_blank" href="http://designrshub.com/2013/06/facebook-login-registration-wordpress-plugin.html">WP Plugins: Create a Facebook Login and Registration System</a></li>
<li><a target="_blank" href="http://designrshub.com/2013/05/personal-wordpress-themes.html">30 Free and Premium Personal WordPress Themes</a></li>
<li><a target="_blank" href="http://designrshub.com/2013/05/wordpress-chat-plugins.html">15 Best WordPress Chat Plugins for Effective Support</a></li>
<li><a target="_blank" href="http://designrshub.com/2013/05/medical-and-health-wordpress-theme.html">A Showcase of Medical and Health Wordpress Theme</a></li>
</ul>
<p style="font-size: 12px; background: #E2E2E2; border: 1px solid silver; padding: 5px 5px; text-align: center; box-shadow: white 0px 0px 1px 1px inset;margin-bottom: 10px;"> Dont forget to <a href="http://feeds.feedburner.com/Designrshub" style="padding-left: 23px; background: url(http://graphicdesignjunction.com/images/rss.png) 2px -1px no-repeat; padding-bottom: 4px;" rel="nofollow" target="_blank">subscribe to our RSS-feed</a> and <a href="https://twitter.com/designrshub" rel="nofollow" target="_blank" style="padding-left: 23px; padding-bottom: 3px; padding-top: 0px; background: url(http://graphicdesignjunction.com/images/twitter.png) 2px -1px no-repeat;">follow us on Twitter</a> – for recent updates.</p>
<h2>Overview</h2>
<p><img class="aligncenter size-full wp-image-17772" alt="How to Create Your Own Payment Gateway For Magento" src="http://designrshub.com/wp-content/uploads/2013/06/payment-gateway-for-magento.jpg" width="600" height="387" /><br />
This module will make a module that is capable of accepting credit card information, and give it authorization when an order has been submitted. This model will also save the ID used in the transaction in the payment record. If you are going to use this code make the necessary changes to the file name.</p>
<p>In this example make sure the app/code/local is at the include_path.</p>
<p><b>Module Declaration</b></p>
<p><i>Make app/etc/modules/CompanyName_NewModule.xml:</i></p>
<pre>
&lt;config&gt;
&lt;modules&gt;
&lt;!-- declare CompanyName_NewModule module --&gt;
&lt;CompanyName_NewModule&gt;

&lt;!-- this is an active module --&gt;
&lt;active&gt;true&lt;/active&gt;

&lt;!-- this module will be located in app/code/local code pool --&gt;
&lt;codePool&gt;local&lt;/codePool&gt;

&lt;!-- specify dependencies for correct module loading order --&gt;
&lt;depends&gt;
&lt;Mage_Payment /&gt;
&lt;/depends&gt;

&lt;/CompanyName_NewModule&gt;
&lt;/modules&gt;
&lt;/config&gt;
</pre>
<p>Now the application is aware of this module.</p>
<p><b>Configuration</b></p>
<p><i>Make the app/code/local/CompanyName/NewModule/etc/config.xml:</i></p>
<pre>
&lt;?xml version="1.0"?&gt;
&lt;config&gt;

&lt;modules&gt;
&lt;CompanyName_NewModule&gt;
&lt;!-- declare module's version information for database updates --&gt;
&lt;version&gt;0.1.0&lt;/version&gt;
&lt;/CompanyName_NewModule&gt;
&lt;/modules&gt;

&lt;global&gt;
&lt;!-- Note: if you use your own namespace (i.e. CompanyName) you also have to declare blocks group for new module. --&gt;

&lt;blocks&gt;
&lt;newmodule&gt;
&lt;class&gt;CompanyName_NewModule_Block&lt;/class&gt;
&lt;/newmodule&gt;
&lt;/blocks&gt;

&lt;!-- declare model group for new module --&gt;
&lt;models&gt;
&lt;!-- model group alias to be used in Mage::getModel('newmodule/...') --&gt;
&lt;newmodule&gt;
&lt;!-- base class name for the model group --&gt;
&lt;class&gt;CompanyName_NewModule_Model&lt;/class&gt;
&lt;/newmodule&gt;
&lt;/models&gt;

&lt;!-- declare resource setup for new module --&gt;
&lt;resources&gt;

&lt;!-- resource identifier --&gt;
&lt;newmodule_setup&gt;

&lt;!-- specify that this resource is a setup resource and used for upgrades --&gt;
&lt;setup&gt;
&lt;!-- which module to look for install/upgrade files in --&gt;
&lt;module&gt;CompanyName_NewModule&lt;/module&gt;
&lt;/setup&gt;

&lt;!-- specify database connection for this resource --&gt;
&lt;connection&gt;

&lt;!-- do not create new connection, use predefined core setup connection --&gt;
&lt;use&gt;core_setup&lt;/use&gt;
&lt;/connection&gt;
&lt;/newmodule_setup&gt;
&lt;newmodule_write&gt;
&lt;connection&gt;
&lt;use&gt;core_write&lt;/use&gt;
&lt;/connection&gt;
&lt;/newmodule_write&gt;
&lt;newmodule_read&gt;
&lt;connection&gt;
&lt;use&gt;core_read&lt;/use&gt;
&lt;/connection&gt;
&lt;/newmodule_read&gt;
&lt;/resources&gt;
&lt;/global&gt;

&lt;!-- declare default configuration values for this module --&gt;
&lt;default&gt;

&lt;!-- 'payment' configuration section (tab) --&gt;
&lt;payment&gt;

&lt;!-- 'newmodule' configuration group (fieldset) --&gt;
&lt;newmodule&gt;

&lt;!-- by default this payment method is inactive --&gt;
&lt;active&gt;0&lt;/active&gt;

&lt;!-- model to handle logic for this payment method --&gt;
&lt;model&gt;newmodule/paymentMethod&lt;/model&gt;

&lt;!-- order status for new orders paid by this payment method --&gt;
&lt;order_status&gt;pending&lt;/order_status&gt;

&lt;!-- default title for payment checkout page and order view page --&gt;
&lt;title&gt;Credit Card (Authorize.net)&lt;/title&gt;

&lt;cctypes&gt;AE,VI,MC,DI&lt;/cctypes&gt;
&lt;payment_action&gt;authorize&lt;/payment_action&gt;
&lt;allowspecific&gt;0&lt;/allowspecific&gt;
&lt;/newmodule&gt;
&lt;/payment&gt;
&lt;/default&gt;
&lt;/config&gt;
</pre>
<p><b>The Adapter Model</b></p>
<p>It must be emphasized that Payment Method is arbitrary and it is up to you to define the method’s name. This is very important and neglecting it might cause the code to fail.</p>
<pre>
&lt;?php
/**
* Our test CC module adapter
*/

class CompanyName_NewModule_Model_PaymentMethod extends Mage_Payment_Model_Method_Cc
{
/**
* unique internal payment method identifier
*
* @var string [a-z0-9_]
*/
protected $_code = 'newmodule';

/**
* Here are instances of flags that will determine functionality availability
* of this module to be used by frontend and backend.
*
* @see all flags and their defaults in Mage_Payment_Model_Method_Abstract
*
* It is possible to have a custom dynamic logic by overloading
* public function can* for each flag respectively
*/

/**
* Is this payment method a gateway (online auth/charge) ?
*/
protected $_isGateway = true;

/**
* Can authorize online?
*/

protected $_canAuthorize = true;

/**
* Can capture funds online?
*/

protected $_canCapture = true;

/**
* Can capture partial amounts online?
*/

protected $_canCapturePartial = false;

/**
* Can refund online?
*/

protected $_canRefund = false;

/**
* Can void transactions online?
*/

protected $_canVoid = true;

/**
* Can use this payment method in administration panel?
*/

protected $_canUseInternal = true;

/**
* Can show this payment method as an option on checkout payment page?
*/

protected $_canUseCheckout = true;

/**
* Is this payment method suitable for multi-shipping checkout?
*/

protected $_canUseForMultishipping = true;

/**
* Can save credit card information for future processing?
*/

protected $_canSaveCc = false;

/**
* Here you will need to implement authorize, capture and void public methods
*
* @see examples of transaction specific public methods such as
* authorize, capture and void in Mage_Paygate_Model_Authorizenet
*/

}

?&gt;
</pre>
<p>This class will interact with your payment gateway.</p>
<p><b>Admin Panel Configuration Options </b></p>
<pre>
&lt;?xml version="1.0"?&gt;
&lt;config&gt;
&lt;sections&gt;
&lt;!-- payment tab --&gt;
&lt;payment&gt;
&lt;groups&gt;
&lt;!-- newmodule fieldset --&gt;
&lt;newmodule translate="label" module="paygate"&gt;
&lt;!-- will have title 'New Module' --&gt;
&lt;label&gt;New Module&lt;/label&gt;
&lt;!-- position between other payment methods --&gt;
&lt;sort_order&gt;670&lt;/sort_order&gt;
&lt;!-- do not show this configuration options in store scope --&gt;
&lt;show_in_default&gt;1&lt;/show_in_default&gt;
&lt;show_in_website&gt;1&lt;/show_in_website&gt;
&lt;show_in_store&gt;0&lt;/show_in_store&gt;
&lt;fields&gt;

&lt;!-- is this payment method active for the website? --&gt;
&lt;active translate="label"&gt;
&lt;!-- label for the field --&gt;
&lt;label&gt;Enabled&lt;/label&gt;
&lt;!-- input type for configuration value --&gt;
&lt;frontend_type&gt;select&lt;/frontend_type&gt;
&lt;!-- model to take the option values from --&gt;
&lt;source_model&gt;adminhtml/system_config_source_yesno&lt;/source_model&gt;
&lt;!-- field position --&gt;
&lt;sort_order&gt;1&lt;/sort_order&gt;
&lt;!-- do not show this field in store scope --&gt;
&lt;show_in_default&gt;1&lt;/show_in_default&gt;
&lt;show_in_website&gt;1&lt;/show_in_website&gt;
&lt;show_in_store&gt;0&lt;/show_in_store&gt;
&lt;/active&gt;

&lt;order_status translate="label"&gt;
&lt;label&gt;New order status&lt;/label&gt;
&lt;frontend_type&gt;select&lt;/frontend_type&gt;
&lt;source_model&gt;adminhtml/system_config_source_order_status_processing&lt;/source_model&gt;
&lt;sort_order&gt;4&lt;/sort_order&gt;
&lt;show_in_default&gt;1&lt;/show_in_default&gt;
&lt;show_in_website&gt;1&lt;/show_in_website&gt;
&lt;show_in_store&gt;0&lt;/show_in_store&gt;
&lt;/order_status&gt;

&lt;title translate="label"&gt;
&lt;label&gt;Title&lt;/label&gt;
&lt;frontend_type&gt;text&lt;/frontend_type&gt;
&lt;sort_order&gt;2&lt;/sort_order&gt;
&lt;show_in_default&gt;1&lt;/show_in_default&gt;
&lt;show_in_website&gt;1&lt;/show_in_website&gt;
&lt;show_in_store&gt;0&lt;/show_in_store&gt;
&lt;/title&gt;

&lt;/fields&gt;
&lt;/newmodule&gt;
&lt;/groups&gt;
&lt;/payment&gt;
&lt;/sections&gt;
&lt;/config&gt;
</pre>
<p><b>Updating the Database </b></p>
<p><i>Make the app/code/local/CompanyName/NewModule/sql/newmodule_setup/mysql4-install-0.1.0.php:</i></p>
<pre>
&lt;?php

// here are the table creation for this module e.g.:
$this-&gt;startSetup();
$this-&gt;run("HERE YOUR SQL");
$this-&gt;endSetup();
&lt;modules&gt;
&lt;CompanyName_NewModule&gt;
&lt;version&gt;0.2.0&lt;/version&gt;
&lt;/CompanyName_NewModule&gt;
&lt;/modules&gt;
&lt;?php

// here are the table updates for this module e.g.:
$this-&gt;startSetup();
$this-&gt;run("HERE YOUR UPDATE SQL");
$this-&gt;endSetup();

&lt;modules&gt;
&lt;CompanyName_NewModule&gt;
&lt;version&gt;0.2.0&lt;/version&gt;
&lt;/CompanyName_NewModule&gt;
&lt;/modules&gt;

&lt;?php

// here are the table updates for this module e.g.:
$this-&gt;startSetup();
$this-&gt;run("HERE YOUR UPDATE SQL");
$this-&gt;endSetup();
</pre>
<h2>How to Set up the WorldPay Gateway</h2>
<p>Go to Magento Go’s Admin Panel and choose <strong>System</strong> &gt; <strong>Configuration</strong> &gt; <strong>Payment Methods</strong>. At the Sales &gt; Configuration panel choose <strong>Payment Methods</strong> and go to <strong>WordlPay</strong>. Now you need to do the following:</p>
<ol>
<li>Choose “enable”.</li>
<li>Leave the Title name as it is or modify it.</li>
<li>For Payment Option choose either Authorize Only or Authorize and Capture.</li>
<li>Provide the following info from your WorldPay account: XML Password, Merchant Code, installation ID and account type.</li>
<li>Set the credit card verification to yes or no. Go to the credit card types and choose the ones that are acceptable with this payment gateway.</li>
</ol>
<p>Now go to the field &#8220;<strong>Payment from Applicable Countries</strong>&#8221; and choose the countries where this payment option is acceptable. Next you should set the 3D Secure Card Validation to &#8220;yes&#8221;. The “Transaction ID prefix” is optional.</p>
<p>Click Save Config and you are done.</p>
<h2>Set up PayPal PayFlow Gateway</h2>
<p>Go to the Admin panel and choose System &gt; <strong>Configuration</strong> and go to <strong>Sales Payment Methods</strong> and select the <strong>Merchant Location</strong> section. Now choose the <strong>Merchant Country</strong> where your business is situated. Now go to <strong>PayPal Payment Gateways</strong> and choose <strong>Configure</strong>.</p>
<p>Go to Required PayPal Settings and go to PayFlow Pro and Express Checkout.</p>
<ol>
<li>Type the email address linked with your PayPal account.</li>
<li>Choose PayPal as “<strong>partner</strong>”.</li>
<li>In the user field set the name needed to log in. Make “<strong>Vendor</strong>” the user name. Type the password as well.</li>
<li>Click “<strong>Enable this Solution</strong>”.</li>
</ol>
<p>If your store has several views, make sure <strong>Current Configuration Scope</strong> is set at the views where the configuration is applicable. Now you have to type a title for identifying PayPal PayFlow Pro at checkout.</p>
<p>It’s best to just have the default on. Now you just need to set <strong>Payment Action to Sale or Authorization</strong>. Next you should go to <strong>Allowed Credit Card Types</strong> and choose the credit cards that work with your payment method.</p>
<p>Now go to the <strong>Advanced Settings</strong> where you can make several modifications to the payment system.</p>
<ol>
<li>If you want customers to type the 3 digit code have the Require CVV Entry set to “yes”.</li>
<li>Enable the “<strong>enable 3D Secure Card Validation</strong>” on Frontend and enable the following: Enable 3D Secure Card Validation in Admin, Severe 3D Secure Card Validation and Centinel API URL.</li>
<li>Now go to <strong>Settlement Report Settings</strong>. If you are a part of the PayPal Secure FTP Server set the login and password.</li>
<li>Set the Sandbox to yes.</li>
<li>Set the right P-Address or Custom Endpoint Hostname (PayPal’s website is the default).</li>
<li>Under Scheduled Fetching, choose the schedule for the system to generate reports.</li>
<li>At the Frontend Experience Settings, you can customize the PayPal logo as well as the merchant pages. There are a lot of other settings here that you can modify and change. The ones that you need to change will depend on the kind of store you are running, so this will vary from case to case.</li>
</ol>
<p>To complete the settings for your Express Checkout enable “<strong>Checkout with PayPal</strong>” at the Shopping Cart page. Click yes to PayPal Shortcut on Shopping Cart. Now follow these steps:</p>
<ol>
<li>Set shortcut on Product View to yes, as this will display the “<strong>Checkout with PayPal</strong>” button at the page for product details.</li>
<li>Go to <strong>Advance Settings</strong> and choose either <strong>Specific Countries</strong> or <strong>All Allowed Countries</strong>.</li>
<li>At the Transfer Cart Line Items set it to “yes”.</li>
</ol>
<h2>One Final Thought</h2>
<p>As you can see, there are many ways to create a payment method in Magento. Regardless of which method you choose, make sure that you test it carefully before actually implementing it. If you encounter trouble when you create a payment method, go through the code again. Chances are you made a mistake. It will also help clean the cache as it may cause problems.</p>
<div class="editorsnote">About the Author: James Larson has been using Magento for several years and his primary specialty is creating your own payment gateway for Magento &amp; <a href="http://www.peexl.com/magento-extensions.html" target="_blank">Magento Extension</a>. Part of his work also includes helping companies set up popular payment methods with the application such as WorldPay and PayPal PayFlow.</div>
<p><a href="http://designrshub.com">Designrshub - Design Articles, Inspirations, Resources and Freebies - Designrshub is a design blog dedicated to provide high quality web and graphic design resources, inspirations, freebies and social media articles.</a></p>]]></content:encoded>
			<wfw:commentRss>http://designrshub.com/2013/06/payment-gateway-for-magento.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iOS 7 Redesign Concepts: 20 Fresh UI and Icon Designs</title>
		<link>http://designrshub.com/2013/06/ios-7-redesign-concepts.html</link>
		<comments>http://designrshub.com/2013/06/ios-7-redesign-concepts.html#comments</comments>
		<pubDate>Mon, 17 Jun 2013 08:50:13 +0000</pubDate>
		<dc:creator>Manuel Garcia</dc:creator>
				<category><![CDATA[Inspirations]]></category>
		<category><![CDATA[Icons]]></category>
		<category><![CDATA[Mobile Design]]></category>

		<guid isPermaLink="false">http://designrshub.com/?p=17773</guid>
		<description><![CDATA[<p>The New iOS 7 design features a different style that most of the consumers didn&#8217;t anticipated, hence, they are wondering why does the design of iOS 7 look so different. Apple’s iOS 7 presentation including the numerous bits of coverage at Apple&#8217;s annual WWDC event created a new point of contention. From the allegory-heavy icons [...]</p><p><a href="http://designrshub.com">Designrshub - Design Articles, Inspirations, Resources and Freebies - Designrshub is a design blog dedicated to provide high quality web and graphic design resources, inspirations, freebies and social media articles.</a></p>]]></description>
				<content:encoded><![CDATA[<p>The New iOS 7 design features a different style that most of the consumers didn&#8217;t anticipated, hence, they are wondering why does the design of iOS 7 look so different. Apple’s iOS 7 presentation including the numerous bits of coverage at Apple&#8217;s annual WWDC event created a new point of contention. From the allegory-heavy icons of iOS 6 to a youthful aesthetic in iOS 7, you&#8217;ll surely feel the difference.</p>
<p>Here&#8217;s a collection of various <strong>iOS 7 redesign concepts</strong> featuring the fresh UI and icon designs from different point of view of artists on what the user interface should be. Ever since Apple unveiled their new design concept, various creatives scrutinized, analyzed, deconstructed and formed their own <em>iOS 7 redesign concepts</em>. Browse through on our selection below and vote for your favorite iOS7 redesign concepts.</p>
<p>Regardless of whether you love or hate, like or dislike the new user interface of iOS 7, we would still love to hear from you about your thoughts not on the original design but on the redesign concepts we gathered below.</p>
<p>You might want to take a look at the following related articles: </p>
<ul>
<li><a target="_blank" href="http://designrshub.com/2013/04/ecommerce-success.html">Going Mobile-Ready is the Recipe of Ecommerce Success</a></li>
<li><a target="_blank" href="http://designrshub.com/2013/04/incoming-call-design.html">20 Incoming Call Design Inspiration for Mobile UI</a></li>
<li><a target="_blank" href="http://designrshub.com/2013/04/mobile-music-player.html">20 Inspirational Mobile Music Player Interface Design</a></li>
<li><a target="_blank" href="http://designrshub.com/2013/03/menu-navigation-designs.html">30 Menu Navigation Designs for Mobile User Interface</a></li>
<li><a target="_blank" href="http://designrshub.com/2013/03/mobile-ui-search-bar-designs.html">Mobile UI: 30 Well-Executed Search Bar Designs</a></li>
</ul>
<p style="font-size: 12px; background: #E2E2E2; border: 1px solid silver; padding: 5px 5px; text-align: center; box-shadow: white 0px 0px 1px 1px inset;margin-bottom: 10px;"> Dont forget to <a href="http://feeds.feedburner.com/Designrshub" style="padding-left: 23px; background: url(http://graphicdesignjunction.com/images/rss.png) 2px -1px no-repeat; padding-bottom: 4px;" rel="nofollow" target="_blank">subscribe to our RSS-feed</a> and <a href="https://twitter.com/designrshub" rel="nofollow" target="_blank" style="padding-left: 23px; padding-bottom: 3px; padding-top: 0px; background: url(http://graphicdesignjunction.com/images/twitter.png) 2px -1px no-repeat;">follow us on Twitter</a> – for recent updates.</p>
<h2>New iOS7 Concept MCASE by Alexis Jossart</h2>
<p><img class="aligncenter size-full wp-image-17795" alt="New iOS7 Concept MCASE by Alexis Jossart" src="http://designrshub.com/wp-content/uploads/2013/06/ios-7-redesign-concepts-20.jpg" width="500" height="742" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://www.behance.net/gallery/IOS7-Concept-MCASE/9222415">View Source</a></span></div>
<h2>IOS 7 Lockscreen Concept by Alexis Jossart</h2>
<p><img class="aligncenter size-full wp-image-17794" alt="IOS 7 Lockscreen Concept by Alexis Jossart" src="http://designrshub.com/wp-content/uploads/2013/06/ios-7-redesign-concepts-19.jpg" width="500" height="977" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://www.behance.net/gallery/IOS-7-Lockscreen-Concept/8266049">View Source</a></span></div>
<h2>iOS 7 Icon Redesign by Suhaila Baheyeldin</h2>
<p><img class="aligncenter size-full wp-image-17793" alt="iOS 7 Icon Redesign by Suhaila Baheyeldin" src="http://designrshub.com/wp-content/uploads/2013/06/ios-7-redesign-concepts-18.jpg" width="500" height="1435" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://www.behance.net/gallery/iOS-7-Icon-Redesign/9252739">View Source</a></span></div>
<h2>iOS 7 Redesign by by Leo Drapeau</h2>
<p><img class="aligncenter size-full wp-image-17775" alt="iOS 7 Redesign by by Leo Drapeau" src="http://designrshub.com/wp-content/uploads/2013/06/ios-7-redesign-concepts-01.jpg" width="500" height="439" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://dribbble.com/shots/1109343-iOS-7-Redesign">View Source</a></span></div>
<h2>iOS 7 Icons by Jackie Tran Anh</h2>
<p><img class="aligncenter size-full wp-image-17777" alt="iOS 7 Icons by Jackie Tran Anh" src="http://designrshub.com/wp-content/uploads/2013/06/ios-7-redesign-concepts-03.jpg" width="500" height="491" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://dribbble.com/shots/1111094-iOS-7-Icons">View Source</a></span></div>
<h2>iOS 7 by JustD</h2>
<p><img class="aligncenter size-full wp-image-17776" alt="iOS 7 by JustD" src="http://designrshub.com/wp-content/uploads/2013/06/ios-7-redesign-concepts-02.jpg" width="500" height="447" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://dribbble.com/shots/1112094-iOS-7">View Source</a></span></div>
<h3>iOS 7 icons by Alexandr Nohrin</h3>
<p><img class="aligncenter size-full wp-image-17778" alt="iOS 7 icons by Alexandr Nohrin" src="http://designrshub.com/wp-content/uploads/2013/06/ios-7-redesign-concepts-04.jpg" width="500" height="1036" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://dribbble.com/shots/1112823-iOS-7-icons">View Source</a></span></div>
<h2>iOS 7 Lock Screen Concept by Peyman Eskandari</h2>
<p><img class="aligncenter size-full wp-image-17784" alt="iOS 7 Lock Screen Concept by Peyman Eskandari" src="http://designrshub.com/wp-content/uploads/2013/06/ios-7-redesign-concepts-10.jpg" width="500" height="594" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://www.behance.net/gallery/iOS-7-Just-a-concept-Part1-Lock-Screen/8707903">View Source</a></span></div>
<h2>iOS7 AirDrop/Share Redesign by Zane David</h2>
<p><img class="aligncenter size-full wp-image-17779" alt="iOS7 AirDrop/Share Redesign by Zane David" src="http://designrshub.com/wp-content/uploads/2013/06/ios-7-redesign-concepts-05.jpg" width="500" height="922" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://dribbble.com/shots/1110114-iOS7-AirDrop-Share-Redesign">View Source</a></span></div>
<h2>FaceTime iOS 7 Concept by Thomas Koch</h2>
<p><img class="aligncenter size-full wp-image-17786" alt="FaceTime iOS 7 Concept by Thomas Koch" src="http://designrshub.com/wp-content/uploads/2013/06/ios-7-redesign-concepts-11.jpg" width="500" height="714" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://www.behance.net/gallery/FaceTime-iOS-7-Concept/8456185">View Source</a></span></div>
<h2>Mochila Mail iOS7 by Victor Erixon</h2>
<p><img class="aligncenter size-full wp-image-17780" alt="Mochila Mail iOS7 by Victor Erixon" src="http://designrshub.com/wp-content/uploads/2013/06/ios-7-redesign-concepts-06.jpg" width="500" height="888" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://dribbble.com/shots/1111523-Mochila-Mail-iOS7">View Source</a></span></div>
<h2>iOS7 Design Practice by Muhammad Farhan</h2>
<p><img class="aligncenter size-full wp-image-17787" alt="iOS7 Design Practice by Muhammad Farhan" src="http://designrshub.com/wp-content/uploads/2013/06/ios-7-redesign-concepts-12.jpg" width="500" height="375" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://www.behance.net/gallery/ios7-design-practice/9288853">View Source</a></span></div>
<h2>iOS 7 Redesign Concepts by Ariel Verber</h2>
<p><img class="aligncenter size-full wp-image-17781" alt="iOS 7 Redesign Concepts by Ariel Verber" src="http://designrshub.com/wp-content/uploads/2013/06/ios-7-redesign-concepts-07.jpg" width="500" height="888" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://dribbble.com/shots/1096590-Ios7-Concept">View Source</a></span></div>
<h2>Apple iOS 7 Redesign by Venkatesh Aiyulu</h2>
<p><img class="aligncenter size-full wp-image-17792" alt="Apple iOS 7 Redesign by Venkatesh Aiyulu" src="http://designrshub.com/wp-content/uploads/2013/06/ios-7-redesign-concepts-17.jpg" width="500" height="888" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://www.behance.net/gallery/iOS-7-Redesign/9310631">View Source</a></span></div>
<h2>iOS 7 Icon Comparison: Home Screen Design</h2>
<p><img class="aligncenter size-full wp-image-17782" alt="iOS 7 Icon Comparison: Home Screen Design" src="http://designrshub.com/wp-content/uploads/2013/06/ios-7-redesign-concepts-08.jpg" width="500" height="1177" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://www.behance.net/gallery/iOS-7-Redesign/9271243">View Source</a></span></div>
<h2>iOS7 Lock screen – Redesign Concept by Mariusz</h2>
<p><img class="aligncenter size-full wp-image-17791" alt="iOS7 Lock screen – Redesign Concept by Mariusz" src="http://designrshub.com/wp-content/uploads/2013/06/ios-7-redesign-concepts-16.jpg" width="500" height="888" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://dribbble.com/shots/1112030-iOS7-Lock-screen-Redesign-2x">View Source</a></span></div>
<h2>Consistent iOS7 Icons by Todor Russanov</h2>
<p><img class="aligncenter size-full wp-image-17783" alt="Consistent iOS7 Icons by Todor Russanov" src="http://designrshub.com/wp-content/uploads/2013/06/ios-7-redesign-concepts-09.jpg" width="500" height="1243" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://www.behance.net/gallery/Consistent-iOS7-Icons/9242789">View Source</a></span></div>
<h2>iOS7 Lock screen – Redesign Concept by Mariusz</h2>
<p><img class="aligncenter size-full wp-image-17789" alt="iOS7 Lock screen – Redesign Concept by Mariusz" src="http://designrshub.com/wp-content/uploads/2013/06/ios-7-redesign-concepts-14.jpg" width="500" height="391" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://dribbble.com/shots/1112030-iOS7-Lock-screen-Redesign-2x">View Source</a></span></div>
<h2>iOS7: Mobile OS Redesign Concept by Nicole Calace</h2>
<p><img class="aligncenter size-full wp-image-17788" alt="iOS7: Mobile OS Redesign Concept by Nicole Calace" src="http://designrshub.com/wp-content/uploads/2013/06/ios-7-redesign-concepts-13.jpg" width="500" height="888" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://www.behance.net/gallery/iOS-Icon-Redesign/9295747">View Source</a></span></div>
<h3>iOS 7 Redesign Concepts by Michael Boswell</h3>
<p><img class="aligncenter size-full wp-image-17790" alt="iOS 7 Redesign Concepts by Michael Boswell" src="http://designrshub.com/wp-content/uploads/2013/06/ios-7-redesign-concepts-15.jpg" width="500" height="888" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://dribbble.com/shots/1111180-iOS7-Redesign">View Source</a></span></div>
<p><a href="http://designrshub.com">Designrshub - Design Articles, Inspirations, Resources and Freebies - Designrshub is a design blog dedicated to provide high quality web and graphic design resources, inspirations, freebies and social media articles.</a></p>]]></content:encoded>
			<wfw:commentRss>http://designrshub.com/2013/06/ios-7-redesign-concepts.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Heart-Stopping Photo Manipulated Images by Mike Campau</title>
		<link>http://designrshub.com/2013/06/photo-manipulated-images.html</link>
		<comments>http://designrshub.com/2013/06/photo-manipulated-images.html#comments</comments>
		<pubDate>Sun, 16 Jun 2013 13:43:38 +0000</pubDate>
		<dc:creator>Manuel Garcia</dc:creator>
				<category><![CDATA[Inspirations]]></category>
		<category><![CDATA[Featured Artist]]></category>
		<category><![CDATA[Photo Manipulation]]></category>

		<guid isPermaLink="false">http://designrshub.com/?p=17756</guid>
		<description><![CDATA[<p>In this series of posts, we will highlight the most exquisitely fascinating artworks and inspiring images crafted by one of the most talented artist from the design community. Mike Campau, a Creative Director based in Commerce, Michigan, is our featured artist of the day. He is a big city talent with a small town attitude. While [...]</p><p><a href="http://designrshub.com">Designrshub - Design Articles, Inspirations, Resources and Freebies - Designrshub is a design blog dedicated to provide high quality web and graphic design resources, inspirations, freebies and social media articles.</a></p>]]></description>
				<content:encoded><![CDATA[<p>In this series of posts, we will highlight the most exquisitely fascinating artworks and inspiring images crafted by one of the most talented artist from the design community.</p>
<p>Mike Campau, a Creative Director based in Commerce, Michigan, is our <a href="http://designrshub.com/tag/featured-artist" target="_blank" rel="nofollow">featured artist of the day</a>. He is a big city talent with a small town attitude. While at the University of Michigan, Mike dabbled in scientific illustration, <a href="http://designrshub.com/tag/graphic-design" target="_blank" rel="nofollow">graphic design</a> and <a href="http://designrshub.com/tag/photography" target="_blank" rel="nofollow">photography</a>. After graduating with a B.F.A., he finally found his passion of digital art &#8211; combining photography, illustration and cgi. His random interests now started to make sense.</p>
<p>Mike has climbed the ladder of studio and agency life and now has over 15 years of valuable experience under his belt. Over the years, he has had the privilege to work on some high profile brands (Chevrolet, WWE, Budweiser, Ford, Pepsi, ESPN, and Sony to name a few) and their agencies. His talents have also landed him celebrity projects including Tim Allen, Kid Rock, Mike Tyson, Roger Daltrey, Dave Grohl, Tracy Morgan, Jeff Duhnam, and many more. Known for his dynamic images and clean execution style, Mike is constantly striving to not only meet, but exceed his high visual standards.</p>
<p>Take a look at his work below and tell us your favorite photo manipulated images.</p>
<p>You may want to take a look at Mike Campau&#8217;s <a href="http://www.mikecampau.com/" target="_blank" rel="nofollow">personal website</a> to know more about him or visit his <a href="http://www.behance.net/mikecampau" target="_blank" rel="nofollow">Behance page</a> to stay up to date on his works.</p>
<div class="editorsnote"><strong>Editor&#8217;s Note:</strong> If you want to participate and get featured, share the link of your artworks in the comment section and we will contact you for further instructions.</div>
<p>You might want to take a look at the following related articles: </p>
<ul>
<li><a target="_blank" href="http://designrshub.com/2013/03/photo-manipulation-by-martin-grohs.html">Extraordinary Photo Manipulation by Martin Grohs</a></li>
<li><a target="_blank" href="http://designrshub.com/2013/06/creative-drawings.html">Creative Drawings and Fine Arts by Joe Fenton</a></li>
<li><a target="_blank" href="http://designrshub.com/2013/06/digital-art-projects.html">Creative Digital Art Projects by Grand Chamaco</a></li>
<li><a target="_blank" href="http://designrshub.com/2013/05/candy-art-designs.html">Sweet Candy Art Designs and Illustrations by Sheena Aw</a></li>
<li><a target="_blank" href="http://designrshub.com/2013/05/face-swap-photos.html">20 Most Disturbingly Funny Face Swap Photos</a></li>
</ul>
<p style="font-size: 12px; background: #E2E2E2; border: 1px solid silver; padding: 5px 5px; text-align: center; box-shadow: white 0px 0px 1px 1px inset;margin-bottom: 10px;"> Dont forget to <a href="http://feeds.feedburner.com/Designrshub" style="padding-left: 23px; background: url(http://graphicdesignjunction.com/images/rss.png) 2px -1px no-repeat; padding-bottom: 4px;" rel="nofollow" target="_blank">subscribe to our RSS-feed</a> and <a href="https://twitter.com/designrshub" rel="nofollow" target="_blank" style="padding-left: 23px; padding-bottom: 3px; padding-top: 0px; background: url(http://graphicdesignjunction.com/images/twitter.png) 2px -1px no-repeat;">follow us on Twitter</a> – for recent updates.</p>
<h2>Street Mimes with Paul Mobley</h2>
<p><img class="aligncenter size-full wp-image-17768" alt="Street Mimes with Paul Mobley" src="http://designrshub.com/wp-content/uploads/2013/06/photo-manipulated-images-10.jpg" width="500" height="313" /></p>
<h2>Human Displacement</h2>
<p><img class="aligncenter size-full wp-image-17759" alt="Human Displacement" src="http://designrshub.com/wp-content/uploads/2013/06/photo-manipulated-images-01.jpg" width="500" height="635" /></p>
<h2>Dimensional Photography</h2>
<p><img class="aligncenter size-full wp-image-17762" alt="Dimensional Photography" src="http://designrshub.com/wp-content/uploads/2013/06/photo-manipulated-images-04.jpg" width="500" height="313" /></p>
<h2>Photo Manipulated Images</h2>
<p><img class="aligncenter size-full wp-image-17767" alt="Photo Manipulated Images" src="http://designrshub.com/wp-content/uploads/2013/06/photo-manipulated-images-09.jpg" width="500" height="696" /></p>
<h2>Bouncer &amp; Night Dancer</h2>
<p><img class="aligncenter size-full wp-image-17764" alt="Bouncer &amp; Night Dancer" src="http://designrshub.com/wp-content/uploads/2013/06/photo-manipulated-images-06.jpg" width="500" height="260" /></p>
<h2>CGI Projects</h2>
<p><img class="aligncenter size-full wp-image-17766" alt="CGI Projects" src="http://designrshub.com/wp-content/uploads/2013/06/photo-manipulated-images-08.jpg" width="500" height="667" /></p>
<h3>Dimensional Photography</h3>
<p><img class="aligncenter size-full wp-image-17763" alt="Dimensional Photography" src="http://designrshub.com/wp-content/uploads/2013/06/photo-manipulated-images-05.jpg" width="500" height="313" /></p>
<h3>Photo Manipulated Images</h3>
<p><img class="aligncenter size-full wp-image-17765" alt="Photo Manipulated Images" src="http://designrshub.com/wp-content/uploads/2013/06/photo-manipulated-images-07.jpg" width="500" height="720" /></p>
<h2>Black Light</h2>
<p><img class="aligncenter size-full wp-image-17761" alt="Black Light" src="http://designrshub.com/wp-content/uploads/2013/06/photo-manipulated-images-03.jpg" width="500" height="323" /></p>
<h2>Recharge</h2>
<p><img class="aligncenter size-full wp-image-17760" alt="Recharge" src="http://designrshub.com/wp-content/uploads/2013/06/photo-manipulated-images-02.jpg" width="500" height="793" /></p>
<p><a href="http://designrshub.com">Designrshub - Design Articles, Inspirations, Resources and Freebies - Designrshub is a design blog dedicated to provide high quality web and graphic design resources, inspirations, freebies and social media articles.</a></p>]]></content:encoded>
			<wfw:commentRss>http://designrshub.com/2013/06/photo-manipulated-images.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>20 Mystically Constructed Unicorn Logo Design</title>
		<link>http://designrshub.com/2013/06/unicorn-logo-design.html</link>
		<comments>http://designrshub.com/2013/06/unicorn-logo-design.html#comments</comments>
		<pubDate>Fri, 14 Jun 2013 09:14:19 +0000</pubDate>
		<dc:creator>Manuel Garcia</dc:creator>
				<category><![CDATA[Inspirations]]></category>
		<category><![CDATA[Logo Design]]></category>

		<guid isPermaLink="false">http://designrshub.com/?p=17645</guid>
		<description><![CDATA[<p>If you&#8217;re philosophy in logo designing is about creating a magical emblem, unicorn logo design can somehow fit your mystical necessities. After the logo design concepts, the next challenge that you will face is about how you will present your logo. When it comes to logo design presentation, there are various styles and techniques that [...]</p><p><a href="http://designrshub.com">Designrshub - Design Articles, Inspirations, Resources and Freebies - Designrshub is a design blog dedicated to provide high quality web and graphic design resources, inspirations, freebies and social media articles.</a></p>]]></description>
				<content:encoded><![CDATA[<p>If you&#8217;re philosophy in logo designing is about creating a magical emblem, <strong>unicorn logo design</strong> can somehow fit your mystical necessities. After the logo design concepts, the next challenge that you will face is about how you will present your logo.</p>
<p>When it comes to logo design presentation, there are various styles and techniques that you might incorporate with. If you have seen <a href="http://designrshub.com/2012/01/20-old-looking-examples-of-vintage-logo-designs.html" target="_blank">vintage logo designs</a>, you will notice that most of the <a href="http://designrshub.com/2013/05/logo-design-presentations.html" target="_blank">logos are using old paper background</a>. Since <a href="http://designrshub.com/2012/06/free-texture-packs-collection-old-paper-textures.html" target="_blank">old paper textures</a> can transform the tone of the logos, various logo designers have been using these design resources to enhance their projects not only on logo but also for other design projects.</p>
<p>On the other hand, there are also some logo designers who have been using <a href="http://designrshub.com/2013/03/blurred-background-in-logo-design.html" target="_blank">blurred background in logo design</a>. This is to show more the typeface advancements in the logo itself. If you are tired with the printed output, you can also make a CSS version of your logo to make it unique. You can view the tutorial on <a href="http://designrshub.com/2013/01/skype-logo-css3.html" target="_blank">how to create Skype logo with pure CSS3</a> for a sample output. Going back to unicorn logos, you must read on.</p>
<p>Here&#8217;s a magical collection of mystically constructed <em>unicorn logo design</em> showcasing different works by creative professionals across industries. Since the logo is the focal point of any identity system, carefully choosing the main symbol is a must. In this case, unicorn logos are best for creating magical identity. To wrap up this logo design collection, browse through the selection of unicorn logo designs below.</p>
<p>You might want to take a look at the following related articles: </p>
<ul>
<li><a target="_blank" href="http://designrshub.com/2013/06/dolphin-logo-design.html">20 Sleek Dolphin Logo Design Examples and Ideas</a></li>
<li><a target="_blank" href="http://designrshub.com/2013/05/cake-logo-design-concepts.html">A Collection of Delectable Cake Logo Design Concepts</a></li>
<li><a target="_blank" href="http://designrshub.com/2013/05/logo-design-presentations.html">25 Logo Design Presentations Using Old Paper Background</a></li>
<li><a target="_blank" href="http://designrshub.com/2013/05/gorilla-logo-design.html">15 Mighty Gorilla Logo Design with Strong Concepts</a></li>
<li><a target="_blank" href="http://designrshub.com/2013/04/ninja-logo-design.html">20 Fierce Ninja Logo Design Ideas for Inspiration</a></li>
</ul>
<p style="font-size: 12px; background: #E2E2E2; border: 1px solid silver; padding: 5px 5px; text-align: center; box-shadow: white 0px 0px 1px 1px inset;margin-bottom: 10px;"> Dont forget to <a href="http://feeds.feedburner.com/Designrshub" style="padding-left: 23px; background: url(http://graphicdesignjunction.com/images/rss.png) 2px -1px no-repeat; padding-bottom: 4px;" rel="nofollow" target="_blank">subscribe to our RSS-feed</a> and <a href="https://twitter.com/designrshub" rel="nofollow" target="_blank" style="padding-left: 23px; padding-bottom: 3px; padding-top: 0px; background: url(http://graphicdesignjunction.com/images/twitter.png) 2px -1px no-repeat;">follow us on Twitter</a> – for recent updates.</p>
<h2>Unicorn Logo Designs</h2>
<p><img class="aligncenter size-full wp-image-17666" alt="Unicorn Logo Designs" src="http://designrshub.com/wp-content/uploads/2013/06/unicorn-logo-design-20.png" width="325" height="260" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="Unicorn Logo Designs">View Source</a></span></div>
<h2>Uniqcon</h2>
<p><img class="aligncenter size-full wp-image-17651" alt="Uniqcon" src="http://designrshub.com/wp-content/uploads/2013/06/unicorn-logo-design-05.png" width="325" height="260" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://logopond.com/gallery/detail/190750">View Source</a></span></div>
<h2>Unicorno</h2>
<p><img class="aligncenter size-full wp-image-17663" alt="Unicorno" src="http://designrshub.com/wp-content/uploads/2013/06/unicorn-logo-design-17.png" width="325" height="260" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://logopond.com/gallery/detail/173405">View Source</a></span></div>
<h3>Unicorn Logo Design</h3>
<p><img class="aligncenter size-full wp-image-17664" alt="Unicorn Logo Design" src="http://designrshub.com/wp-content/uploads/2013/06/unicorn-logo-design-18.png" width="325" height="260" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://logopond.com/gallery/detail/90521">View Source</a></span></div>
<h2>The Unicorn Pub</h2>
<p><img class="aligncenter size-full wp-image-17650" alt="The Unicorn Pub" src="http://designrshub.com/wp-content/uploads/2013/06/unicorn-logo-design-04.png" width="325" height="260" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://logopond.com/gallery/detail/189710">View Source</a></span></div>
<h2>Vienaragio Slenis</h2>
<p><img class="aligncenter size-full wp-image-17653" alt="Vienaragio Slenis" src="http://designrshub.com/wp-content/uploads/2013/06/unicorn-logo-design-07.png" width="325" height="260" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://logopond.com/gallery/detail/104359">View Source</a></span></div>
<h2>Crescent Tales</h2>
<p><img class="aligncenter size-full wp-image-17652" alt="Crescent Tales" src="http://designrshub.com/wp-content/uploads/2013/06/unicorn-logo-design-06.png" width="325" height="260" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://logopond.com/gallery/detail/176779">View Source</a></span></div>
<h2>Uniq</h2>
<p><img class="aligncenter size-full wp-image-17647" alt="Uniq" src="http://designrshub.com/wp-content/uploads/2013/06/unicorn-logo-design-01.png" width="325" height="260" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://logopond.com/gallery/detail/182442">View Source</a></span></div>
<h2>Unicorn Logo Design</h2>
<p><img class="aligncenter size-full wp-image-17648" alt="Unicorn Logo Design" src="http://designrshub.com/wp-content/uploads/2013/06/unicorn-logo-design-02.png" width="325" height="260" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://logopond.com/gallery/detail/189780">View Source</a></span></div>
<h2>Unicorn Media</h2>
<p><img class="aligncenter size-full wp-image-17655" alt="Unicorn Media" src="http://designrshub.com/wp-content/uploads/2013/06/unicorn-logo-design-09.png" width="325" height="260" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://logopond.com/gallery/detail/132176">View Source</a></span></div>
<h2>Inappropriate Factory</h2>
<p><img class="aligncenter size-full wp-image-17661" alt="Inappropriate Factory" src="http://designrshub.com/wp-content/uploads/2013/06/unicorn-logo-design-15.png" width="325" height="260" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://logopond.com/gallery/detail/178911">View Source</a></span></div>
<h2>Unique Idea</h2>
<p><img class="aligncenter size-full wp-image-17654" alt="Unique Idea" src="http://designrshub.com/wp-content/uploads/2013/06/unicorn-logo-design-08.png" width="325" height="260" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://logopond.com/gallery/detail/104727">View Source</a></span></div>
<h2>Pink Unicorn Publishing</h2>
<p><img class="aligncenter size-full wp-image-17660" alt="Pink Unicorn Publishing" src="http://designrshub.com/wp-content/uploads/2013/06/unicorn-logo-design-14.png" width="325" height="260" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://logopond.com/gallery/detail/70083">View Source</a></span></div>
<h2>UnicornMed</h2>
<p><img class="aligncenter size-full wp-image-17659" alt="UnicornMed" src="http://designrshub.com/wp-content/uploads/2013/06/unicorn-logo-design-13.png" width="325" height="260" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://logopond.com/gallery/detail/57488">View Source</a></span></div>
<h2>Paonyo</h2>
<p><img class="aligncenter size-full wp-image-17657" alt="Paonyo" src="http://designrshub.com/wp-content/uploads/2013/06/unicorn-logo-design-11.png" width="325" height="260" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://logopond.com/gallery/detail/172166">View Source</a></span></div>
<h3>Unicorn Logo Designs</h3>
<p><img class="aligncenter size-full wp-image-17665" alt="Unicorn Logo Designs" src="http://designrshub.com/wp-content/uploads/2013/06/unicorn-logo-design-19.png" width="325" height="260" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://logopond.com/gallery/detail/84020">View Source</a></span></div>
<h2>Santamelia</h2>
<p><img class="aligncenter size-full wp-image-17649" alt="Santamelia" src="http://designrshub.com/wp-content/uploads/2013/06/unicorn-logo-design-03.png" width="325" height="260" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://logopond.com/gallery/detail/182774">View Source</a></span></div>
<h2>Barbara Matruglio</h2>
<p><img class="aligncenter size-full wp-image-17658" alt="Barbara Matruglio" src="http://designrshub.com/wp-content/uploads/2013/06/unicorn-logo-design-12.png" width="325" height="260" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://logopond.com/gallery/detail/75663">View Source</a></span></div>
<h2>Unimedia</h2>
<p><img class="aligncenter size-full wp-image-17662" alt="Unimedia" src="http://designrshub.com/wp-content/uploads/2013/06/unicorn-logo-design-16.png" width="325" height="260" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://logopond.com/gallery/detail/25396">View Source</a></span></div>
<h2>CSS Prefix</h2>
<p><img class="aligncenter size-full wp-image-17656" alt="CSS Prefix" src="http://designrshub.com/wp-content/uploads/2013/06/unicorn-logo-design-10.png" width="325" height="260" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://logopond.com/gallery/detail/162024">View Source</a></span></div>
<p><a href="http://designrshub.com">Designrshub - Design Articles, Inspirations, Resources and Freebies - Designrshub is a design blog dedicated to provide high quality web and graphic design resources, inspirations, freebies and social media articles.</a></p>]]></content:encoded>
			<wfw:commentRss>http://designrshub.com/2013/06/unicorn-logo-design.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Five Crystal Clear Glass House Designs and Concepts</title>
		<link>http://designrshub.com/2013/06/glass-house-designs.html</link>
		<comments>http://designrshub.com/2013/06/glass-house-designs.html#comments</comments>
		<pubDate>Wed, 12 Jun 2013 05:16:39 +0000</pubDate>
		<dc:creator>Designrshub.com</dc:creator>
				<category><![CDATA[Inspirations]]></category>
		<category><![CDATA[Architecture]]></category>

		<guid isPermaLink="false">http://designrshub.com/?p=17696</guid>
		<description><![CDATA[<p>Glass houses have long captured the imaginations of architects and home-dwellers alike. Say what you will about these types of buildings, but glass houses are striking and evocative in the hands of the right architect. Their ability to both enable visual access to the interior of the structure, as well as to reflect the world [...]</p><p><a href="http://designrshub.com">Designrshub - Design Articles, Inspirations, Resources and Freebies - Designrshub is a design blog dedicated to provide high quality web and graphic design resources, inspirations, freebies and social media articles.</a></p>]]></description>
				<content:encoded><![CDATA[<p>Glass houses have long captured the imaginations of architects and home-dwellers alike. Say what you will about these types of buildings, but glass houses are striking and evocative in the hands of the right architect.</p>
<p>Their ability to both enable visual access to the interior of the structure, as well as to reflect the world around it, is an interesting paradigm that has been undergone extensive experimentation by all manner of architects, both pioneering and derivative.</p>
<p>This article will examine the different approaches to the glass house designs by builders all over the world. Though they don&#8217;t look like a <a href="http://designrshub.com/2012/12/amazing-mansion-designs.html" target="_blank">glamorous mansion design</a> or a <a href="http://designrshub.com/2012/12/modern-and-medieval-castle-designs.html" target="_blank">medieval castle design</a>, these glass houses will surely finds its way to your heart.</p>
<p>You might want to take a look at the following related articles: </p>
<ul>
<li><a target="_blank" href="http://designrshub.com/2012/12/modern-and-medieval-castle-designs.html">30 Beautiful Modern and Medieval Castle Designs</a></li>
<li><a target="_blank" href="http://designrshub.com/2012/12/amazing-mansion-designs.html">30 Amazing Mansion Designs to Live Life Like Royalty</a></li>
<li><a target="_blank" href="http://designrshub.com/2012/11/infinity-pool-design-ideas.html">30 Flabbergasting Examples of Infinity Pool Design Ideas</a></li>
</ul>
<p style="font-size: 12px; background: #E2E2E2; border: 1px solid silver; padding: 5px 5px; text-align: center; box-shadow: white 0px 0px 1px 1px inset;margin-bottom: 10px;"> Dont forget to <a href="http://feeds.feedburner.com/Designrshub" style="padding-left: 23px; background: url(http://graphicdesignjunction.com/images/rss.png) 2px -1px no-repeat; padding-bottom: 4px;" rel="nofollow" target="_blank">subscribe to our RSS-feed</a> and <a href="https://twitter.com/designrshub" rel="nofollow" target="_blank" style="padding-left: 23px; padding-bottom: 3px; padding-top: 0px; background: url(http://graphicdesignjunction.com/images/twitter.png) 2px -1px no-repeat;">follow us on Twitter</a> – for recent updates.</p>
<h2>Glass House by Philip Johnson</h2>
<p><img class="aligncenter size-full wp-image-17703" alt="Glass House by Philip Johnson" src="http://designrshub.com/wp-content/uploads/2013/06/glass-house-designs-03.jpg" width="500" height="333" /><br />
No catalogue of glass houses is complete without this paragon of the “genre”. Constructed in 1949, this house is almost universally regarded as the progenitor of the design. Taking off from the seminal Farnsworth House by modernism luminary Mies van de Rohe, Philip Johnson took the Farnsworth House’s starkness with steel, concrete, and glass, and adopted it to his own style.<br />
<img class="aligncenter size-full wp-image-17704" alt="Glass House by Philip Johnson" src="http://designrshub.com/wp-content/uploads/2013/06/glass-house-designs-02.jpg" width="500" height="327" /><br />
Built on the 47-acre estate of Philip Johnson, the house has been called the world’s “most beautiful and least functional home”. The first part because of its breathtaking views—Johnson created the house as a sort of vantage point overlooking his property and the areas beyond. The second part was because of its glaring lack of privacy.<br />
<img class="aligncenter size-full wp-image-17702" alt="Glass House by Philip Johnson" src="http://designrshub.com/wp-content/uploads/2013/06/glass-house-designs-01.jpg" width="500" height="375" /><br />
The Glass House was used as a living space by Johnson and his partner David Whitney for several years, alternating between this and their other, more private homes. The house has also been described as having “the most expensive wallpaper” owing to its lush landscaped surroundings.</p>
<h2>Woning Moereels by Jo Crepain</h2>
<p><img class="aligncenter size-full wp-image-17708" alt="Woning Moereels by Jo Crepain" src="http://designrshub.com/wp-content/uploads/2013/06/glass-house-designs-06.jpg" width="500" height="651" /><br />
The best architects aren&#8217;t just good at creating—they are excellent at adapting the environment towards their own ends. The best architecture, after all, is that perfectly attuned with its environment, aware of its sense of place with the location and culture in which it resides.<br />
<img class="aligncenter size-full wp-image-17706" alt="Woning Moereels by Jo Crepain" src="http://designrshub.com/wp-content/uploads/2013/06/glass-house-designs-04.jpg" width="500" height="375" /><br />
This second example by Belgian architect Jo Crepain is a fitting example of this philosophy. This six-story glass house is the final step of the structure’s transformation from a water tower originally built in the 1900s. The entire process took over 17 years, over a series of incremental renovations.<br />
<img class="aligncenter size-full wp-image-17707" alt="Woning Moereels by Jo Crepain" src="http://designrshub.com/wp-content/uploads/2013/06/glass-house-designs-05.jpg" width="500" height="375" /><br />
The final result is obvious—the structure is semi-translucent and has ample room to make up the world’s most awesome bachelor pad. The untouched reservoir up top, as well as the house’s spartan aesthetic, recall the structure’s industrial origins. At night, the tower even glows in the dark, evoke visions of a lighthouse, complete with its solitary resident.</p>
<h2>Glass Pavilion by Steve Hermann</h2>
<p><img class="aligncenter size-full wp-image-17709" alt="Glass Pavilion by Steve Hermann" src="http://designrshub.com/wp-content/uploads/2013/06/glass-house-designs-07.jpg" width="500" height="333" /><br />
Briefly mentioned above, the legendary Farnsworth House by the equally legendary Mies van der Rohe is the epitome of a residence built following the tenets of modernism. It continues to be an inspiration to the present day, as evidenced by Steve Hermann’s estate, Glass Pavilion, located in Montecito, California.<br />
<img class="aligncenter size-full wp-image-17710" alt="Glass Pavilion by Steve Hermann" src="http://designrshub.com/wp-content/uploads/2013/06/glass-house-designs-08.jpg" width="500" height="332" /><br />
Not to be confused with the 1914 Bruno Taut exhibition structure, Hermann’s Glass Pavilion is a private residence that takes the philosophies of van der Rohe’s house and brings them to the contemporary age.<br />
<img class="aligncenter size-full wp-image-17711" alt="Glass Pavilion by Steve Hermann" src="http://designrshub.com/wp-content/uploads/2013/06/glass-house-designs-09.jpg" width="500" height="332" /><br />
Among the house’s primary features are a 32-car parking garage that also doubles as an art gallery, as well as a kitchen area with attached winery that holds thousands and thousands of bottles.<br />
<img class="aligncenter size-full wp-image-17712" alt="Glass Pavilion by Steve Hermann" src="http://designrshub.com/wp-content/uploads/2013/06/glass-house-designs-10.jpg" width="500" height="465" /><br />
All the glass on the site is the special Star Fire glass, which is predominantly used in jewelry cases. The whole house allows for integration with nature (especially with its extensive glasswork), and the structure even appears to be floating at certain angles.</p>
<h2>H House by Wiel Arets Architects</h2>
<p><img class="aligncenter size-full wp-image-17721" alt="H House by Wiel Arets Architects" src="http://designrshub.com/wp-content/uploads/2013/06/glass-house-designs-17.jpg" width="500" height="531" /><br />
This suburban home in the Netherlands, created almost exclusively with concrete and glass, is a breathtaking work of modern architecture. While this is a thoroughly traditional home through and through, being commissioned for a couple’s private home, this is a fantastic example of the contemporary glass house.<br />
<img class="aligncenter size-full wp-image-17720" alt="H House by Wiel Arets Architects" src="http://designrshub.com/wp-content/uploads/2013/06/glass-house-designs-15.jpg" width="500" height="657" /><br />
The H House has no walls at all, or at least, none that provide any actual support. Instead, in the interior of the home, concrete columns support the slabs of concrete that provide firm footing. The house’s external walls are all of glass in varying shades of transparency, making the house itself blend in with the changing Dutch seasons.<br />
<img class="aligncenter size-full wp-image-17719" alt="H House by Wiel Arets Architects" src="http://designrshub.com/wp-content/uploads/2013/06/glass-house-designs-16.jpg" width="500" height="334" /><br />
Inside the house, open spaces are the subscribed design tenet, with flowing areas giving no boundary to the traditional living room, dining room, bedroom, and bathroom. The house’s foyer and the bathroom can also cantilever outward, changing the very facade of the house virtually at will. Curtains afford a certain level of privacy, allowing the couple to live in peace.</p>
<h2>Glass House Concepts by Carlo Santambrogio</h2>
<p><img class="aligncenter size-full wp-image-17715" alt="Glass House Concepts by Carlo Santambrogio" src="http://designrshub.com/wp-content/uploads/2013/06/glass-house-designs-14.jpg" width="500" height="261" /><br />
This final entry is not a real-world example, but rather a series of concepts by Italian architect and designer Carlo Santambroglio. Whereas the other examples in this article have covered houses made of a wide range of materials, the structures in the Santambrogio series are made entirely of glass.<br />
<img class="aligncenter size-full wp-image-17716" alt="Glass House Concepts by Carlo Santambrogio" src="http://designrshub.com/wp-content/uploads/2013/06/glass-house-designs-11.jpg" width="500" height="342" /><br />
The first, the “Snow House”, is designed to make occupants feel as if they are one with nature. Built of reinforced glass to counter blizzards and the like, the house’s clear glass can turn matte instantly, providing privacy. The house is also designed following a grid, and can be constructed in several configurations due to its modularity.<br />
<img class="aligncenter size-full wp-image-17717" alt="Glass House Concepts by Carlo Santambrogio" src="http://designrshub.com/wp-content/uploads/2013/06/glass-house-designs-12.jpg" width="500" height="303" /><br />
The second house, the “Cliff House”, is meant for integration with waterscapes. Constructed above a still bed of water (which could probably double as a swimming pool), the house gives an illusion that occupants are walking on water.<br />
<img class="aligncenter size-full wp-image-17718" alt="Glass House Concepts by Carlo Santambrogio" src="http://designrshub.com/wp-content/uploads/2013/06/glass-house-designs-13.jpg" width="500" height="278" /><br />
Due to their materials, the Santambrogio houses allow for a 360-degree view of the surrounding environment.</p>
<div class="editorsnote"><strong>About the Author:</strong> <a href="https://plus.google.com/u/0/116289680192378162835/" target="_blank">Gabby Roxas</a> is a writer and interior / exterior design consultant for <a href="http://www.australianoutdoorliving.com.au/" target="_blank">Australianoutdoorliving.com.au</a>, one of the prime companies that manufacture outdoor blinds, roller shutters, and artificial lawns</div>
<p><a href="http://designrshub.com">Designrshub - Design Articles, Inspirations, Resources and Freebies - Designrshub is a design blog dedicated to provide high quality web and graphic design resources, inspirations, freebies and social media articles.</a></p>]]></content:encoded>
			<wfw:commentRss>http://designrshub.com/2013/06/glass-house-designs.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Latest Concrete5 Plugins You Should Check Out</title>
		<link>http://designrshub.com/2013/06/concrete5-plugins.html</link>
		<comments>http://designrshub.com/2013/06/concrete5-plugins.html#comments</comments>
		<pubDate>Tue, 11 Jun 2013 12:03:29 +0000</pubDate>
		<dc:creator>Manuel Garcia</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Concrete5]]></category>
		<category><![CDATA[WordPress Plugins]]></category>

		<guid isPermaLink="false">http://designrshub.com/?p=17668</guid>
		<description><![CDATA[<p>Concrete5 is one of the open source content management systems available to use by both developers and site owners alike since the focus of the CMS is for both worlds. If you are looking for the latest Concrete5 plugins, here&#8217;s a collection of premium ones that you should check out and integrate with your Concrete5 [...]</p><p><a href="http://designrshub.com">Designrshub - Design Articles, Inspirations, Resources and Freebies - Designrshub is a design blog dedicated to provide high quality web and graphic design resources, inspirations, freebies and social media articles.</a></p>]]></description>
				<content:encoded><![CDATA[<p>Concrete5 is one of the open source content management systems available to use by both developers and site owners alike since the focus of the CMS is for both worlds.</p>
<p>If you are looking for the latest Concrete5 plugins, here&#8217;s a collection of premium ones that you should check out and integrate with your Concrete5 website.</p>
<p>You might want to take a look at the following related articles: </p>
<ul>
<li><a target="_blank" href="http://designrshub.com/2013/06/facebook-login-registration-wordpress-plugin.html">WP Plugins: Create a Facebook Login and Registration System</a></li>
<li><a target="_blank" href="http://designrshub.com/2013/05/wordpress-chat-plugins.html">15 Best WordPress Chat Plugins for Effective Support</a></li>
<li><a target="_blank" href="http://designrshub.com/2012/07/premium-wordpress-facebook-plugins.html">15 Must Have Premium WordPress Facebook Plugins</a></li>
<li><a target="_blank" href="http://designrshub.com/2012/06/free-premium-slideshow-gallery-wordpress-plugins.html">Free and Premium Slideshow Gallery Wordpress Plugins</a></li>
</ul>
<p style="font-size: 12px; background: #E2E2E2; border: 1px solid silver; padding: 5px 5px; text-align: center; box-shadow: white 0px 0px 1px 1px inset;margin-bottom: 10px;"> Dont forget to <a href="http://feeds.feedburner.com/Designrshub" style="padding-left: 23px; background: url(http://graphicdesignjunction.com/images/rss.png) 2px -1px no-repeat; padding-bottom: 4px;" rel="nofollow" target="_blank">subscribe to our RSS-feed</a> and <a href="https://twitter.com/designrshub" rel="nofollow" target="_blank" style="padding-left: 23px; padding-bottom: 3px; padding-top: 0px; background: url(http://graphicdesignjunction.com/images/twitter.png) 2px -1px no-repeat;">follow us on Twitter</a> – for recent updates.</p>
<h2>Instagram Fancybox For Concrete5</h2>
<p>Create the ultimate Instagram gallery/portfolio with Instagram Fancybox For Concrete5. This is a plugin designed to allow you to easily pull photos from the Instagram API and display them on your site.<br />
<img class="aligncenter size-full wp-image-17679" alt="Instagram Fancybox For Concrete5" src="http://designrshub.com/wp-content/uploads/2013/06/concrete5-plugins-10.jpg" width="590" height="300" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://codecanyon.net/item/instagram-fancybox-for-concrete-5/4803309?ref=ManuelGarciaPH">View Source</a></span></div>
<h2>Weather Forecast &#8211; Concrete5 Plugin</h2>
<p>A weather forecast for Concrete5 that allows you to detect location with fall back on default location and more features.<br />
<img class="aligncenter size-full wp-image-17678" alt="Weather Forecast - Concrete5 Plugin" src="http://designrshub.com/wp-content/uploads/2013/06/concrete5-plugins-09.jpg" width="590" height="300" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://codecanyon.net/item/weather-forecast-concrete-5-plugin/4805174?ref=ManuelGarciaPH">View Source</a></span></div>
<h2>YouTube Channel Anywhere Concrete5 Add-On</h2>
<p>The Youtube Channel Anywhere Plugin is a Concrete5 plugin that allow you to display specific number of videos from any youtube channel anywhere on Concrete5 website.<br />
<img class="aligncenter size-full wp-image-17677" alt="YouTube Channel Anywhere Concrete5 Add-On" src="http://designrshub.com/wp-content/uploads/2013/06/concrete5-plugins-08.jpg" width="590" height="300" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://codecanyon.net/item/youtube-channel-anywhere-concrete5-addon/4770313?ref=ManuelGarciaPH">View Source</a></span></div>
<h2>Payza Gateway for Concrete5</h2>
<p>Payza Payment Gateway is a Concrete5 Extension which allows the eCommerce add on to accept payment through Payza account balance and credit card payments without worrying the customers credit cards details which are taken care by the Payza.<br />
<img class="aligncenter size-full wp-image-17671" alt="Payza Gateway for Concrete5" src="http://designrshub.com/wp-content/uploads/2013/06/concrete5-plugins-02.jpg" width="590" height="300" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://codecanyon.net/item/payza-gateway-for-concrete5/4797658?ref=ManuelGarciaPH">View Source</a></span></div>
<h2>RSS Partners &#8211; Concrete5 RSS Feeds</h2>
<p>RSS Partners is a simple Concrete5 block for creating a list of RSS Partners for your site. With just a few clicks, you can add multiple sources of news/articles from your partners and favorite sources.<br />
<img class="aligncenter size-full wp-image-17673" alt="RSS Partners - Concrete5 RSS Feeds" src="http://designrshub.com/wp-content/uploads/2013/06/concrete5-plugins-04.jpg" width="590" height="300" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://codecanyon.net/item/rss-partners-concrete5-rss-feeds/4803113?ref=ManuelGarciaPH">View Source</a></span></div>
<h2>smoothCounter &#8211; Concrete5 Hit Counter</h2>
<p>This concrete5 plugin allows you to integrate a counter system to your website plus a few functionalities such as custom styles and css animations.<br />
<img class="aligncenter size-full wp-image-17676" alt="smoothCounter - Concrete5 Hit Counter" src="http://designrshub.com/wp-content/uploads/2013/06/concrete5-plugins-07.jpg" width="590" height="300" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://codecanyon.net/item/smoothcounter-concrete5-hit-counter/4781455?ref=ManuelGarciaPH">View Source</a></span></div>
<h2>Concrete5 Plugins: Plain Text</h2>
<p>Plain Text is a simple to use Concrete5 add on (or block) that allows you to insert plain text within a Concrete5 area. This is useful for those who have areas surrounded by hard-coded HTML tags like <span> or<br />
</span></p>
<blockquote><p>and just need to insert text.<br />
<img class="aligncenter size-full wp-image-17670" alt="Concrete5 Plugins: Plain Text" src="http://designrshub.com/wp-content/uploads/2013/06/concrete5-plugins-01.jpg" width="590" height="300" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://codecanyon.net/item/plain-text/4771248?ref=ManuelGarciaPH">View Source</a></span></div>
</blockquote>
<h2>NabTransact Redirect Gateway for Concrete5</h2>
<p>NabTransact Redirect Payment Gateway is a Concrete5 Extension which allows the eCommerce Store owners to accept credit cards through NabTransact Secure Hosted Page so users don&#8217;t have to worry about the user payment information.<br />
<img class="aligncenter size-full wp-image-17672" alt="NabTransact Redirect Gateway for Concrete5" src="http://designrshub.com/wp-content/uploads/2013/06/concrete5-plugins-03.jpg" width="590" height="300" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://codecanyon.net/item/nabtransact-redirect-gateway-for-concrete5/4794979?ref=ManuelGarciaPH">View Source</a></span></div>
<h2>Flickr Photo Stream</h2>
<p>Add a Flickr photo gallery to your Concrete5 website using this plugin that allows to get photos and their corresponding title from the public live stream.<br />
<img class="aligncenter size-full wp-image-17674" alt="Flickr Photo Stream" src="http://designrshub.com/wp-content/uploads/2013/06/concrete5-plugins-05.jpg" width="590" height="300" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://codecanyon.net/item/flickr-photo-stream/4804507?ref=ManuelGarciaPH">View Source</a></span></div>
<h2>rateThis &#8211; Concrete5 Rating System</h2>
<p>This concrete5 plugin allows you to integrate a rating system to your website plus a few functionalities such as custom styles and css animations.<br />
<img class="aligncenter size-full wp-image-17675" alt="rateThis - Concrete5 Rating System" src="http://designrshub.com/wp-content/uploads/2013/06/concrete5-plugins-06.jpg" width="590" height="300" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://codecanyon.net/item/ratethis-concrete5-rating-system/4798555?ref=ManuelGarciaPH">View Source</a></span></div>
<p><a href="http://designrshub.com">Designrshub - Design Articles, Inspirations, Resources and Freebies - Designrshub is a design blog dedicated to provide high quality web and graphic design resources, inspirations, freebies and social media articles.</a></p>]]></content:encoded>
			<wfw:commentRss>http://designrshub.com/2013/06/concrete5-plugins.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vintage Themes Collection: 25 WordPress Retro Themes</title>
		<link>http://designrshub.com/2013/06/wordpress-retro-themes.html</link>
		<comments>http://designrshub.com/2013/06/wordpress-retro-themes.html#comments</comments>
		<pubDate>Mon, 10 Jun 2013 11:23:25 +0000</pubDate>
		<dc:creator>Manuel Garcia</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Themes]]></category>

		<guid isPermaLink="false">http://designrshub.com/?p=17600</guid>
		<description><![CDATA[<p>With the several modern approaches in web design (e.g. responsive web design), it is a little bit of ironic to see retro and vintage websites yet you can still see the effectiveness of such theme. Creating a successful design doesn&#8217;t have to mean that you need to follow all the modern web design trends set by [...]</p><p><a href="http://designrshub.com">Designrshub - Design Articles, Inspirations, Resources and Freebies - Designrshub is a design blog dedicated to provide high quality web and graphic design resources, inspirations, freebies and social media articles.</a></p>]]></description>
				<content:encoded><![CDATA[<p>With the several modern approaches in web design (e.g. <a href="http://designrshub.com/2012/12/responsive-web-design.html" target="_blank">responsive web design</a>), it is a little bit of ironic to see <a href="http://designrshub.com/2013/01/retro-and-vintage-web-design.html" target="_blank">retro and vintage websites</a> yet you can still see the effectiveness of such theme. Creating a successful design doesn&#8217;t have to mean that you need to follow all the modern <a href="http://designrshub.com/2012/05/worst-web-design-trends-what-not-to-do.html" target="_blank">web design trends</a> set by the professionals in the field. Sometimes, a rarely dynamic medium such as retro and vintage could work.</p>
<p>If you are using WordPress as your chosen CMS and are looking for some themes that will help you create the stated type of website above, this assembled set of WordPress vintage themes will surely help you out. So without further ado, here&#8217;s a vintage themes collection composed of various WordPress retro themes with different website design styles and approaches to suit your needs as a blogger and web designer.</p>
<p>You might want to take a look at the following related articles: </p>
<ul>
<li><a target="_blank" href="http://designrshub.com/2013/05/personal-wordpress-themes.html">30 Free and Premium Personal WordPress Themes</a></li>
<li><a target="_blank" href="http://designrshub.com/2013/05/medical-and-health-wordpress-theme.html">A Showcase of Medical and Health Wordpress Theme</a></li>
<li><a target="_blank" href="http://designrshub.com/2013/05/wordpress-wedding-theme.html">15 WordPress Wedding Theme for a Sweet Marriage Proposal</a></li>
<li><a target="_blank" href="http://designrshub.com/2013/03/wordpress-app-themes.html">12 Powerful WordPress App Themes from ThemeForest</a></li>
<li><a target="_blank" href="http://designrshub.com/2013/03/metro-wordpress-themes.html">10 Metro WordPress Themes Inspired by Windows 8</a></li>
</ul>
<p style="font-size: 12px; background: #E2E2E2; border: 1px solid silver; padding: 5px 5px; text-align: center; box-shadow: white 0px 0px 1px 1px inset;margin-bottom: 10px;"> Dont forget to <a href="http://feeds.feedburner.com/Designrshub" style="padding-left: 23px; background: url(http://graphicdesignjunction.com/images/rss.png) 2px -1px no-repeat; padding-bottom: 4px;" rel="nofollow" target="_blank">subscribe to our RSS-feed</a> and <a href="https://twitter.com/designrshub" rel="nofollow" target="_blank" style="padding-left: 23px; padding-bottom: 3px; padding-top: 0px; background: url(http://graphicdesignjunction.com/images/twitter.png) 2px -1px no-repeat;">follow us on Twitter</a> – for recent updates.</p>
<h2>Angelo &#8211; Art WordPress Theme</h2>
<p>Angelo is a unique, classic and elegant premium WordPress theme initially inspired in the painting The Creation of Adam by Michelangelo.<br />
<img class="aligncenter size-full wp-image-17625" alt="Angelo - Art WordPress Theme" src="http://designrshub.com/wp-content/uploads/2013/06/wordpress-retro-themes-23.jpg" width="600" height="320" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://themeforest.net/item/angelo-art-wordpress-theme/372320?ref=ManuelGarciaPH">View Source</a></span></div>
<h2>RetyX &#8211; Vintage / Retro Blog WordPress Theme</h2>
<p>RetyX is a Blog and Portfolio WordPress Theme in retro and vintage design. It is suited for users who want to run a professional or personal blog and wants to showcase your products, services or news in a creative and unique manner.<br />
<img class="aligncenter size-full wp-image-17623" alt="RetyX - Vintage / Retro Blog WordPress Theme" src="http://designrshub.com/wp-content/uploads/2013/06/wordpress-retro-themes-21.jpg" width="600" height="320" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://themeforest.net/item/retyx-vintage-retro-blog-wordpress-theme/2165200?ref=ManuelGarciaPH">View Source</a></span></div>
<h2>Retro Portfolio &#8211; One Page Vintage WordPress Theme</h2>
<p>&#8220;Retro Portfolio&#8221; is a WordPress Retro-style theme. It consists on a one-page portfolio with a blog and a contact section featuring a ajax contact form.<br />
<img class="aligncenter size-full wp-image-17603" alt="Retro Portfolio - One Page Vintage WordPress Theme" src="http://designrshub.com/wp-content/uploads/2013/06/wordpress-retro-themes-03.jpg" width="600" height="320" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://themeforest.net/item/retro-portfolio-one-page-vintage-wordpress-theme/1708109?ref=ManuelGarciaPH">View Source</a></span></div>
<h2>Nostalgia &#8211; Portfolio WordPress Theme</h2>
<p>Nostalgia is a minimal portfolio WordPress theme – personal or corporate, based on full-screen slider and sliding pages. The theme is maintained in a minimalist, contrasting style. Background images kept in retro tones contrast with modern minimalist content.<br />
<img class="aligncenter size-full wp-image-17622" alt="Nostalgia - Portfolio WordPress Theme" src="http://designrshub.com/wp-content/uploads/2013/06/wordpress-retro-themes-20.jpg" width="600" height="320" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://themeforest.net/item/nostalgia-portfolio-wordpress-theme/2438038?ref=ManuelGarciaPH">View Source</a></span></div>
<h2>Fox &#8211; Retro WordPress Theme</h2>
<p>The Fox WordPress Theme is a retro style perfect for creatives looking to showcase their work. This theme focus on featuring your portfolio and connects to Dribbble to display your latest shots.<br />
<img class="aligncenter size-full wp-image-17601" alt="Fox - Retro WordPress Theme" src="http://designrshub.com/wp-content/uploads/2013/06/wordpress-retro-themes-01.jpg" width="600" height="320" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://themeforest.net/item/fox-wordpress-theme/3128968?ref=ManuelGarciaPH">View Source</a></span></div>
<h2>MyCuisine &#8211; WordPress Retro Themes</h2>
<p>MyCuisine is delicious, offering up some eye-catching visuals wrapped in a Tuscan shell. It is a small-business theme built with Restaurants in mind, however, the theme can easily be adapted for any business that desires a cool, vintage aesthetic for the website.<br />
<img class="aligncenter size-full wp-image-17613" alt="MyCuisine - WordPress Retro Themes" src="http://designrshub.com/wp-content/uploads/2013/06/wordpress-retro-themes-12.jpg" width="600" height="320" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://www.elegantthemes.com/affiliates/idevaffiliate.php?id=21275&amp;url=7037">View Source</a></span></div>
<h2>Benissimo — Vintage Style WooCommerce Theme</h2>
<p>Benissimo is a WordPress template which is made in a vintage style. Keeping pace with the times we offer a truly high-quality solution. Combined with a thoughtful and carefully elaborated design.<br />
<img class="aligncenter size-full wp-image-17608" alt="Benissimo — Vintage Style WooCommerce Theme" src="http://designrshub.com/wp-content/uploads/2013/06/wordpress-retro-themes-07.jpg" width="600" height="320" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://themeforest.net/item/benissimo-vintage-style-woocommerce-theme/4262878?ref=ManuelGarciaPH">View Source</a></span></div>
<h2>Sky – Personal WordPress Theme</h2>
<p>Sky floats above the pack in style and its sense of whimsy is sure to leave your visitors surprised and refreshed. Sky is unique in the way it’s homepage operates, loading all of your content seamlessly using ajax.<br />
<img class="aligncenter size-full wp-image-17608" alt="Sky – Personal WordPress Theme" src="http://designrshub.com/wp-content/uploads/2013/05/personal-wordpress-themes-21.jpg" width="600" height="320" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://www.elegantthemes.com/affiliates/idevaffiliate.php?id=21275&amp;url=6705">View Source</a></span></div>
<h3>Halftone &#8211; Retro WordPress Theme</h3>
<p>Responsive WordPress theme perfect for creative portfolio showcase and personal blog/portfolio style websites. Feature blog and work posts on the front page, set a google map and contact form on the contact page.<br />
<img class="aligncenter size-full wp-image-17602" alt="Halftone - Retro WordPress Theme" src="http://designrshub.com/wp-content/uploads/2013/06/wordpress-retro-themes-02.jpg" width="600" height="320" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://themeforest.net/item/halftone-wordpress-theme/2661175?ref=ManuelGarciaPH">View Source</a></span></div>
<h2>DailyJournal Responsive WordPress Theme</h2>
<p>DailyJournal is a fully responsive personal blog. Its design is fun and endearing, and the personal feel is great for anyone who is starting their own blog.<br />
<img class="aligncenter size-full wp-image-17602" alt="DailyJournal Responsive WordPress Theme" src="http://designrshub.com/wp-content/uploads/2013/05/personal-wordpress-themes-02.jpg" width="600" height="320" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://www.elegantthemes.com/affiliates/idevaffiliate.php?id=21275&amp;url=6699">View Source</a></span></div>
<h2>Vintage Immersed &#8211; Multipurpose WordPress Theme</h2>
<p>Unique in design, rich in features and easy to use as you see it. Multi Purpose and responsive as we said, it is designed to display creative portfolio, photo gallery, modern business blog etc.<br />
<img class="aligncenter size-full wp-image-17604" alt="Vintage Immersed - Multipurpose WordPress Theme" src="http://designrshub.com/wp-content/uploads/2013/06/wordpress-retro-themes-04.jpg" width="600" height="320" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://themeforest.net/item/vintage-immersed-multipurpose-wordpress-theme/2866563?ref=ManuelGarciaPH">View Source</a></span></div>
<h2>Bold WordPress Theme</h2>
<p>This theme features a combination of bold typography, loose sketchy qualities and heavy textures. Bold features a robust set of theme options, as well as 5 unique color schemes.<br />
<img class="aligncenter size-full wp-image-17618" alt="Bold WordPress Theme" src="http://designrshub.com/wp-content/uploads/2013/06/wordpress-retro-themes-16.jpg" width="600" height="320" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://www.elegantthemes.com/affiliates/idevaffiliate.php?id=21275&amp;url=7038">View Source</a></span></div>
<h2>GOLDEN &#8211; Responsive Vintage WordPress Theme</h2>
<p>GOLDEN is a beautifully elegant, visually stunning, and multi-functional vintage inspired WordPress theme. Perfect to use, from freelancer to agency, and everything in between.<br />
<img class="aligncenter size-full wp-image-17615" alt="GOLDEN - Responsive Vintage WordPress Theme" src="http://designrshub.com/wp-content/uploads/2013/06/wordpress-retro-themes-13.jpg" width="600" height="320" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://themeforest.net/item/golden-responsive-vintage-wordpress-theme/3863933?ref=ManuelGarciaPH">View Source</a></span></div>
<h3>Primento Portfolio &#8211; WordPress Retro Themes</h3>
<p>Primento is a One Page WordPress Portfolio which includes a HTML Resume. The theme has a unique retro and creative look and feel to it which is easy to edit and maintain.<br />
<img class="aligncenter size-full wp-image-17619" alt="Primento Portfolio - WordPress Retro Themes" src="http://designrshub.com/wp-content/uploads/2013/06/wordpress-retro-themes-17.jpg" width="600" height="320" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://themeforest.net/item/primento-wordpress-portfolio/2196141?ref=ManuelGarciaPH">View Source</a></span></div>
<h2>Alveera &#8211; Responsive HTML5 Single Page WordPress</h2>
<p>Alveera is a single page wordpress template with a little retro look. With the combination of nice color variation and pleasing design it can be use for both personal and professional sites.<br />
<img class="aligncenter size-full wp-image-17605" alt="Alveera - Responsive HTML5 Single Page WordPress" src="http://designrshub.com/wp-content/uploads/2013/06/wordpress-retro-themes-05.jpg" width="600" height="320" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://themeforest.net/item/alveera-responsive-html5-single-page-wordpress/4239200?ref=ManuelGarciaPH">View Source</a></span></div>
<h2>Endless &#8211; Infinite Scrolling WordPress Theme</h2>
<p>Endless is a clean and stylish infinite scrolling theme, perfect for bloggers and storytellers. We’ve delicately put together some awesome HTML5 mixed in some CSS3 and added a bit of jQuery on top to make this beautiful theme just for you.<br />
<img class="aligncenter size-full wp-image-17621" alt="Endless - Infinite Scrolling WordPress Theme" src="http://designrshub.com/wp-content/uploads/2013/06/wordpress-retro-themes-19.jpg" width="600" height="320" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://themeforest.net/item/endless-infinite-scrolling-wordpress-theme/2085634?ref=ManuelGarciaPH">View Source</a></span></div>
<h2>Bonjour &#8211; Cafe &amp; Restaurant WordPress Theme</h2>
<p>Cafe Bonjour is a WordPress one page template, best fit for cafe and restaurant websites. The template has a classic style favor, it’s vintage looks making it suitable for classy, exquisite caffeterias, as well as luxury and exclusivist restaurants.<br />
<img class="aligncenter size-full wp-image-17611" alt="Bonjour - Cafe &amp; Restaurant WordPress Theme" src="http://designrshub.com/wp-content/uploads/2013/06/wordpress-retro-themes-10.jpg" width="600" height="320" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://themeforest.net/item/bonjour-cafe-restaurant-wordpress-theme/3205638?ref=ManuelGarciaPH">View Source</a></span></div>
<h2>Delimondo Responsive WordPress Theme</h2>
<p>Delimondo is a powerful WordPress Template built for restaurants and food lovers. The template automatically adapts to window resolution and looks fantastic on all devices.<br />
<img class="aligncenter size-full wp-image-17607" alt="Delimondo Responsive WordPress Theme" src="http://designrshub.com/wp-content/uploads/2013/06/wordpress-retro-themes-06.jpg" width="600" height="320" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://themeforest.net/item/delimondo-responsive-wordpress-theme-5-styles/3992840?ref=ManuelGarciaPH">View Source</a></span></div>
<h2>Caelus &#8211; App Landing &amp; Coming Soon WP Theme</h2>
<p>Get your App or Website launched with a blast! With this out of this world landing / countdown page. Available in 2 gorgeous styles with 4 beautiful font combinations that look great on iPhone, iPad and desktops.<br />
<img class="aligncenter size-full wp-image-17624" alt="Caelus - App Landing &amp; Coming Soon WP Theme" src="http://designrshub.com/wp-content/uploads/2013/06/wordpress-retro-themes-22.jpg" width="600" height="320" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://themeforest.net/item/caelus-app-landing-coming-soon-wp-theme-/4009276?ref=ManuelGarciaPH">View Source</a></span></div>
<h2>Lucky Times &#8211; Responsive WordPress Retro Theme</h2>
<p>Front with big, bold typography for showing the retro atmosphere with responsive capability to meet all the needs of the users.<br />
<img class="aligncenter size-full wp-image-17609" alt="Lucky Times - Responsive WordPress Retro Theme" src="http://designrshub.com/wp-content/uploads/2013/06/wordpress-retro-themes-08.jpg" width="600" height="320" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://themeforest.net/item/lucky-times-responsive/944575?ref=ManuelGarciaPH">View Source</a></span></div>
<h2>Hipster: Retro Responsive WordPress Theme</h2>
<p>Introducing Hipster WordPress, the perfect responsive WordPress theme for any personal or business website brought to you by ThemeForest authors Beantown Design and Fialovy.<br />
<img class="aligncenter size-full wp-image-17612" alt="Hipster: Retro Responsive WordPress Theme" src="http://designrshub.com/wp-content/uploads/2013/06/wordpress-retro-themes-11.jpg" width="600" height="320" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://themeforest.net/item/hipster-retro-responsive-wordpress-theme/3867290?ref=ManuelGarciaPH">View Source</a></span></div>
<h2>Lost World &#8211; Travel, Hotel Woo Commerce WordPress</h2>
<p>Responsive Woo Commerce WordPress theme for Travel, Hotel Business and travel blogging, tourism, adventure websites.<br />
<img class="aligncenter size-full wp-image-17610" alt="Lost World - Travel, Hotel Woo Commerce WordPress" src="http://designrshub.com/wp-content/uploads/2013/06/wordpress-retro-themes-09.jpg" width="600" height="320" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://themeforest.net/item/lost-world-travel-hotel-woo-commerce-wordpress/3807879?ref=ManuelGarciaPH">View Source</a></span></div>
<h2>Retro &#8211; Premium WordPress Template</h2>
<p>Retro is a clean and modern template, best suitable for your portofolio or business site. Quick and easy to set up, this template is created with the latest CSS3 techniques.<br />
<img class="aligncenter size-full wp-image-17616" alt="Retro - Premium WordPress Template" src="http://designrshub.com/wp-content/uploads/2013/06/wordpress-retro-themes-14.jpg" width="600" height="320" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://themeforest.net/item/retro-premium-wordpress-template/2083618?ref=ManuelGarciaPH">View Source</a></span></div>
<h2>MJ: WP Retro Theme Edition</h2>
<p>MJ is a HTML /CSS/Wordpress optimized Theme perfect for wedding invitation, personal and business websites. Theme also supports tablet versions ( both 800×600 and 600×800 )<br />
<img class="aligncenter size-full wp-image-17620" alt="MJ: WP Retro Theme Edition" src="http://designrshub.com/wp-content/uploads/2013/06/wordpress-retro-themes-18.jpg" width="600" height="320" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://themeforest.net/item/mjwp-edition/2342060?ref=ManuelGarciaPH">View Source</a></span></div>
<h2>The Artist &#8211; Clean Responsive Portfolio Theme</h2>
<p>The Artist is a super awesome portfolio theme. It’s very clean, sleek and modern design. With the admin panel and page builder in this theme, you can discover unlimited possibilities of what the theme can do.<br />
<img class="aligncenter size-full wp-image-17617" alt="The Artist - Clean Responsive Portfolio Theme" src="http://designrshub.com/wp-content/uploads/2013/06/wordpress-retro-themes-15.jpg" width="600" height="320" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://themeforest.net/item/the-artist-clean-responsive-portfolio-theme/3229989?ref=ManuelGarciaPH">View Source</a></span></div>
<p><a href="http://designrshub.com">Designrshub - Design Articles, Inspirations, Resources and Freebies - Designrshub is a design blog dedicated to provide high quality web and graphic design resources, inspirations, freebies and social media articles.</a></p>]]></content:encoded>
			<wfw:commentRss>http://designrshub.com/2013/06/wordpress-retro-themes.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creative Drawings and Fine Arts by Joe Fenton</title>
		<link>http://designrshub.com/2013/06/creative-drawings.html</link>
		<comments>http://designrshub.com/2013/06/creative-drawings.html#comments</comments>
		<pubDate>Sun, 09 Jun 2013 11:29:26 +0000</pubDate>
		<dc:creator>Manuel Garcia</dc:creator>
				<category><![CDATA[Inspirations]]></category>
		<category><![CDATA[Featured Artist]]></category>

		<guid isPermaLink="false">http://designrshub.com/?p=17627</guid>
		<description><![CDATA[<p>In this series of posts, we will highlight the most exquisitely fascinating artworks and inspiring images crafted by one of the most talented artist from the design community. Joe Fenton, an artist based in London, is our featured artist of the day. Joe Fenton works mainly in monochrome and his large drawings are produced using graphite, [...]</p><p><a href="http://designrshub.com">Designrshub - Design Articles, Inspirations, Resources and Freebies - Designrshub is a design blog dedicated to provide high quality web and graphic design resources, inspirations, freebies and social media articles.</a></p>]]></description>
				<content:encoded><![CDATA[<p>In this series of posts, we will highlight the most exquisitely fascinating artworks and inspiring images crafted by one of the most talented artist from the design community.</p>
<p>Joe Fenton, an artist based in London, is our <a href="http://designrshub.com/tag/featured-artist" target="_blank" rel="nofollow">featured artist of the day</a>. Joe Fenton works mainly in monochrome and his large drawings are produced using graphite, ink and acrylics on paper. Joe&#8217;s art work is influenced by many of the early surrealists. Embracing the grotesque by his employment of Hieronymus Bosch like figures that are gangly, writhing and cramped. Joe also uses motifs that suggest Eastern philosophy and Middle Eastern architecture whilst maintaining a feel for European Baroque and Rococo with complex frame ornamentation and plant like details.</p>
<p>A common theme in all his works which recurs again and again is that of death and the fear of death. The fanciful and even freakish nature of his images seem to spring from the need to distance himself from the fear while at the same time acknowledging it. Prior to his decision to commit full time to his personal works, Joe had two children’s books published, as author and illustrator which have won various awards. Joe has also worked for several years as a special effects sculptor and designer for motion pictures. He has a Bachelor of Arts (Hons) in Sculpture from the Wimbledon Art School.</p>
<p>Take a look at his work below and tell us your favorite creative drawings and fine arts.</p>
<p>You may want to take a look at Joe Fenton&#8217;s <a href="http://joefentonart.com/" target="_blank" rel="nofollow">personal website</a> to know more about him or like his <a href="https://www.facebook.com/joefentonartist" target="_blank" rel="nofollow">Facebook page</a> to stay up to date on his works.</p>
<div class="editorsnote"><strong>Editor&#8217;s Note:</strong> If you want to participate and get featured, share the link of your artworks in the comment section and we will contact you for further instructions.</div>
<p>You might want to take a look at the following related articles: </p>
<ul>
<li><a target="_blank" href="http://designrshub.com/2013/06/photo-manipulated-images.html">Heart-Stopping Photo Manipulated Images by Mike Campau</a></li>
<li><a target="_blank" href="http://designrshub.com/2013/06/digital-art-projects.html">Creative Digital Art Projects by Grand Chamaco</a></li>
<li><a target="_blank" href="http://designrshub.com/2013/05/candy-art-designs.html">Sweet Candy Art Designs and Illustrations by Sheena Aw</a></li>
<li><a target="_blank" href="http://designrshub.com/2013/05/character-design.html">Super Intense Character Design by Dan Luvisi</a></li>
<li><a target="_blank" href="http://designrshub.com/2013/05/celebrity-portrait-photography.html">Celebrity Portrait Photography by Suren Manvelyan</a></li>
</ul>
<p style="font-size: 12px; background: #E2E2E2; border: 1px solid silver; padding: 5px 5px; text-align: center; box-shadow: white 0px 0px 1px 1px inset;margin-bottom: 10px;"> Dont forget to <a href="http://feeds.feedburner.com/Designrshub" style="padding-left: 23px; background: url(http://graphicdesignjunction.com/images/rss.png) 2px -1px no-repeat; padding-bottom: 4px;" rel="nofollow" target="_blank">subscribe to our RSS-feed</a> and <a href="https://twitter.com/designrshub" rel="nofollow" target="_blank" style="padding-left: 23px; padding-bottom: 3px; padding-top: 0px; background: url(http://graphicdesignjunction.com/images/twitter.png) 2px -1px no-repeat;">follow us on Twitter</a> – for recent updates.</p>
<h2>Solitude</h2>
<p><img src="http://designrshub.com/wp-content/uploads/2013/06/creative-drawings-11.jpg" alt="Solitude" width="500" height="397" class="aligncenter size-full wp-image-17643" /></p>
<h2>Solitude  – A Work in Progress</h2>
<p><img src="http://designrshub.com/wp-content/uploads/2013/06/creative-drawings-07.jpg" alt="Solitude  – A Work in Progress" width="500" height="356" class="aligncenter size-full wp-image-17639" /></p>
<h2>Pride</h2>
<p><img src="http://designrshub.com/wp-content/uploads/2013/06/creative-drawings-02.jpg" alt="Pride" width="500" height="653" class="aligncenter size-full wp-image-17633" /></p>
<h2>The Marauders Banquet</h2>
<p><img src="http://designrshub.com/wp-content/uploads/2013/06/creative-drawings-01.jpg" alt="The Marauders Banquet" width="500" height="375" class="aligncenter size-full wp-image-17632" /></p>
<h2>The Lullaby</h2>
<p><img src="http://designrshub.com/wp-content/uploads/2013/06/creative-drawings-03.jpg" alt="The Lullaby" width="500" height="324" class="aligncenter size-full wp-image-17634" /></p>
<h2>Creative Drawings: Pride</h2>
<p><img src="http://designrshub.com/wp-content/uploads/2013/06/creative-drawings-05.jpg" alt="Creative Drawings: Pride" width="500" height="667" class="aligncenter size-full wp-image-17636" /></p>
<h2>Tick Tock</h2>
<p><img src="http://designrshub.com/wp-content/uploads/2013/06/creative-drawings-04.jpg" alt="Tick Tock" width="500" height="375" class="aligncenter size-full wp-image-17635" /></p>
<h2>Solitude</h2>
<p><img src="http://designrshub.com/wp-content/uploads/2013/06/creative-drawings-06.jpg" alt="Solitude" width="500" height="397" class="aligncenter size-full wp-image-17638" /></p>
<h2>Solitude</h2>
<p><img src="http://designrshub.com/wp-content/uploads/2013/06/creative-drawings-08.jpg" alt="Solitude" width="500" height="552" class="aligncenter size-full wp-image-17640" /></p>
<h3>Creative Drawings: Solitude</h3>
<p><img src="http://designrshub.com/wp-content/uploads/2013/06/creative-drawings-09.jpg" alt="Creative Drawings: Solitude" width="500" height="438" class="aligncenter size-full wp-image-17641" /></p>
<p><a href="http://designrshub.com">Designrshub - Design Articles, Inspirations, Resources and Freebies - Designrshub is a design blog dedicated to provide high quality web and graphic design resources, inspirations, freebies and social media articles.</a></p>]]></content:encoded>
			<wfw:commentRss>http://designrshub.com/2013/06/creative-drawings.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thranduil aka Elvenking: Amazing Artwork Collection</title>
		<link>http://designrshub.com/2013/06/thranduil-artwork-collection.html</link>
		<comments>http://designrshub.com/2013/06/thranduil-artwork-collection.html#comments</comments>
		<pubDate>Thu, 06 Jun 2013 11:50:18 +0000</pubDate>
		<dc:creator>Manuel Garcia</dc:creator>
				<category><![CDATA[Inspirations]]></category>
		<category><![CDATA[LOTR]]></category>

		<guid isPermaLink="false">http://designrshub.com/?p=17555</guid>
		<description><![CDATA[<p>When the company of Dwarves led by Thorin Oakenshield together with Bilbo Baggins enter the realm in the northern part of Mirkwood, they were captured and locked in dungeons by the guards of the King of the Woodland Realm, Thranduil. He&#8217;s a Sindarin elf, father of Legolas, and known as the Elvenking. After the death of [...]</p><p><a href="http://designrshub.com">Designrshub - Design Articles, Inspirations, Resources and Freebies - Designrshub is a design blog dedicated to provide high quality web and graphic design resources, inspirations, freebies and social media articles.</a></p>]]></description>
				<content:encoded><![CDATA[<p>When the company of Dwarves led by <a href="http://designrshub.com/2013/04/thorin-oakenshield.html" target="_blank">Thorin Oakenshield</a> together with <a href="http://designrshub.com/2013/03/bilbo-baggins-illustration-artworks.html" target="_blank">Bilbo Baggins</a> enter the realm in the northern part of Mirkwood, they were captured and locked in dungeons by the guards of the King of the Woodland Realm, Thranduil. He&#8217;s a Sindarin elf, father of <a href="http://designrshub.com/2013/05/legolas-greenleaf.html" target="_blank">Legolas</a>, and known as the Elvenking.</p>
<p>After the death of the <a href="http://designrshub.com/2013/05/smaug-illustration-designs.html" target="_blank">dragon Smaug</a>, Thranduil supported Bard the Bowman&#8217;s claim of a share of the treasure the Dwarves recovered from the Lonely Mountain (Erebor), since Bard was a descendant of Lord Girion of Dale, and the treasure of that town had been taken by Smaug to the Lonely Mountain, The series of events eventually strengthen the hate and quarrel between the the two races; Elves and Dwarves.</p>
<p>The reconciliation between Dwarves and Elves made possible by <a href="http://designrshub.com/2013/05/legolas-greenleaf.html" target="_blank">Legolas Greenleaf</a> (son of Thranduil) and Gimli (son of Glóin). It&#8217;s very noticeable that they have established their strong relationship as a friend during the events in <a href="http://designrshub.com/sessions/lotr-the-hobbit" target="_blank" rel="nofollow">the lords of the rings</a>.</p>
<p>Here&#8217;s an amazing artwork collection illustrating the magical character of the elvenking known as Thranduil whom became popular because of Bilbo&#8217;s exploits and tales.</p>
<p>You might want to take a look at the following related articles: </p>
<ul>
<li><a target="_blank" href="http://designrshub.com/2013/05/legolas-greenleaf.html">Graphic Design Artworks Illustrating Legolas Greenleaf</a></li>
<li><a target="_blank" href="http://designrshub.com/2013/05/smaug-illustration-designs.html">20 Magnificent Dragon Smaug Illustration Designs</a></li>
<li><a target="_blank" href="http://designrshub.com/2013/05/gandalf-vs-balrog-artworks.html">The Fellowship of the Ring: Gandalf vs Balrog Artworks</a></li>
<li><a target="_blank" href="http://designrshub.com/2013/05/gandalf-artwork-illustrations.html">30 Powerful Gandalf Artwork Illustrations and Designs</a></li>
<li><a target="_blank" href="http://designrshub.com/2013/04/frodo-baggins-artworks.html">Brave Frodo Baggins Artworks and Digital Illustrations</a></li>
</ul>
<p style="font-size: 12px; background: #E2E2E2; border: 1px solid silver; padding: 5px 5px; text-align: center; box-shadow: white 0px 0px 1px 1px inset;margin-bottom: 10px;"> Dont forget to <a href="http://feeds.feedburner.com/Designrshub" style="padding-left: 23px; background: url(http://graphicdesignjunction.com/images/rss.png) 2px -1px no-repeat; padding-bottom: 4px;" rel="nofollow" target="_blank">subscribe to our RSS-feed</a> and <a href="https://twitter.com/designrshub" rel="nofollow" target="_blank" style="padding-left: 23px; padding-bottom: 3px; padding-top: 0px; background: url(http://graphicdesignjunction.com/images/twitter.png) 2px -1px no-repeat;">follow us on Twitter</a> – for recent updates.</p>
<h2>Thranduil Artworks</h2>
<p><img class="aligncenter size-full wp-image-17576" alt="Thranduil Artworks" src="http://designrshub.com/wp-content/uploads/2013/06/thranduil-artworks-19.jpg" width="500" height="667" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://nasyu.deviantart.com/art/Thranduil-343895490">View Source</a></span></div>
<h2>Thranduil Illustration</h2>
<p><img class="aligncenter size-full wp-image-17565" alt="Thranduil Illustration" src="http://designrshub.com/wp-content/uploads/2013/06/thranduil-artworks-09.jpg" width="500" height="700" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://kinko-white.deviantart.com/art/Thranduil-364065346">View Source</a></span></div>
<h2>King Thranduil</h2>
<p><img class="aligncenter size-full wp-image-17557" alt="King Thranduil" src="http://designrshub.com/wp-content/uploads/2013/06/thranduil-artworks-01.jpg" width="500" height="307" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://em-mika.deviantart.com/art/Thranduil-344119890">View Source</a></span></div>
<h2>Drawing of Thranduil</h2>
<p><img class="aligncenter size-full wp-image-17558" alt="Drawing of Thranduil" src="http://designrshub.com/wp-content/uploads/2013/06/thranduil-artworks-02.jpg" width="500" height="720" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://suiamena.deviantart.com/art/Thranduil-361382226">View Source</a></span></div>
<h2>King Thranduil from &#8220;The Hobbit: An Unexpected Journey&#8221;</h2>
<p><img class="aligncenter size-full wp-image-17566" alt="King Thranduil from &quot;The Hobbit: An Unexpected Journey&quot;" src="http://designrshub.com/wp-content/uploads/2013/06/thranduil-artworks-10.jpg" width="500" height="603" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://mareishon.deviantart.com/art/Thranduil-346300310">View Source</a></span></div>
<h2>Thranduil</h2>
<p><img class="aligncenter size-full wp-image-17560" alt="Thranduil" src="http://designrshub.com/wp-content/uploads/2013/06/thranduil-artworks-04.jpg" width="500" height="363" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://syrkell.deviantart.com/art/Thranduil-362935249">View Source</a></span></div>
<h2>Thranduil the Elvenking</h2>
<p><img class="aligncenter size-full wp-image-17559" alt="Thranduil the Elvenking" src="http://designrshub.com/wp-content/uploads/2013/06/thranduil-artworks-03.jpg" width="500" height="669" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://ecthelian.deviantart.com/art/Thranduil-346507453">View Source</a></span></div>
<h2>Korol` Thranduil</h2>
<p><img class="aligncenter size-full wp-image-17567" alt="Korol` Thranduil" src="http://designrshub.com/wp-content/uploads/2013/06/thranduil-artworks-11.jpg" width="500" height="685" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://shai-a.deviantart.com/art/Korol-Thranduil-335694650">View Source</a></span></div>
<h2>Thranduil Artwork</h2>
<p><img class="aligncenter size-full wp-image-17562" alt="Thranduil Artwork" src="http://designrshub.com/wp-content/uploads/2013/06/thranduil-artworks-06.jpg" width="500" height="313" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://zardra.deviantart.com/art/Thranduil-358763061">View Source</a></span></div>
<h2>Fanart of the Elvenking</h2>
<p><img class="aligncenter size-full wp-image-17561" alt="Fanart of the Elvenking" src="http://designrshub.com/wp-content/uploads/2013/06/thranduil-artworks-05.jpg" width="500" height="735" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://saramondo.deviantart.com/art/Thranduil-326343011">View Source</a></span></div>
<h3>Thranduil Artwork</h3>
<p><img class="aligncenter size-full wp-image-17568" alt="Thranduil Artwork" src="http://designrshub.com/wp-content/uploads/2013/06/thranduil-artworks-12.jpg" width="500" height="667" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://halderzor.deviantart.com/art/Thranduil-369673375">View Source</a></span></div>
<h2>Thranduil: First Snow</h2>
<p><img class="aligncenter size-full wp-image-17569" alt="Thranduil: First Snow" src="http://designrshub.com/wp-content/uploads/2013/06/thranduil-artworks-13.jpg" width="500" height="362" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://jbadgr.deviantart.com/art/Thranduil-First-Snow-343358780">View Source</a></span></div>
<h3>Thranduil</h3>
<p><img class="aligncenter size-full wp-image-17563" alt="Thranduil" src="http://designrshub.com/wp-content/uploads/2013/06/thranduil-artworks-07.jpg" width="500" height="750" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://mauroillustrator.deviantart.com/art/Thranduil-350299320">View Source</a></span></div>
<h2>Thranduil aka Elvenking</h2>
<p><img class="aligncenter size-full wp-image-17571" alt="Thranduil aka Elvenking" src="http://designrshub.com/wp-content/uploads/2013/06/thranduil-artworks-15.jpg" width="500" height="714" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://cg-warrior.deviantart.com/art/Thranduil-280233462">View Source</a></span></div>
<h2>Elvenking of Mirkwood</h2>
<p><img class="aligncenter size-full wp-image-17570" alt="Elvenking of Mirkwood" src="http://designrshub.com/wp-content/uploads/2013/06/thranduil-artworks-14.jpg" width="500" height="333" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://terrizae.deviantart.com/art/Thranduil-327445095">View Source</a></span></div>
<h3>King Thranduil</h3>
<p><img class="aligncenter size-full wp-image-17564" alt="King Thranduil" src="http://designrshub.com/wp-content/uploads/2013/06/thranduil-artworks-08.jpg" width="500" height="682" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://belegilgalad.deviantart.com/art/King-Thranduil-327378205">View Source</a></span></div>
<h2>Thranduil and his Elk</h2>
<p><img class="aligncenter size-full wp-image-17572" alt="Thranduil and his Elk" src="http://designrshub.com/wp-content/uploads/2013/06/thranduil-artworks-16.jpg" width="500" height="700" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://francis-john.deviantart.com/art/Thranduil-and-his-Elk-365648848">View Source</a></span></div>
<h2>Thranduil: King of Mirkwood</h2>
<p><img class="aligncenter size-full wp-image-17573" alt="Thranduil: King of Mirkwood" src="http://designrshub.com/wp-content/uploads/2013/06/thranduil-artworks-17.jpg" width="500" height="333" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://dennisb-art.deviantart.com/art/Thranduil-King-of-Mirkwood-345711343">View Source</a></span></div>
<h2>Thranduil Illustration</h2>
<p><img class="aligncenter size-full wp-image-17575" alt="Thranduil Illustration" src="http://designrshub.com/wp-content/uploads/2013/06/thranduil-artworks-18.jpg" width="500" height="447" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://andreevapolina.deviantart.com/art/Thranduil-349947375">View Source</a></span></div>
<p><a href="http://designrshub.com">Designrshub - Design Articles, Inspirations, Resources and Freebies - Designrshub is a design blog dedicated to provide high quality web and graphic design resources, inspirations, freebies and social media articles.</a></p>]]></content:encoded>
			<wfw:commentRss>http://designrshub.com/2013/06/thranduil-artwork-collection.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>20 Sleek Dolphin Logo Design Examples and Ideas</title>
		<link>http://designrshub.com/2013/06/dolphin-logo-design.html</link>
		<comments>http://designrshub.com/2013/06/dolphin-logo-design.html#comments</comments>
		<pubDate>Wed, 05 Jun 2013 11:25:10 +0000</pubDate>
		<dc:creator>Manuel Garcia</dc:creator>
				<category><![CDATA[Inspirations]]></category>
		<category><![CDATA[Logo Design]]></category>

		<guid isPermaLink="false">http://designrshub.com/?p=17532</guid>
		<description><![CDATA[<p>Animal logo designs, such as these dolphin logo design examples and ideas, work well for any business whether it is a pet-related venture or not because of many great things and meanings it represent that can enhance the branding and identity of one&#8217;s business. The way you use animals in your logo will reflect on [...]</p><p><a href="http://designrshub.com">Designrshub - Design Articles, Inspirations, Resources and Freebies - Designrshub is a design blog dedicated to provide high quality web and graphic design resources, inspirations, freebies and social media articles.</a></p>]]></description>
				<content:encoded><![CDATA[<p>Animal logo designs, such as these dolphin logo design examples and ideas, work well for any business whether it is a pet-related venture or not because of many great things and meanings it represent that can enhance the branding and identity of one&#8217;s business.</p>
<p>The way you use animals in your logo will reflect on the personality of your business. For a poultry business, it is common to use <a href="http://designrshub.com/2012/12/chicken-logo-design.html" target="_blank">chicken logo designs</a> but how you will integrate chicken symbols will define your success. Another example is the use of <a href="http://designrshub.com/2013/05/gorilla-logo-design.html" target="_blank">gorilla logo design</a> and/or <a href="http://designrshub.com/2012/11/giraffe-logo-design.html" target="_blank">giraffe logo design</a> for a zoo which will attract more visitors since most of the zoos have these animals on their own zoo habitat.</p>
<p>Here&#8217;s a sleek collection of dolphin logo design examples and ideas commemorating the heroic-like symbol of this marine mammal. These truly innovative dolphin logo designs were all hand-picked and based on quality to make sure that you will make the most out of it. One of my favorite dolphin logos in this collection is the &#8220;Sea Shepherd logo design&#8221; probably because of its effective use of negative space. What about you?</p>
<p>You might want to take a look at the following related articles: </p>
<ul>
<li><a target="_blank" href="http://designrshub.com/2013/06/unicorn-logo-design.html">20 Mystically Constructed Unicorn Logo Design</a></li>
<li><a target="_blank" href="http://designrshub.com/2013/05/cake-logo-design-concepts.html">A Collection of Delectable Cake Logo Design Concepts</a></li>
<li><a target="_blank" href="http://designrshub.com/2013/05/logo-design-presentations.html">25 Logo Design Presentations Using Old Paper Background</a></li>
<li><a target="_blank" href="http://designrshub.com/2013/05/gorilla-logo-design.html">15 Mighty Gorilla Logo Design with Strong Concepts</a></li>
<li><a target="_blank" href="http://designrshub.com/2013/04/ninja-logo-design.html">20 Fierce Ninja Logo Design Ideas for Inspiration</a></li>
</ul>
<p style="font-size: 12px; background: #E2E2E2; border: 1px solid silver; padding: 5px 5px; text-align: center; box-shadow: white 0px 0px 1px 1px inset;margin-bottom: 10px;"> Dont forget to <a href="http://feeds.feedburner.com/Designrshub" style="padding-left: 23px; background: url(http://graphicdesignjunction.com/images/rss.png) 2px -1px no-repeat; padding-bottom: 4px;" rel="nofollow" target="_blank">subscribe to our RSS-feed</a> and <a href="https://twitter.com/designrshub" rel="nofollow" target="_blank" style="padding-left: 23px; padding-bottom: 3px; padding-top: 0px; background: url(http://graphicdesignjunction.com/images/twitter.png) 2px -1px no-repeat;">follow us on Twitter</a> – for recent updates.</p>
<h2>Reality Media</h2>
<p><img class="aligncenter size-full wp-image-17553" alt="Reality Media" src="http://designrshub.com/wp-content/uploads/2013/06/dolphin-logo-design-20.png" width="325" height="260" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://logopond.com/gallery/detail/170290">View Source</a></span></div>
<h2>Sea Shepherd</h2>
<p><img class="aligncenter size-full wp-image-17552" alt="Sea Shepherd" src="http://designrshub.com/wp-content/uploads/2013/06/dolphin-logo-design-19.png" width="325" height="260" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://logopond.com/gallery/detail/142882">View Source</a></span></div>
<h2>Dolphin Tours</h2>
<p><img class="aligncenter size-full wp-image-17536" alt="Dolphin Tours" src="http://designrshub.com/wp-content/uploads/2013/06/dolphin-logo-design-03.png" width="325" height="260" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://logopond.com/gallery/detail/183990">View Source</a></span></div>
<h2>Aquatico</h2>
<p><img class="aligncenter size-full wp-image-17537" alt="Aquatico" src="http://designrshub.com/wp-content/uploads/2013/06/dolphin-logo-design-04.png" width="325" height="260" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://logopond.com/gallery/detail/151602">View Source</a></span></div>
<h2>Dolphin Logo Design</h2>
<p><img class="aligncenter size-full wp-image-17539" alt="Dolphin Logo Design" src="http://designrshub.com/wp-content/uploads/2013/06/dolphin-logo-design-06.png" width="325" height="260" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://logopond.com/gallery/detail/194287">View Source</a></span></div>
<h2>Bebocean</h2>
<p><img class="aligncenter size-full wp-image-17543" alt="Bebocean" src="http://designrshub.com/wp-content/uploads/2013/06/dolphin-logo-design-10.png" width="325" height="260" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://logopond.com/gallery/detail/128520">View Source</a></span></div>
<h2>Delphinus</h2>
<p><img class="aligncenter size-full wp-image-17534" alt="Delphinus" src="http://designrshub.com/wp-content/uploads/2013/06/dolphin-logo-design-01.png" width="325" height="260" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://logopond.com/gallery/detail/184317">View Source</a></span></div>
<h3>Dolphin Logo Design</h3>
<p><img class="aligncenter size-full wp-image-17540" alt="Dolphin Logo Design" src="http://designrshub.com/wp-content/uploads/2013/06/dolphin-logo-design-07.png" width="325" height="260" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://logopond.com/gallery/detail/178754">View Source</a></span></div>
<h2>Backflip Studios</h2>
<p><img class="aligncenter size-full wp-image-17538" alt="Backflip Studios" src="http://designrshub.com/wp-content/uploads/2013/06/dolphin-logo-design-05.png" width="325" height="260" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://logopond.com/gallery/detail/158849">View Source</a></span></div>
<h2>Dolphin Net</h2>
<p><img class="aligncenter size-full wp-image-17541" alt="Dolphin Net" src="http://designrshub.com/wp-content/uploads/2013/06/dolphin-logo-design-08.png" width="325" height="260" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://logopond.com/gallery/detail/136141">View Source</a></span></div>
<h2>RunnerPeak</h2>
<p><img class="aligncenter size-full wp-image-17542" alt="RunnerPeak" src="http://designrshub.com/wp-content/uploads/2013/06/dolphin-logo-design-09.png" width="325" height="260" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://logopond.com/gallery/detail/141348">View Source</a></span></div>
<h2>Adriana</h2>
<p><img class="aligncenter size-full wp-image-17551" alt="Adriana" src="http://designrshub.com/wp-content/uploads/2013/06/dolphin-logo-design-18.png" width="325" height="260" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://logopond.com/gallery/detail/10254">View Source</a></span></div>
<h2>The Dolphin</h2>
<p><img class="aligncenter size-full wp-image-17535" alt="The Dolphin" src="http://designrshub.com/wp-content/uploads/2013/06/dolphin-logo-design-02.png" width="325" height="260" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://logopond.com/gallery/detail/170942">View Source</a></span></div>
<h2>Hai Baby Shop</h2>
<p><img class="aligncenter size-full wp-image-17545" alt="Hai Baby Shop" src="http://designrshub.com/wp-content/uploads/2013/06/dolphin-logo-design-12.png" width="325" height="260" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://logopond.com/gallery/detail/128519">View Source</a></span></div>
<h2>Ruslan Mashkov</h2>
<p><img class="aligncenter size-full wp-image-17547" alt="Ruslan Mashkov" src="http://designrshub.com/wp-content/uploads/2013/06/dolphin-logo-design-14.png" width="325" height="260" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://logopond.com/gallery/detail/95059">View Source</a></span></div>
<h2>Dolphin</h2>
<p><img class="aligncenter size-full wp-image-17550" alt="Dolphin" src="http://designrshub.com/wp-content/uploads/2013/06/dolphin-logo-design-17.png" width="325" height="260" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://logopond.com/gallery/detail/54710">View Source</a></span></div>
<h2>ColorSwim</h2>
<p><img class="aligncenter size-full wp-image-17549" alt="ColorSwim" src="http://designrshub.com/wp-content/uploads/2013/06/dolphin-logo-design-16.png" width="325" height="260" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://logopond.com/gallery/detail/69694">View Source</a></span></div>
<h2>Sea Waves</h2>
<p><img class="aligncenter size-full wp-image-17548" alt="Sea Waves" src="http://designrshub.com/wp-content/uploads/2013/06/dolphin-logo-design-15.png" width="325" height="260" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://logopond.com/gallery/detail/114179">View Source</a></span></div>
<h2>KohKong</h2>
<p><img class="aligncenter size-full wp-image-17546" alt="KohKong" src="http://designrshub.com/wp-content/uploads/2013/06/dolphin-logo-design-13.png" width="325" height="260" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://logopond.com/gallery/detail/110858">View Source</a></span></div>
<h2>Sokoa</h2>
<p><img class="aligncenter size-full wp-image-17544" alt="Sokoa" src="http://designrshub.com/wp-content/uploads/2013/06/dolphin-logo-design-11.png" width="325" height="260" /></p>
<div style="text-align: center;"><span class="action-button blue-button"><a target="_blank" rel="nofollow" href="http://logopond.com/gallery/detail/131078">View Source</a></span></div>
<p><a href="http://designrshub.com">Designrshub - Design Articles, Inspirations, Resources and Freebies - Designrshub is a design blog dedicated to provide high quality web and graphic design resources, inspirations, freebies and social media articles.</a></p>]]></content:encoded>
			<wfw:commentRss>http://designrshub.com/2013/06/dolphin-logo-design.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

 Served from: designrshub.com @ 2013-06-20 13:19:25 by W3 Total Cache -->