<?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>1stwebdesigner - Graphic and Web Design Blog &#187; tutorial</title>
	<atom:link href="http://www.1stwebdesigner.com/tag/tutorial/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.1stwebdesigner.com</link>
	<description>1stwebdesigner is a design blog dedicated to bloggers, freelancers, web-developers and designers. Topics focus on web design and inspirational articles.</description>
	<lastBuildDate>Sun, 12 Feb 2012 13:09:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>jQuery Mobile &#8211; What You Need to Know</title>
		<link>http://www.1stwebdesigner.com/css/jquery-mobile-need-to-know/</link>
		<comments>http://www.1stwebdesigner.com/css/jquery-mobile-need-to-know/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 10:00:22 +0000</pubDate>
		<dc:creator>Rochester Oliveira</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[JS & AJAX]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[jquery mobile]]></category>
		<category><![CDATA[mobile site]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[web mobile]]></category>

		<guid isPermaLink="false">http://www.1stwebdesigner.com/?p=60417</guid>
		<description><![CDATA[jQuery Mobile version 1.0 finally launched this past November. Don&#8217;t know if you heard about it, but if you are planning to do any mobile app or website development, it&#8217;s better to get started with it right now. I&#8217;m sure you&#8217;ve heard about jQuery. So, its mobile version is pretty close to what you already [...]]]></description>
			<content:encoded><![CDATA[<p>jQuery Mobile version 1.0 finally launched this past November. Don&#8217;t know if you heard about it, but if you are planning to do any mobile app or website development, it&#8217;s better to get started with it right now.</p>
<p>I&#8217;m sure you&#8217;ve heard about jQuery. So, its mobile version is pretty close to what you already are used to, but with a lot of enhancements for mobile screen events (like touching instead of click, and there is no hover) and browsers (this one is tricky since there are plenty of browsers and devices out there) and capabilities (pluggable components).</p>
<p>The crazy thing is how simple it is to initiate and build a fully working mobile site. Actually, we&#8217;ll be talking about concepts, tips, codes, and in the meantime you can build your own app, in no more than one hour. Yeah, noob to ninja in one hour, this is what you&#8217;ll get here :)</p>
<p>So, let&#8217;s rock!</p>
<p><span id="more-60417"></span></p>
<h2>jQuery Mobile&#8217;s Main Concept</h2>
<hr style="margin-left: 20px;" align="left" width="60%" />
<p><a href="http://jquerymobile.com/"><img class="alignnone size-full wp-image-62982" title="jquery-print" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/jquery-print.jpg" alt="" width="550" height="316" /></a></p>
<h3>Cross browsing, a nightmare that was coming back</h3>
<p>Those who used to code anything between 2001 and 2008 (while &lt; IE6 was pretty huge, and Firefox / Chrome were just the new kids on the browser block) faced the nightmare of cross-browser issues. I mean, if you think that putting a vendor prefix before CSS code is cross-browser, try to get things working well on IE5.5, IE6, Opera and Firefox without CSS / JS hacks.</p>
<p>That, dear Padawan, was crazy.</p>
<p>Back to 2010, mobile was getting bigger and bigger. So were the types of browsers out there. Each smart phone and tablet has its own capabilities and its own particularities. Try mixing that with touch oriented screens and a huge range of screen sizes. Sound familiar?</p>
<h2>Then, the hero arrives</h2>
<hr style="margin-left: 20px;" align="left" width="60%" />
<p><img class="alignnone size-full wp-image-62983" title="jquery-hero" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/jquery-hero.jpg" alt="" width="600" height="400" /></p>
<p>Credits: <a href="http://www.sxc.hu/photo/955075">bizior</a> (photo) &amp; Rochester Oliveira (edit)</p>
<p>jQuery Mobile comes with a huge compatibility table, with lots of devices and platforms well covered. All you&#8217;ve got to do is include their libraries, and try to stop your jaw from hitting the floor when you see the amazing features.</p>
<p>Oh, and it&#8217;s not just about cross browsing. It also covers a lot of UI elements that are already standards out there. And if you want a little more customized look you can easily change that, without messing up functionality.</p>
<h2>Awesomeness proven, let&#8217;s code!</h2>
<hr style="margin-left: 20px;" align="left" width="60%" />
<p>Ok, now you know why this project is so great, let&#8217;s take a look at some of the overall effects, components, good practices and code that you may want to use.</p>
<h2>Basic structure</h2>
<hr style="margin-left: 20px;" align="left" width="60%" />
<p>Just to get started, let&#8217;s grab our files from jQuery&#8217;s CDN. We&#8217;ll need just 3 files:</p>
<ul>
<li>jQuery Mobile stylesheet</li>
<li>jQuery JS</li>
<li>jQuery Mobile JS</li>
</ul>
<p>So your code will look like:</p>
<pre class="brush: php; title: ; notranslate">&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
	&lt;title&gt;Starter page&lt;/title&gt;
	&lt;meta charset=&quot;utf-8&quot; /&gt;
    &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1&quot; /&gt;
    &lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge,chrome=1&quot; /&gt;
	&lt;link rel=&quot;stylesheet&quot; href=&quot;http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.css&quot; /&gt;
	&lt;script src=&quot;http://code.jquery.com/jquery-1.6.4.min.js&quot;&gt;&lt;/script&gt;
	&lt;script src=&quot;http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.js&quot;&gt;&lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;
	&lt;div data-role=&quot;page&quot; id=&quot;home&quot;&gt;
		&lt;div data-role=&quot;header&quot;&gt;
			&lt;h1&gt;Header&lt;/h1&gt;
		&lt;/div&gt;
		&lt;div data-role=&quot;content&quot;&gt;
			&lt;p&gt;Lorem ipsum&lt;/p&gt;
		&lt;/div&gt;
		&lt;div data-role=&quot;footer&quot;&gt;
			&lt;h4&gt;Footer&lt;/h4&gt;
		&lt;/div&gt;
	&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>As you may notice it uses HTML5 markup and data-* attributes to get things working. This snippet will output this (all tests done with iOS 5.0.1 @ iPod):</p>
<p><img class="alignnone size-full wp-image-62985" title="screen-1" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/screen-1.jpg" alt="" width="550" height="367" /></p>
<p>Important note, any &#8220;traditional&#8221; jQuery call should be placed before the call for mobile framework.</p>
<h2>Basic UI components</h2>
<hr style="margin-left: 20px;" align="left" width="60%" />
<p>jQuery Mobile uses data-* attributes to define UI components. Actually you just saw 4 of them above. Let&#8217;s see a small list of them and their correspondent data attribute:</p>
<ul>
<li><strong>data-role=&#8221;page&#8221;</strong> : you can set divs inside your HTML page to behave as pages. SO what we&#8217;ve done above is to create a page &#8220;home&#8221; inside our file</li>
<li><strong>data-role=&#8221;header&#8221;:</strong> used to mark divs as top toolbars. You can set up data-position=&#8221;fixed&#8221; as well so it&#8217;ll behave as fixed toolbar</li>
<li><strong>data-role=&#8221;content&#8221;:</strong> the main part of your website / app. Images, buttons, actions and all the magic happens here!</li>
<li><strong>data-role=&#8221;footer&#8221;:</strong> defines a toolbar at the bottom of current page. May use data-position=&#8221;fixed&#8221; too so it&#8217;ll force to stay at the bottom of the screen</li>
<li><strong>data-role=&#8221;button&#8221;:</strong> it&#8217;ll be useful together with elements. You may use also data-transition to define how it&#8217;ll load next page. Options: slide, slideup, slidedown, pop, fade, flip. Another cool thing is data-icon, which gives you a <a href="http://jquerymobile.com/demos/1.0a4.1/docs/buttons/buttons-icons.html">lot of default icons</a>. You may also reduce its size using data-inline=&#8221;true&#8221;.</li>
<li><strong>data-theme=&#8221;a/b/c/d/e&#8221;:</strong> Define color scheme used for elements.</li>
</ul>
<p>Let&#8217;s wrap up all those attributes in a simple 2-page linking. Output:</p>
<p><img class="alignnone size-full wp-image-62984" title="screen-2" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/screen-2.jpg" alt="" width="550" height="367" /></p>
<p>Second page:</p>
<p><img class="alignnone size-full wp-image-62986" title="screen-3" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/screen-3.jpg" alt="" width="550" height="367" /></p>
<p>Code:</p>
<pre class="brush: php; title: ; notranslate">&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
	&lt;title&gt;Starter page&lt;/title&gt;
	&lt;meta charset=&quot;utf-8&quot; /&gt;
    &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1&quot; /&gt;
    &lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge,chrome=1&quot; /&gt;
	&lt;link rel=&quot;stylesheet&quot; href=&quot;http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.css&quot; /&gt;
	&lt;script src=&quot;http://code.jquery.com/jquery-1.6.4.min.js&quot;&gt;&lt;/script&gt;
	&lt;script src=&quot;http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.js&quot;&gt;&lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;
	&lt;div data-role=&quot;page&quot; id=&quot;home&quot; data-theme=&quot;b&quot;&gt;
		&lt;div data-role=&quot;header&quot;&gt;
			&lt;h1&gt;Header&lt;/h1&gt;
		&lt;/div&gt;
		&lt;div data-role=&quot;content&quot;&gt;
			&lt;p&gt;Lorem ipsum&lt;/p&gt;
			 &lt;p&gt;&lt;a href=&quot;#second&quot; data-role=&quot;button&quot; data-transition=&quot;fade&quot; data-icon=&quot;arrow-r&quot; data-iconpos=&quot;right&quot;&gt;Second page&lt;/a&gt;&lt;/p&gt;
		&lt;/div&gt;
		&lt;div data-role=&quot;footer&quot;&gt;
			&lt;h4&gt;Footer&lt;/h4&gt;
		&lt;/div&gt;
	&lt;/div&gt;
	&lt;div data-role=&quot;page&quot; id=&quot;second&quot;&gt;
		&lt;div data-role=&quot;header&quot;&gt;
			&lt;h1&gt;Header second page&lt;/h1&gt;
		&lt;/div&gt;
		&lt;div data-role=&quot;content&quot;&gt;
			&lt;p&gt;I'm second page!&lt;/p&gt;
		&lt;/div&gt;
		&lt;div data-role=&quot;footer&quot;&gt;
			&lt;h4&gt;Footer second page&lt;/h4&gt;
		&lt;/div&gt;
	&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<h2>Navigation, Lists, Form &amp; Dialog Components</h2>
<hr style="margin-left: 20px;" align="left" width="60%" />
<p>Then we have a bunch of other default components that are easily implemented with jQuery Mobile:</p>
<ul>
<li><strong>data-role=&#8221;navbar&#8221;:</strong> Used to create menus. Then you should place a ul item with li&#8217;s and a&#8217;s (BTW, that&#8217;s the way you should create menus, always)</li>
<li><strong>data-role=&#8221;listview&#8221; + data-filter=&#8221;true&#8221; :</strong> Awesomely easy way to create searchable lists. Really useful!</li>
<li><strong>data-role=&#8221;fieldcontain&#8221;:</strong> This is a container for form elements</li>
<li>select  data-native-menu=&#8221;false&#8221;: creates a cool select element as &#8220;floating&#8221; element instead of default select which stole half of screen area</li>
<li><strong>select  data-role=&#8221;slider&#8221;:</strong> Creates a &#8220;on / off&#8221; slider, useful for options pages</li>
<li><strong>input type=email, tel, number, url..:</strong> accepts any HTML5 data format, and adjust keyboard to better fit data type</li>
<li><strong>input type=range:</strong> same as before, but this one uses new HTML format and creates an actual slider, good for numbers range inputs</li>
<li><strong>data-rel=&#8221;dialog&#8221;:</strong> is an anchor attribute that makes target page opens as dialog box.</li>
<li><strong>data-add-back-btn=&#8221;true&#8221;:</strong> add this attribute to your page and you&#8217;ll have a &#8220;back&#8221; button. Cool, huh?</li>
</ul>
<p>Now we&#8217;ll edit our demo file a little bit. It&#8217;ll be 4 pages now:</p>
<ul>
<li>Home screen will have a dialog box</li>
<li>Form elements page will use all we have mentioned</li>
<li>List page will have a searchable list so you can try it</li>
<li>Alert page has target content when user clicks the alert link</li>
</ul>
<p>Previews:</p>
<p><img class="alignnone  wp-image-62987" title="screen-4" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/screen-4.jpg" alt="" width="334" height="500" /></p>
<p>Alert page:</p>
<p><img class="alignnone  wp-image-62988" title="screen-5" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/screen-5.jpg" alt="" width="333" height="500" /></p>
<p>Form page:</p>
<p><img class="alignnone  wp-image-62990" title="screen-7" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/screen-7.jpg" alt="" width="333" height="500" /></p>
<p>Lists page:</p>
<p><img class="alignnone  wp-image-62989" title="screen-6" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/screen-6.jpg" alt="" width="334" height="500" /></p>
<pre class="brush: php; title: ; notranslate">&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
	&lt;title&gt;Starter page - 1stWebDesigner.com&lt;/title&gt;
	&lt;meta charset=&quot;utf-8&quot; /&gt;
    &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1&quot; /&gt;
    &lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge,chrome=1&quot; /&gt;
	&lt;link rel=&quot;stylesheet&quot; href=&quot;http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.css&quot; /&gt;
	&lt;script src=&quot;http://code.jquery.com/jquery-1.6.4.min.js&quot;&gt;&lt;/script&gt;
	&lt;script src=&quot;http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.js&quot;&gt;&lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;
	&lt;div data-role=&quot;page&quot; id=&quot;home&quot; data-add-back-btn=&quot;true&quot;&gt;
		&lt;div data-role=&quot;header&quot;&gt;
			&lt;h1&gt;Alert element&lt;/h1&gt;
		&lt;/div&gt;
		&lt;div data-role=&quot;content&quot;&gt;
			&lt;p&gt;&lt;a href=&quot;#alert&quot; data-role=&quot;button&quot; data-transition=&quot;fade&quot; data-icon=&quot;arrow-r&quot; data-iconpos=&quot;right&quot; data-theme=&quot;b&quot; data-rel=&quot;dialog&quot;&gt;Open alert&lt;/a&gt;&lt;/p&gt;
		&lt;/div&gt;
		&lt;div data-role=&quot;footer&quot;&gt;
			&lt;div data-role=&quot;navbar&quot;&gt;
				&lt;ul&gt;
					&lt;li&gt;&lt;a href=&quot;#form&quot; data-role=&quot;button&quot; data-transition=&quot;fade&quot; data-icon=&quot;arrow-r&quot; data-iconpos=&quot;right&quot; data-inline=&quot;true&quot;&gt;Form Elements&lt;/a&gt;&lt;/li&gt;
					&lt;li&gt;&lt;a href=&quot;#list&quot; data-role=&quot;button&quot; data-transition=&quot;fade&quot; data-icon=&quot;arrow-r&quot; data-iconpos=&quot;right&quot; data-inline=&quot;true&quot;&gt;List element&lt;/a&gt;&lt;/li&gt;
				&lt;/ul&gt;
			&lt;/div&gt;
		&lt;/div&gt;
	&lt;/div&gt;
	&lt;div data-role=&quot;page&quot; id=&quot;form&quot; data-add-back-btn=&quot;true&quot;&gt;
		&lt;div data-role=&quot;header&quot;&gt;
			&lt;h1&gt;Form elements&lt;/h1&gt;
		&lt;/div&gt;
		&lt;div data-role=&quot;content&quot;&gt;
			&lt;div data-role=&quot;fieldcontain&quot;&gt;
				&lt;label for=&quot;name&quot; class=&quot;select&quot;&gt;Choose:&lt;/label&gt;
				&lt;select id=&quot;name&quot; name=&quot;select&quot; data-native-menu=&quot;false&quot;&gt;
					&lt;option value=&quot;value1&quot;&gt;option1&lt;/option&gt;
					&lt;option value=&quot;value2&quot;&gt;option2&lt;/option&gt;
					&lt;option value=&quot;value3&quot;&gt;option3&lt;/option&gt;
				&lt;/select&gt;

				&lt;label for=&quot;slider&quot;&gt;Select slider:&lt;/label&gt;
				&lt;select name=&quot;slider&quot; id=&quot;slider&quot; data-role=&quot;slider&quot;&gt;
					&lt;option value=&quot;off&quot;&gt;Off&lt;/option&gt;
					&lt;option value=&quot;on&quot;&gt;On&lt;/option&gt;
				&lt;/select&gt;

				&lt;label for=&quot;slider&quot;&gt;Input slider:&lt;/label&gt;
				&lt;input type=&quot;range&quot; name=&quot;slider&quot; id=&quot;slider&quot; value=&quot;0&quot; min=&quot;0&quot; max=&quot;100&quot;  /&gt;

				&lt;label for=&quot;email&quot;&gt;Email Input:&lt;/label&gt;
				&lt;input type=&quot;email&quot; id=&quot;email&quot; name=&quot;email&quot; value=&quot;&quot;  /&gt;

				&lt;label for=&quot;num&quot;&gt;Number Input:&lt;/label&gt;
				&lt;input type=&quot;number&quot; id=&quot;num&quot; name=&quot;num&quot; value=&quot;&quot;  /&gt;
			&lt;/div&gt;
		&lt;/div&gt;
		&lt;div data-role=&quot;footer&quot;&gt;
			&lt;div data-role=&quot;navbar&quot;&gt;
				&lt;ul&gt;
					&lt;li&gt;&lt;a href=&quot;#home&quot; data-role=&quot;button&quot; data-transition=&quot;fade&quot; data-icon=&quot;arrow-r&quot; data-iconpos=&quot;right&quot; data-inline=&quot;true&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;
					&lt;li&gt;&lt;a href=&quot;#list&quot; data-role=&quot;button&quot; data-transition=&quot;fade&quot; data-icon=&quot;arrow-r&quot; data-iconpos=&quot;right&quot; data-inline=&quot;true&quot;&gt;List element&lt;/a&gt;&lt;/li&gt;
				&lt;/ul&gt;
			&lt;/div&gt;
		&lt;/div&gt;
	&lt;/div&gt;
	&lt;div data-role=&quot;page&quot; id=&quot;list&quot; data-add-back-btn=&quot;true&quot;&gt;
		&lt;div data-role=&quot;header&quot;&gt;
			&lt;h1&gt;This is a list&lt;/h1&gt;
		&lt;/div&gt;
		&lt;div data-role=&quot;content&quot;&gt;
			&lt;ul data-role=&quot;listview&quot; data-filter=&quot;true&quot;&gt;
				&lt;li&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit.&lt;/li&gt;
				&lt;li&gt;Aliquam vitae leo metus, quis suscipit nulla.&lt;/li&gt;
				&lt;li&gt;Maecenas accumsan urna sit amet justo commodo accumsan.&lt;/li&gt;
				&lt;li&gt;Nulla vitae lacus augue, vel eleifend tellus.&lt;/li&gt;
				&lt;li&gt;Integer at ligula turpis, at fermentum nisl.&lt;/li&gt;
				&lt;li&gt;Nam dapibus risus at massa sagittis egestas.&lt;/li&gt;
				&lt;li&gt;Praesent hendrerit purus vitae enim faucibus tincidunt.&lt;/li&gt;
				&lt;li&gt;Curabitur sit amet lectus neque, id facilisis elit.&lt;/li&gt;
			&lt;/ul&gt;
		&lt;/div&gt;
		&lt;div data-role=&quot;footer&quot;&gt;
			&lt;div data-role=&quot;navbar&quot;&gt;
				&lt;ul&gt;
					&lt;li&gt;&lt;a href=&quot;#home&quot; data-role=&quot;button&quot; data-transition=&quot;fade&quot; data-icon=&quot;arrow-r&quot; data-iconpos=&quot;right&quot; data-inline=&quot;true&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;
					&lt;li&gt;&lt;a href=&quot;#form&quot; data-role=&quot;button&quot; data-transition=&quot;fade&quot; data-icon=&quot;arrow-r&quot; data-iconpos=&quot;right&quot; data-inline=&quot;true&quot;&gt;Form element&lt;/a&gt;&lt;/li&gt;
				&lt;/ul&gt;
			&lt;/div&gt;
		&lt;/div&gt;
	&lt;/div&gt;
	&lt;div data-role=&quot;page&quot; id=&quot;alert&quot; data-add-back-btn=&quot;true&quot;&gt;
		&lt;div data-role=&quot;header&quot;&gt;
			&lt;h1&gt;Alert!&lt;/h1&gt;
		&lt;/div&gt;
		&lt;div data-role=&quot;content&quot;&gt;
			&lt;p&gt;I'm alert page!&lt;/p&gt;
		&lt;/div&gt;
	&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<h2>Custom font embedding</h2>
<hr style="margin-left: 20px;" align="left" width="60%" />
<p>Probably no method will beat @font-face. So I suggest you go to <a href="http://www.fontsquirrel.com/fontface/generator">Font Squirrel</a> and generate your font files.</p>
<p><a href="http://www.fontsquirrel.com/fontface/generator"><img class="alignnone size-full wp-image-62991" title="font-squirrel" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/font-squirrel.jpg" alt="" width="550" height="461" /></a></p>
<h2>Compress images</h2>
<hr style="margin-left: 20px;" align="left" width="60%" />
<p>You should do this all the time, actually. But when you are designing for the mobile world, even a few kb&#8217;s makes big difference. So save your user&#8217;s bandwidth and compress not only your code, but all your images.</p>
<p><a href="http://www.jpegmini.com/main/home">JPEG mini</a> has the best compressing service I&#8217;ve ever seen, and it&#8217;s quite easy to use, you should give it a try!</p>
<p><a href="http://www.jpegmini.com/main/home"><img class="alignnone size-full wp-image-62992" title="jpegmini" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/jpegmini.jpg" alt="" width="476" height="391" /></a></p>
<h2>Remove components</h2>
<hr style="margin-left: 20px;" align="left" width="60%" />
<p>We talked about just a few of many jQuery Mobile&#8217;s components. So it&#8217;s more likely you won&#8217;t be using them all.</p>
<p>The good news is that you can easily remove them, by <a href="http://jquerymobile.com/blog/2011/08/03/jquery-mobile-beta-2-released/#features">making your own build</a> :)</p>
<p><a href="http://jquerymobile.com/blog/2011/08/03/jquery-mobile-beta-2-released/#features"><img class="alignnone size-full wp-image-62993" title="widgets" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/widgets.jpg" alt="" width="476" height="391" /></a></p>
<h2>Now it&#8217;s your turn?</h2>
<hr style="margin-left: 20px;" align="left" width="60%" />
<p>So, how are you planning to use jQuery Mobile? Have another cool tip to share? Don&#8217;t be shy and comment!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.1stwebdesigner.com/css/jquery-mobile-need-to-know/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Create a Classic-Styled Portfolio Design in Adobe Photoshop</title>
		<link>http://www.1stwebdesigner.com/tutorials/classic-portfolio-tutorial/</link>
		<comments>http://www.1stwebdesigner.com/tutorials/classic-portfolio-tutorial/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 21:00:15 +0000</pubDate>
		<dc:creator>Dillen Verschoor</dc:creator>
				<category><![CDATA[Quick Tips]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Interface]]></category>
		<category><![CDATA[template tutorial]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web design tutorial]]></category>
		<category><![CDATA[web interface tutorial]]></category>

		<guid isPermaLink="false">http://www.1stwebdesigner.com/?p=62265</guid>
		<description><![CDATA[Howdy, today we will be creating a nice design for your online portfolio. What we will learn here is how you can use a combination of textures and patterns to create a nice old-school look and how to use guides in a smart way.  Here is what we will be making: Resources for this tutorial [...]]]></description>
			<content:encoded><![CDATA[<p>Howdy, today we will be creating a nice design for your online portfolio. What we will learn here is how you can use a combination of textures and patterns to create a nice old-school look and how to use guides in a smart way.  Here is what we will be making:<span id="more-62265"></span></p>
<p><a href="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/main.jpg"><img class="alignnone size-full wp-image-62549" title="main" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/main.jpg" alt="" width="570" height="738" /></a></p>
<h2>Resources for this tutorial</h2>
<hr style="margin-left: 20px;" align="left" width="60%" />
<ul>
<li>Icons from <a href="http://iconsweets.com/" target="_blank">Iconsweets</a></li>
<li>Sample images for the center image</li>
<li><a href="http://dl.dropbox.com/u/35995890/1WD-kroal-photoshop-tut.zip" target="_blank">PSD Download</a> &#8211; but really, you should follow the tutorial first!</li>
</ul>
<h2>Step 1: Setting up the Document</h2>
<hr style="margin-left: 20px;" align="left" width="60%" />
<ul>
<li>Start by creating a<strong> 1600px</strong> x <strong>1600px</strong> document in Photoshop.</li>
<li>Ruler Tool is very useful for this tutorial make sure that rulers and guides is turned on.</li>
<li>Rulers: <strong>Ctrl + R</strong></li>
<li>Guides: <strong>Ctrl + ;</strong> or <strong>Ctrl + H</strong></li>
<li>The total width of our content will be <strong>960p</strong>x. Our canvas is 1600px width. So what you have to do is go to<em> View – New Guide</em>. Set the value to 320 px. Repeat the step but now change the value to <strong>1280 px</strong>, this will make a total of<strong> 960 px</strong> to the center of our canvas.</li>
<li>Because this design will have a 3 column set up, you will need <strong>2</strong> more guides. <em>960 / 3 = <strong>320 px</strong></em><strong>.</strong></li>
<li>So repeat the step again twice, but now with the value of:<strong> 640px</strong> and <strong>960px</strong>.</li>
<li>So what you now should have, is an empty canvas with <strong>4</strong> lines. Which represent the alignment we will be using. You can hide these guides by <em>Ctrl + H</em></li>
<li>Fill the background with:<strong> #272e2e.</strong></li>
</ul>
<h2>Step 2: Working on Base Background for Header and Slider</h2>
<hr style="margin-left: 20px;" align="left" width="60%" />
<p><img class="alignnone size-full wp-image-62286" title="1" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/1.jpg" alt="" width="570" height="400" /> We are going to give this header background a nice old-school look. We will use a texture and a pattern for this. Combining these with the right colour should give the style we are aiming for. Start by selecting the<em> rectangular marquee tool (M),</em> create a<strong> 100%</strong> by <strong>390px</strong> shape, color <strong>#2daaa5</strong>. Go to <em>Blending Options</em> on this layer and select <em>Gradient Overlay</em>. Below are my settings: <img class="alignnone size-full wp-image-62287" title="2" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/2.jpg" alt="" width="570" height="400" /> <img class="alignnone size-full wp-image-62556" title="3" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/310.jpg" alt="" width="570" height="400" /> Next, we have to add the texture. You can use the one below or download your own. <img class="alignnone size-full wp-image-62289" title="4" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/4.jpg" alt="" width="570" height="400" /></p>
<ul>
<li>I used the one above at <strong>20%</strong> opacity.</li>
<li>Now, for the Pattern. What I did was make a new document, <strong>5 x 5 px</strong> and background Transparent In here we will make the pattern.</li>
<li>Zoom in all the way (1600%), select the <em>Rectangular tool (M)</em> and make a cross in the document.</li>
</ul>
<p><strong>Like this:</strong> <img class="alignnone size-full wp-image-62290" title="5" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/5.jpg" alt="" width="160" height="161" /></p>
<ul>
<li>Go to<strong> Edit -&gt; Define Pattern.</strong> Here you’ll save the pattern which you can use in every other .psd file.</li>
<li>Back to our work file, Ctrl + left mouse click the blue layer. This will load the selection of the layer. Now, at the bottom of the layer panel select the <strong>black/white</strong> icon and choose <strong>Pattern Fill</strong>. It should automatically show your pattern but if not, select the arrow next to the thumbnail of the selected pattern. You’ll see a selection of patterns which should include your defined pattern.</li>
<li>Hit OK and there is your pattern.</li>
<li>Opacity = <strong>3%.</strong></li>
<li>Now we will make a nice line at the bottom of the header background. There’s actually<strong> 2</strong>, <strong>1px</strong> lines. the upper one is<strong> #26938e</strong>, and the one below is <strong>#44c6c1.</strong></li>
<li>To make these lines it’s easy to use the <em>(horizontal) Single Row Marquee Tool.</em></li>
</ul>
<p>Should look close like this: <img class="alignnone size-full wp-image-62291" title="6" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/6.jpg" alt="" width="570" height="69" /> So far for the header background. Of course you can experiment with colours and different <strong>textures/patterns.</strong></p>
<h2>Step 3: Filling The Header With Logo/Nav &amp; Slider</h2>
<hr style="margin-left: 20px;" align="left" width="60%" />
<p>So, we made the document and we have a nice background for the header. Now it’s time to fill it up with content. First step,<strong> making a logo</strong>. What I did was quite easy. <img class="alignnone size-full wp-image-62292" title="7" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/7.jpg" alt="" width="570" height="100" /> The font I used is<strong> Century Gothic</strong>. The settings can be found here: <strong>Kroal</strong> <strong></strong><strong> </strong><img class="alignnone size-full wp-image-62294" title="8" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/81.png" alt="" width="227" height="214" /> <strong>Portfolio</strong> <strong></strong><img class="alignnone size-full wp-image-62295" title="9" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/9.jpg" alt="" width="227" height="214" /> Kroal: <strong>Color overlay</strong> is <strong>white.</strong> <img class="alignnone size-full wp-image-62296" title="10" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/10.jpg" alt="" width="570" height="400" /> <strong>Portfolio:</strong> <img class="alignnone size-full wp-image-62297" title="11" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/11.jpg" alt="" width="570" height="400" /> The last part of the logo is a <strong>vertical line</strong> which should be <strong>on your guide. Like this:</strong> <img class="alignnone size-full wp-image-62298" title="12" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/12.jpg" alt="" width="570" height="279" /> I made that line with the <em>Rectangular Marque tool</em>. color: <strong>#289a96.</strong> Second step, <strong>the navigation.</strong> <a href="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/13.jpg"><img class="alignnone size-full wp-image-62299" title="13" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/13.jpg" alt="" width="570" height="100" /></a> The navigation is just some simple text fields with <strong>13px Open Sans</strong> font. The slashes in between are the same font but<strong> 10px</strong> and<strong> 37% opacity</strong>. The<strong> Blending Options</strong> for the nav text are: <img class="alignnone size-full wp-image-62300" title="14" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/14.jpg" alt="" width="570" height="400" /> The lines beneath the text are <strong>2</strong> layers, made with <em>Rectangular Marquee Tool</em>. Colours are: <strong>#289a96</strong> and just white for the active line. Third is the slide show, mine is <strong>960px</strong> by <strong>410px</strong>. Of course you can choose any size. Use the <em>Rectangular Marquee Tool</em> to create the shape. I recommend to switch to <strong>Fixed Size style-mode</strong>. <img class="alignnone size-full wp-image-62303" title="17" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/17.jpg" alt="" width="570" height="100" /> I used <strong>Drop Shadow</strong> and <strong>Stroke</strong>, settings below. <img class="alignnone size-full wp-image-62301" title="15" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/15.jpg" alt="" width="570" height="400" /> <img class="alignnone size-full wp-image-62302" title="16" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/16.jpg" alt="" width="570" height="400" /> Use the <em>Rectangular Marquee Tool</em> again to make the little zoom icon caption. <strong>Hold shift</strong> while making this square. This will keep the dimensions right. The icon can be found in the<em> Iconsweets pack</em>. <img class="alignnone size-full wp-image-62304" title="18" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/18.jpg" alt="" width="570" height="300" /> Also the <strong>caption</strong> to the right of the slider is made with the <em>rectangular marquee tool. </em> <img class="alignnone size-full wp-image-62305" title="19" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/19.jpg" alt="" width="570" height="300" /> The<strong> text settings</strong> are below: <strong>/WEBDESIGN:</strong> <img class="alignnone size-full wp-image-62306" title="20" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/20.jpg" alt="" width="226" height="214" /> <strong>AVICII BLOG</strong> <strong><img class="alignnone size-full wp-image-62307" title="21" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/21.jpg" alt="" width="226" height="214" /></strong> The next part we will make are the small dots beneath the slider which show on what slide you are right now. I recommend making them with the <em>Ellipse Tool (U).</em> What you have to do is make <strong>3 circles</strong> of about <strong>15&#215;15 pixels.</strong> <img class="alignnone size-full wp-image-62308" title="22" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/22.jpg" alt="" width="570" height="300" /> The<strong> layer styles</strong> for these layers can be found here: <strong>Drop Shadow</strong> <strong> <img class="alignnone size-full wp-image-62309" title="23" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/23.jpg" alt="" width="570" height="400" /> </strong> <strong>Inner shadow</strong> <strong> <img class="alignnone size-full wp-image-62310" title="24" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/24.jpg" alt="" width="570" height="400" /></strong> <strong>Color Overlay</strong> <strong> <img class="alignnone size-full wp-image-62311" title="25" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/25.jpg" alt="" width="570" height="400" /></strong> One of the dots needs to be the<strong> active</strong> one. Make this circle again with the <em>Ellipse Tool (U).</em> <img class="alignnone size-full wp-image-62312" title="26" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/26.jpg" alt="" width="570" height="300" /> Blending options: <strong>Inner Shadow</strong> <strong> <img class="alignnone size-full wp-image-62313" title="27" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/27.jpg" alt="" width="570" height="400" /></strong> <strong>Gradient Overlay</strong> <strong> <img class="alignnone size-full wp-image-62314" title="28" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/28.jpg" alt="" width="570" height="400" /></strong> You may have noticed there’s a shadow beneath the slider. Let’s make that! The shadow was made with the <strong>Pen tool (P)</strong>. Try to make a shape like this: <img class="alignnone size-full wp-image-62315" title="29" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/29.jpg" alt="" width="570" height="186" /></p>
<ul>
<li>Next, fill the shape with <strong>black,</strong> and go to <em>filter &gt; Blur &gt; Gaussian blur.</em> Choose a radius which fits you best. Mine was about 4 px.</li>
<li>For the content background. It’s kind of the same as the header. But now you’ll just use the pattern and not the texture. Fill the background with<strong> #272e2e</strong>.</li>
<li>Add another pattern overlay with the same pattern.</li>
<li>Opacity is about <strong>15%.</strong></li>
</ul>
<p>Then the <strong>arrows</strong> beneath the slide show. <img class="alignnone size-full wp-image-62317" title="31" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/31.jpg" alt="" width="570" height="100" /> You can make them with the<strong> pen tool</strong> or just use a <em>standard icon.</em> Blending options left arrow: <strong>Drop Shadow</strong> <strong> <img class="alignnone size-full wp-image-62318" title="32" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/32.jpg" alt="" width="570" height="400" /> </strong> <strong>Inner Shadow</strong> <strong> <img class="alignnone size-full wp-image-62319" title="33" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/33.jpg" alt="" width="570" height="400" /></strong> <strong>Color Overlay</strong></p>
<ul>
<li>Just a solid black<strong> #000000</strong></li>
<li>Blending options<strong> right arrow.</strong></li>
</ul>
<p><strong>Drop Shadow</strong> <strong> <img class="alignnone size-full wp-image-62320" title="34" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/34.jpg" alt="" width="570" height="400" /></strong> <strong>Inner Shadow</strong> <strong> <img class="alignnone size-full wp-image-62321" title="35" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/35.jpg" alt="" width="570" height="400" /></strong> <strong>Color Overlay</strong> Color: <strong>#607474 </strong> You may have noticed there is a<strong> line</strong> to separate the slider from the content below. These are <strong>2 1px</strong> lines <em>100% width</em>. Upper one is <strong>#1f2626</strong>, lower one is <strong>#2b3232</strong>. made with <em>Single Row Marquee tool.</em></p>
<h2>Step 4: Filling In The Content</h2>
<hr style="margin-left: 20px;" align="left" width="60%" />
<ul>
<li>The content starts with a <strong>3</strong> column showcase of text about your website.</li>
<li>If you don&#8217;t see your guides you made at the start hit<em> Ctrl-H</em>. This should make them pop-up ;).</li>
<li>I like to have some icons to give some information about what the content includes. So search for icons which fit what you would like the visitors to see. It should fit the reading content. Mine are from the<em> Iconsweets pack.</em></li>
<li>Next to the icons is a single header title. Font is <strong>Open Sans</strong>, it’s all capital <strong>15px</strong> and the colour is just plain <strong>white</strong>.</li>
<li>The lorem text also is open sans, but now it´s<strong> 12px.</strong></li>
<li>Next, the read more button. Select the <em>Rounded Rectangle Tool (U)</em>. Make it <strong>3px</strong> radius and make yourself a nice sized button.</li>
</ul>
<p>Blending options below: <strong>Drop Shadow:</strong> <strong> <img class="alignnone size-full wp-image-62322" title="36" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/36.jpg" alt="" width="570" height="400" /></strong> <strong>Inner Shadow</strong> <strong> <img class="alignnone size-full wp-image-62323" title="37" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/37.jpg" alt="" width="570" height="400" /></strong> <strong>Gradient Overlay</strong> <strong> <img class="alignnone size-full wp-image-62324" title="38" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/38.jpg" alt="" width="570" height="400" /></strong> There’s another line beneath these <strong>3</strong> columns. You can just <strong>duplicate </strong>the ones you made before.</p>
<ul>
<li>Next is another<strong> 3</strong> columns, but now it’s a showcase of the last<strong> 3</strong> portfolio items.</li>
<li>Another<strong> icon + title</strong> as a header. And all the way too the left is a<strong> button</strong> to the <strong>portfolio</strong>. It has same dimensions as the buttons before but different styling.</li>
</ul>
<p><strong>Drop Shadow</strong> <strong> <img class="alignnone size-full wp-image-62325" title="39" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/39.jpg" alt="" width="570" height="400" /></strong> <strong>Inner Shadow</strong> <strong> <img class="alignnone size-full wp-image-62326" title="40" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/40.jpg" alt="" width="570" height="400" /> </strong> <strong> Gradient Overlay</strong> <strong> <img class="alignnone size-full wp-image-62327" title="41" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/41.jpg" alt="" width="570" height="400" /></strong> <strong>Stroke</strong> <strong> <img class="alignnone size-full wp-image-62328" title="42" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/42.jpg" alt="" width="570" height="400" /></strong> Then, the images. The thumbnails are<strong> 306px</strong> by<strong> 135px</strong>. Make an inner stroke that is<strong> 3 px plain white</strong>. and put an image on <em>clipping mask</em>. The shadow beneath the thumbs are made the same way as for the slideshow. <img class="alignnone size-full wp-image-62329" title="43" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/43.jpg" alt="" width="570" height="400" /></p>
<h2>Step 4: Let&#8217;s Make A Footer</h2>
<hr style="margin-left: 20px;" align="left" width="60%" />
<p>First we have to make some sort of separation between our content and the footer we’re about to make. You can see in the image above that there are<strong> 4 1px lines</strong>. Make them again with the <em>Single Row Marquee Tool</em>. Play around with <strong>color</strong> and <strong>opacity</strong> until it feels <em>natural.</em> The background colour of the footer is <strong>#161a1a</strong>. I made the field with the <em>Rectangular Marquee Tool.</em> The footer again contains the<strong> 3</strong> column build-up. Recent Tweets, Recent News &amp; Contact form. I think the text is pretty easy to create with what I explained earlier. The buttons have the same <em>blending options</em> as the <em>View Portfolio button</em>. The only new thing is the <strong>contact form.</strong> <img class="alignnone size-full wp-image-62330" title="44" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/44.jpg" alt="" width="570" height="400" /> I pulled out the <em>Rounded Rectangle Tool (U)</em> and created <strong>3</strong> shapes with <strong>3px</strong> radius. The blending options are the same for all the 3 fields. <strong>Drop Shadow</strong> <strong> <img class="alignnone size-full wp-image-62331" title="45" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/45.jpg" alt="" width="570" height="400" /></strong> <strong>Inner Glow</strong> <strong> <img class="alignnone size-full wp-image-62332" title="46" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/46.jpg" alt="" width="570" height="400" /></strong> <strong>Gradient Overlay</strong> <strong> <img class="alignnone size-full wp-image-62333" title="47" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/47.jpg" alt="" width="570" height="400" /></strong> So, we’re almost there. Only one thing left to do. Make the <strong>copyright bar</strong> at the bottom. It has the same background as the content so that’s easy. The lines can be <em>copied</em> from the top of the footer and the text is just<strong> open sans</strong> again. This time the color is <strong>#c4c4c4. </strong> <img class="alignnone size-full wp-image-62549" title="main" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/main.jpg" alt="" width="570" height="738" /> That’s it for this tutorial, I hoped you guys learned some new techniques. Still got some questions? Just leave a comment below. Have a great and creative 2012!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.1stwebdesigner.com/tutorials/classic-portfolio-tutorial/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Create A Sleek Music Player In Adobe Photoshop</title>
		<link>http://www.1stwebdesigner.com/tutorials/music-player-photoshop-tutorial/</link>
		<comments>http://www.1stwebdesigner.com/tutorials/music-player-photoshop-tutorial/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 21:00:15 +0000</pubDate>
		<dc:creator>Davey Heuser</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Interface]]></category>
		<category><![CDATA[music player]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://www.1stwebdesigner.com/?p=62612</guid>
		<description><![CDATA[In this tutorial you’ll learn how to make a beautiful music player in Adobe Photoshop. It is important that you take the time when you are designing and do not rush things. I focused on the details so I invite you to look at every little thing carefully and think about why I did it and [...]]]></description>
			<content:encoded><![CDATA[<p>In this tutorial you’ll learn how to make a beautiful music player in Adobe Photoshop. It is important that you take the time when you are designing and do not rush things. I focused on the details so I invite you to look at every little thing carefully and think about why I did it and how you can learn from it! Good luck!<span id="more-62612"></span></p>
<p><strong>Final product:</strong><br />
<a href="http://www.1stwebdesigner.com/tutorials/music-player-photoshop-tutorial/attachment/final-musicplayer-tutorial-jpg/" rel="attachment wp-att-62643"><img class="alignnone size-medium wp-image-62643" title="final-musicplayer-tutorial.jpg" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/final-musicplayer-tutorial.jpg-570x285.jpg" alt="" width="570" height="285" /></a></p>
<h2><strong>What you’ll need:</strong></h2>
<ul>
<li><a href="http://subtlepatterns.com/" target="_blank">Subtle patterns</a></li>
<li><a href="http://iconsweets2.com/" target="_blank">Iconsweet 2</a></li>
<li>Music player icons</li>
<li><a href="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/nadia-ali-musicplayer-tutorial.jpg" target="_blank">Picture of Nadia Ali</a></li>
<li>Helvetica neue 55 roman</li>
<li>Helvetica neue 65 medium</li>
</ul>
<h4>PSD Download</h4>
<div><a href="http://dl.dropbox.com/u/35995890/1WD-music-player-tut.psd" target="_blank">Click me!</a></div>
<h2><strong>Prepare your tools</strong></h2>
<p>Okay so let’s begin! The canvas size depends on the size of your music player, my canvas is<br />
1000 x 500px. Please make sure that you are using 72dpi before you create your new canvas.</p>
<p>You should have a nice canvas size to work with now, but if you’ve looked closely at the end<br />
result, I’ve used a pattern on the background. Here’s where you’ll need the subtle patterns, load<br />
the .pat file and pick a pattern you like and reduce the opacity.</p>
<p><img class="alignnone size-full wp-image-62680" title="background-pattern-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/background-pattern-musicplayer-tutorial.jpg" alt="" width="485" height="428" /></p>
<p>Now that we know what the background looks like, we can make a nice color palette.</p>
<p><img class="alignnone size-full wp-image-62684" title="colorpattern-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/colorpattern-musicplayer-tutorial.jpg" alt="" width="200" height="30" /></p>
<h2><strong>Start designing the player!</strong></h2>
<p>Let’s start by creating the base of the music player. Grab your rounded rectangle tool (U) and<br />
make sure that the radius is set to 3px. I’ve used a gradient for the stroke because the bottom of the player would’ve ended up looking blurry.</p>
<p>These are the blending options I used:</p>
<ul>
<li>#000000 drop shadow</li>
</ul>
<p><img class="alignnone size-full wp-image-62686" title="dropshadow-base-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/dropshadow-base-musicplayer-tutorial.jpg" alt="" width="485" height="428" /></p>
<ul>
<li>#FFFFFF inner shadow</li>
</ul>
<p><img class="alignnone size-full wp-image-62659" title="innershadow-base-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/innershadow-base-musicplayer-tutorial.jpg" alt="" width="485" height="428" /></p>
<ul>
<li>#f7f7f7 to #ebebeb reversed gradient</li>
</ul>
<p><img class="alignnone size-full wp-image-62645" title="gradient-base-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/gradient-base-musicplayer-tutorial.jpg" alt="" width="485" height="428" /></p>
<ul>
<li>#bcbcbc to #d4d4d4 stroke gradient</li>
</ul>
<p><img class="alignnone size-full wp-image-62683" title="border-base-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/border-base-musicplayer-tutorial.jpg" alt="" width="485" height="428" /></p>
<p>You should have a pretty nice background for our player now, but there’s something missing. So let’s make it more glossy!</p>
<p>Select the rectangular selection tool (M) and make a selection at the bottom of the music<br />
player’s background. Now that you’ve made a selection we can select the gradient tool (G), grab one color for the gradient and keep the other one transparent to accomplish a nice glossy effect.</p>
<p>You can deselect (cmd + d / ctrl + d) your selection after you made the gradient, since the layer underneath the gradient has a gradient overlay it’s not possible to make a clipping mask. So what we basically do is make a selection of the layer underneath and select inverse, you can<br />
make the selection by ctrl or cmd click the box which I gave a red stroke.</p>
<p><img class="alignnone size-full wp-image-62668" title="select-prevlayer-example-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/select-prevlayer-example-musicplayer-tutorial.jpg" alt="" width="208" height="84" /></p>
<h2><strong>What you should have this far</strong></h2>
<p><img class="alignnone size-full wp-image-62679" title="background-done-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/background-done-musicplayer-tutorial.jpg" alt="" width="570" height="201" /></p>
<h2><strong>Lets make the album cover</strong></h2>
<p>You will need to use the first two colors of our palette to make the gradient of the background of the<br />
album cover. Duplicate the background layer of our music player and make sure you put the<br />
layer above the player’s background and glow. Rasterize the layer and make a nice square<br />
selection, select inverse and press delete. You should have something like this:</p>
<p><img class="alignnone size-full wp-image-62677" title="album-cover-grey-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/album-cover-grey-musicplayer-tutorial.jpg" alt="" width="570" height="201" /></p>
<p>But hey &#8211; wasn’t the background of the album cover blue?! Yes it is, so now we have to disable the layer styling and start adding new blending options.</p>
<ul>
<li>#ffffff inner shadow</li>
</ul>
<p><img class="alignnone size-full wp-image-62658" title="innershadow-albumcover-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/innershadow-albumcover-musicplayer-tutorial.jpg" alt="" width="485" height="428" /></p>
<ul>
<li>#2961aa to #45a6fa gradient</li>
</ul>
<p><img class="alignnone size-full wp-image-62644" title="gradient-albumcover-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/gradient-albumcover-musicplayer-tutorial.jpg" alt="" width="485" height="428" /></p>
<ul>
<li>#1c5297 stroke</li>
</ul>
<p><img class="alignnone size-full wp-image-62682" title="border-albumcover-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/border-albumcover-musicplayer-tutorial.jpg" alt="" width="485" height="428" /></p>
<p>Now that we have the base ready we can design the picture frame, just grab your rounded<br />
rectangle tool and make a nice square frame. Please make sure that you give the picture frame area to breathe, I gave my cover a 20 pixel margin on all sides. We will have to use the blending options panel again to give the picture frame a nice border.</p>
<ul>
<li>#3379c6 drop shadow</li>
</ul>
<p><img class="alignnone size-full wp-image-62688" title="dropshadow-pictureframe-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/dropshadow-pictureframe-musicplayer-tutorial.jpg" alt="" width="485" height="428" /></p>
<ul>
<li>#2961a9 inner glow</li>
</ul>
<p><img class="alignnone size-full wp-image-62655" title="innerglow-pictureframe-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/innerglow-pictureframe-musicplayer-tutorial.jpg" alt="" width="485" height="428" /></p>
<ul>
<li>#164c91 stroke</li>
</ul>
<p><img class="alignnone size-full wp-image-62672" title="stroke-pictureframe-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/stroke-pictureframe-musicplayer-tutorial.jpg" alt="" width="485" height="428" /></p>
<p>Great! the frame is ready so now we can add a nice picture of Nadia Ali, just open the image with Photoshop and create a clipping mask, resize the image where needed. But we are not ready yet, we still need to add the glare, select your pen tool and make a nice curve, fill the path (#FFFFFF) and reduce the opacity to 20%.</p>
<p>The last thing you have to do is make a group of your album cover section, select the layers that are related to the album cover and press cmd or ctrl + g, rename to group to whatever you want.</p>
<h3><strong>What you should have this far:</strong></h3>
<p><img class="alignnone size-full wp-image-62676" title="album-cover-done-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/album-cover-done-musicplayer-tutorial.jpg" alt="" width="570" height="201" /></p>
<h2><strong>Making the controls</strong></h2>
<p>What is a player without controls, right? So we are going to make a nice play/pause button, previous and next buttons.</p>
<p>Select your Ellipse tool(U) and drag a nice round circle, make sure that you hold shift. This first circle will be the blue stroke around the pause button, the requires some blending options.</p>
<ul>
<li>#000000 inner glow</li>
</ul>
<p><img class="alignnone size-full wp-image-62654" title="innerglow-pausebutton-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/innerglow-pausebutton-musicplayer-tutorial.jpg" alt="" width="485" height="428" /></p>
<ul>
<li>#2961aa to #45a6fa gradient</li>
</ul>
<p><img class="alignnone size-full wp-image-62650" title="gradient-pausebutton-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/gradient-pausebutton-musicplayer-tutorial.jpg" alt="" width="485" height="428" /></p>
<ul>
<li>#1c5297 stroke</li>
</ul>
<p><img class="alignnone size-full wp-image-62671" title="stroke-pausebutton-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/stroke-pausebutton-musicplayer-tutorial.jpg" alt="" width="485" height="428" /></p>
<p>Okay we have a nice blue circle now, just make a new circle on top of that circle with some<br />
spacing on all sides. this circle will only need a gradient overlay.</p>
<ul>
<li>#e8e8e8 to #f6f6f6 gradient</li>
</ul>
<p><img class="alignnone size-full wp-image-62648" title="gradient-pausebutton-button-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/gradient-pausebutton-button-musicplayer-tutorial.jpg" alt="" width="485" height="428" /><br />
Now you have to add a nice icon to the button to make it look like a play/pause button. Add a nice gradient and inner shadow to the icon.</p>
<ul>
<li>#000000 inner shadow</li>
</ul>
<p><img class="alignnone size-full wp-image-62662" title="innershadow-pausebutton-icon-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/innershadow-pausebutton-icon-musicplayer-tutorial.jpg" alt="" width="485" height="428" /></p>
<ul>
<li>#e8e8e8 to #f6f6f6 gradient</li>
</ul>
<p><img class="alignnone size-full wp-image-62649" title="gradient-pausebutton-icon-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/gradient-pausebutton-icon-musicplayer-tutorial.jpg" alt="" width="485" height="428" /></p>
<p>The play/pause button should be done by now. Now we’re going to make the previous and next buttons, these buttons require the same styling as the play button, so copy the layer style and paste it on those icons.</p>
<p>Also add these layers to a group and call it ‘Controls’.</p>
<h3><strong>What you should have this far:</strong></h3>
<h3><img class="alignnone size-full wp-image-62685" title="controls-done-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/controls-done-musicplayer-tutorial.jpg" alt="" width="570" height="201" /></h3>
<h2><strong>Give the song a name</strong></h2>
<p>This step only requires 2 layers. This step can be accomplished with one single layer but I<br />
personally prefer to make two separate layers.</p>
<p>The text color of the artists &amp; song title is #2c69b4, the font size of the artists is 18pt and the font size of the song title is 12pt. Both are Helvetica neue 55 roman, and both layers have a white 1px drop shadow.</p>
<h3><strong>What you should have this far:</strong></h3>
<p><img class="alignnone size-full wp-image-62678" title="album-title-done-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/album-title-done-musicplayer-tutorial.jpg" alt="" width="570" height="201" /></p>
<h2><strong>Making the love and repeat button</strong></h2>
<p><strong>Make the love button</strong></p>
<p>Let’s start with the love button, the love button has a nice orange gradient when hovered or<br />
activated. Make a button with a nice size with the rounder rectangle tool, please be aware of the icon that we have to be put in later.</p>
<p>Now that you have a rounded rectangle shape you’re ready to give it some blending options.</p>
<ul>
<li>#FFFFFF drop shadow</li>
</ul>
<p><img class="alignnone size-full wp-image-62687" title="dropshadow-lovebutton-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/dropshadow-lovebutton-musicplayer-tutorial.jpg" alt="" width="485" height="428" /></p>
<ul>
<li>#FFFFFF inner shadow</li>
</ul>
<p><img class="alignnone size-full wp-image-62661" title="innershadow-lovebutton-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/innershadow-lovebutton-musicplayer-tutorial.jpg" alt="" width="485" height="428" /></p>
<ul>
<li>#db5825 to #ea6733 gradient</li>
</ul>
<p><img class="alignnone size-full wp-image-62647" title="gradient-lovebutton-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/gradient-lovebutton-musicplayer-tutorial.jpg" alt="" width="485" height="428" /></p>
<ul>
<li>#bd530d stroke</li>
</ul>
<p><img class="alignnone size-full wp-image-62670" title="stroke-lovebutton-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/stroke-lovebutton-musicplayer-tutorial.jpg" alt="" width="485" height="428" /></p>
<p>You should have a nice orange button if you’ve done this, but it’s not shiny enough, so we are going to repeat the step that we did to make the glow for the background and it should be fine.</p>
<p>Now it’s time for the icon to take place, take the custom shape tool (U) and find the heart shape, make sure that you hold shift while you make the icon. After you’ve done that, make sure that it’s white so that we can add a nice inner shadow to the icon.</p>
<ul>
<li>#bf540f inner shadow</li>
</ul>
<p><img class="alignnone size-full wp-image-62653" title="hearticon-orange-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/hearticon-orange-musicplayer-tutorial.jpg" alt="" width="485" height="428" /></p>
<p><strong>Make the repeat button</strong></p>
<p><strong></strong>Okay so now we have the love button. Add the layers that belong to the love button to a group, rename the group to ‘like button’. Duplicate the group and call the group ‘Repeat button, because the button is almost the same as the love button, we only have to redo some blending options.</p>
<p>Remove the heart icon and add a nice repeat icon to the button, also this icon has to be white (you can always make it white by color overlay).</p>
<p><strong>On the button:</strong></p>
<ul>
<li>Replace inner shadow color with #FFFFFF and reduce the opacity to 25%</li>
<li>Replace the gradient with #d3d3d3 to #e2e2e2</li>
<li>Replace the stroke color with: #c1c1c1</li>
</ul>
<p><strong>On the icon:</strong></p>
<ul>
<li>Replace the inner shadow color with #c1c1c1</li>
</ul>
<h3><strong>What you should have this far:</strong></h3>
<p><img class="alignnone size-full wp-image-62664" title="loverepeat-done-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/loverepeat-done-musicplayer-tutorial.jpg" alt="" width="570" height="201" /></p>
<h2><strong>Make the track length bar</strong></h2>
<p>The track length bar we’re going to make has a stream, buffered stream and a played track. But we are going to start off by writing the track length text.</p>
<p>The track length text is written in 2 different colors the passed time text is #717171 and the<br />
complete track length is #2c69b4. Add a 1px white drop shadow to the text and you’re done.</p>
<h3><strong>Total track</strong></h3>
<p>Make sure that you give this bar 20px margin from both sides to make it align well. Make a<br />
shape with the rounded rectangle tool.</p>
<ul>
<li>#000000 inner shadow</li>
</ul>
<p><img class="alignnone size-full wp-image-62663" title="innershadow-tracklength-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/innershadow-tracklength-musicplayer-tutorial.jpg" alt="" width="485" height="428" /></p>
<ul>
<li>#000000 inner shadow</li>
</ul>
<p><img class="alignnone size-full wp-image-62656" title="innerglow-tracklength-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/innerglow-tracklength-musicplayer-tutorial.jpg" alt="" width="485" height="428" /></p>
<ul>
<li>#e0e0e0 to #f1f1f1 gradient</li>
</ul>
<p><img class="alignnone size-full wp-image-62651" title="gradient-tracklength-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/gradient-tracklength-musicplayer-tutorial.jpg" alt="" width="485" height="428" /></p>
<ul>
<li>#f8f8f8 stroke</li>
</ul>
<p><img class="alignnone size-full wp-image-62673" title="stroke-tracklength-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/stroke-tracklength-musicplayer-tutorial.jpg" alt="" width="485" height="428" /></p>
<p><strong>Buffered track</strong></p>
<p>Make sure that this bar is 2px smaller then the total track bar because of the border that we’ll add. Make a shape with the rounded rectangle tool. Make sure that you change the angle of the gradient to 180 degrees.</p>
<ul>
<li>#FFFFFF inner shadow</li>
</ul>
<p><img class="alignnone size-full wp-image-62660" title="innershadow-buffer-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/innershadow-buffer-musicplayer-tutorial.jpg" alt="" width="485" height="428" /></p>
<ul>
<li>#e8e8e8 to #f6f6f6 gradient</li>
</ul>
<p><img class="alignnone size-full wp-image-62646" title="gradient-buffer-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/gradient-buffer-musicplayer-tutorial.jpg" alt="" width="485" height="428" /></p>
<ul>
<li>#8faed6 stroke</li>
</ul>
<p><img class="alignnone size-full wp-image-62669" title="stroke-buffer-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/stroke-buffer-musicplayer-tutorial.jpg" alt="" width="485" height="428" /></p>
<h3><strong>Played track</strong></h3>
<p>Make sure that this bar is 2px smaller then the total track bar because of the border that we’ll add. Make a shape with the rounded rectangle tool. and copy the layer style of the buffered track layer. Make sure that you change the angle of the gradient to 180 degrees.</p>
<ul>
<li>Crank up the opacity of the gradient to 100%</li>
<li>Give the stroke the color #1c5297</li>
</ul>
<h3><strong>What you should have this far:</strong></h3>
<p><img class="alignnone size-full wp-image-62667" title="player-done-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/player-done-musicplayer-tutorial.jpg" alt="" width="570" height="201" /></p>
<h3><strong>Design the tracklist</strong></h3>
<p>Designing the background of the track list is simple, it’s simple because you can just copy the layer style &amp; glow from the background of the player. Just make a wrapper for the theme songs with the rounded rectangle tool and paste the layer style on the layer and don’t forget to add the glow.</p>
<p><img class="alignnone size-full wp-image-62681" title="background-tracklist-done-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/background-tracklist-done-musicplayer-tutorial.jpg" alt="" width="570" height="350" /></p>
<p>Now we only have to display the songs, make another rounded rectangle and make sure that you have 20 pixels free space from both sides. This one will look a a bit different from the others, so you can’t copy a layer style. Please make sure that the background of the shape is white, otherwise the gradient won’t work.</p>
<ul>
<li>#FFFFFF outer glow</li>
</ul>
<p><img class="alignnone size-full wp-image-62666" title="outerglow-tracklisttrack-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/outerglow-tracklisttrack-musicplayer-tutorial.jpg" alt="" width="485" height="428" /></p>
<ul>
<li>#e1e1e1 inner glow</li>
</ul>
<p><img class="alignnone size-full wp-image-62657" title="innerglow-tracklisttrack-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/innerglow-tracklisttrack-musicplayer-tutorial.jpg" alt="" width="485" height="428" /></p>
<ul>
<li>#d7d7d7 to #b4b4b4 reversed gradient</li>
</ul>
<p><img class="alignnone size-full wp-image-62652" title="gradient-tracklisttrack-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/gradient-tracklisttrack-musicplayer-tutorial.jpg" alt="" width="485" height="428" /></p>
<ul>
<li>#d4d4d4 stroke</li>
</ul>
<p><img class="alignnone size-full wp-image-62674" title="stroke-tracklisttrack-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/stroke-tracklisttrack-musicplayer-tutorial.jpg" alt="" width="485" height="428" /></p>
<p>Add the number of the song, and full name of the song in that rectangle and give the text the color #717171 and 1px white drop shadow. This is the same styling that you need to add to the track length indication.</p>
<p>Duplicate the love button and place it in the track’s shape, copy all the layer styles of the repeat button (or you can leave it this way if you want it to stay orange).</p>
<p>Add all the layers that belong to the track to a group.</p>
<h3><strong>What you should have this far:</strong></h3>
<p><img class="alignnone size-full wp-image-62675" title="track-tracklist-musicplayer-tutorial" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/track-tracklist-musicplayer-tutorial.jpg" alt="" width="570" height="350" /></p>
<p>Duplicate this group 3 times and place them underneath each other with a 10 pixel margin. You are almost done now, the only thing that we need to do is design the current song indicator. Pick one song and do the same thing as we did with the background for the album cover and add a Now playing text. This text is written with Helvetica neue 65 medium, has a white color and has a 1px #1c5297 drop shadow.</p>
<p>Yay we’re done! I hope you’ve enjoyed reading this tutorial and I highly recommend you to<br />
make your own suggestions to make sure you’ve understood everything well.</p>
<h3><strong>Final result</strong></h3>
<p><a href="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/final-musicplayer-tutorial.jpg.jpg"><img class="alignnone size-medium wp-image-62643" title="final-musicplayer-tutorial.jpg" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2012/01/final-musicplayer-tutorial.jpg-570x285.jpg" alt="" width="570" height="285" /></a></p>
<p>And we are finished! I hope you love this final outcome and learned a lot throughout this tutorial!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.1stwebdesigner.com/tutorials/music-player-photoshop-tutorial/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Create a Web Hosting Landing Page in Adobe Photoshop</title>
		<link>http://www.1stwebdesigner.com/tutorials/create-web-hosting-landing-page/</link>
		<comments>http://www.1stwebdesigner.com/tutorials/create-web-hosting-landing-page/#comments</comments>
		<pubDate>Thu, 29 Dec 2011 21:00:34 +0000</pubDate>
		<dc:creator>Michael John Burns</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Interface]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web hosting]]></category>
		<category><![CDATA[web interface]]></category>

		<guid isPermaLink="false">http://www.1stwebdesigner.com/?p=61159</guid>
		<description><![CDATA[In this week&#8217;s tutorial we are going to create a Web Hosting Landing Page layout for Besthost as an example. The template will have a simple logo, navigation, slider gallery, package, about us, services, testimonials and footer. Let&#8217;s combine these all together to make an awesome template. I will try my best to make it [...]]]></description>
			<content:encoded><![CDATA[<p>In this week&#8217;s tutorial we are going to create a Web Hosting Landing Page layout for Besthost as an example. The template will have a simple logo, navigation, slider gallery, package, about us, services, testimonials and footer. Let&#8217;s combine these all together to make an awesome template. I will try my best to make it easy for you to follow this tutorial.</p>
<p>So let&#8217;s get started!</p>
<p><span id="more-61159"></span><br />
Here is what we will be making, click on the image for full preview:</p>
<p><a title="Preview" href="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-fullsize.jpg"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-preview.jpg" alt="" /></a></p>
<h2>Resources for this tutorial</h2>
<ul>
<li><a title="Social Icons" href="http://www.iconfi nder.com/icondetails/47470/32/rss_icon" target="_blank">Social Icons</a></li>
<li><a title="wefunction" href="http://wefunction.com/2008/07/function-free-icon-set/" target="_blank"> Wefunction Icons</a></li>
</ul>
<h2>Step 1: Setting up the Document</h2>
<p>Start by creating a <strong>1400px</strong> x <strong>1470px</strong> document in Photoshop.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-1.jpg" alt="" /></p>
<p><strong>Ruler Tool</strong> is very useful for this tutorial make sure that <em>rulers</em> and <em>guides</em> is turned on.</p>
<ul>
<li>Rulers: Ctrl + R</li>
<li>Guides: Ctrl + ;</li>
</ul>
<p>Also one important thing when using <strong>Ruler Tool</strong> is the <strong>Info(Information) Panel</strong>. Use this when you are measuring using the ruler, the information will be shown in the information panel. Make sure that this is shown in your panels at the right. If it is not shown you can access this by going to <em>Windows &#8211; Info</em>.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-2.jpg" alt="" /></p>
<p>The total width of this site will be <strong>960px</strong>. So, let’s create our first guide by going to <em>View &#8211; New Guide</em>, set the value to <strong>220px</strong>. Create another guide and change the value to <strong>1180px</strong>, this will make a total of <strong>960px</strong> in the center of our canvas.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-3.jpg" alt="" /></p>
<h2>Step 2: Working on Background</h2>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-4.jpg" alt="" /></p>
<h3>Header and Slider</h3>
<p>Starting at the top of the canvas select <strong>Rectangle Tool(U)</strong> and create a <strong>100%</strong> by <strong>470px</strong> fill it with <strong>#1560d5</strong>.</p>
<p>Based on the screenshot, our background will contain grid patterns, so let&#8217;s create that. Open up a new window and create a <strong>100px</strong> by <strong>100px</strong> with a <em>Transparent</em> background. Select <strong>Pencil Tool(B)</strong> and set the size to <strong>1px</strong> then, create an <strong>L</strong> shape as shown in the screenshot below. Then go to <em>Edit &#8211; Define Pattern</em></p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-5.jpg" alt="" /></p>
<p>Create another pattern using the L shape, but this time make it <strong>20px</strong> by <strong>20px</strong>.</p>
<p>Now that we have our pattern, create two new layers. For the first layer fill it with the <em>Big Pattern</em> using <strong>Paint Bucket Tool(G)</strong> and from the drop down list on the options panel set it to <strong>Pattern</strong> then select the Big Pattern. Then set the <strong>Layer Mode</strong> &#8211; <em>Softlight</em> <strong>50%</strong>. On the second layer fill it with the smaller pattern, <em>Softlight</em> <strong>20%</strong>.</p>
<p>Result.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-6.jpg" alt="" /></p>
<h3>Newsletter</h3>
<p>Using <strong>Rectangle Tool(U)</strong> create a <strong>100%</strong> by <strong>100px</strong> fill it with <strong>#111111</strong>.</p>
<h3>Content &amp; Copyright</h3>
<p>Just fill the background layer with <strong>#ededed</strong>.</p>
<h3>Footer</h3>
<p>Using <strong>Rectangle Tool(U)</strong> create a <strong>100%</strong> by <strong>260px</strong> fill it with <strong>#1560d5</strong>. Place it <strong>60px</strong> upwards starting from the bottom of the canvas.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-7.jpg" alt="" /></p>
<h2>Step 3: Working on Logo and Navigation</h2>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-8.jpg" alt="" /></p>
<p>Create a <strong>906px</strong> by <strong>60px</strong> shape using <strong>Rounded Rectangle Tool(U)</strong>, Radius <strong>3px</strong> and fill it with <strong>#111111</strong>. Place it <strong>50px</strong> starting from the top.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-9.jpg" alt="" /></p>
<p><strong>Apply This Blending Option</strong></p>
<ul>
<li>Drop Shadow:</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-10.jpg" alt="" /></p>
<ul>
<li>Inner Shadow:</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-11.jpg" alt="" /></p>
<ul>
<li>Gradient Overlay:</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-12.jpg" alt="" /></p>
<ul>
<li>Stroke:</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-13.jpg" alt="" /></p>
<p>Result!</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-14.jpg" alt="" /></p>
<h3>Logo</h3>
<p>We will make a temporary logo. Using <strong>Text Tool(T)</strong> put up the site name. For this example just use <strong>Arial 24pt</strong>.</p>
<ul>
<li>Drop Shadow:</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-15.jpg" alt="" /></p>
<ul>
<li>Bevel and Emboss:</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-16.jpg" alt="" /></p>
<p>Result!</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-17.jpg" alt="" /></p>
<p>Add a slogan using the same tool. Font will be <strong>Museo 12pt</strong> color <strong>#777777</strong>.</p>
<p>Result!</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-18.jpg" alt="" /></p>
<h3>Navigation</h3>
<p>Using <strong>Text Tool(T)</strong> add your links. Use <strong>Arial 14pt</strong> color <strong>#777777</strong>, the active link color will be <strong>#ffffff</strong>. Each link will have <strong>21px</strong> distance on the left and right. Measure it using <strong>Ruler Tool(I)</strong>.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-19.jpg" alt="" /></p>
<p>Next we will add a divider to make the links separate. Using <strong>Line Tool(U)</strong> create a <strong>1px</strong> black Line. Place it at the center as shown in the screenshot below.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-20.jpg" alt="" /></p>
<p>Merge all the shapes and duplicate it. Apply a <strong>#393939 Color Overlay</strong>. Move the layer <strong>1px</strong> from the right. Now apply a <strong>Mask</strong> by clicking the mask icon at the layers panel. Now using <strong>Gradient Tool(G)</strong> black and white. Fill the mask starting from the bottom of the shape towards at the middle.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-21.jpg" alt="" /></p>
<p>For the hover effect the font will be white, then it will have a bottom border <strong>2px</strong> color <strong>#d8d50d</strong>.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-22.jpg" alt="" /></p>
<h2>Step 4: Working on Slider</h2>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-23.jpg" alt="" /></p>
<p>Create a <strong>10px</strong> guide to the right. Using <strong>Text Tool(T)</strong> put up a dummy heading and text. For the heading I used <strong>Oswald 30pt</strong> color <strong>#ffffff</strong> and <strong>#efef14</strong>. For the paragraph I used <strong>Arial 12pt</strong> color <strong>#e2defd</strong>.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-24.jpg" alt="" /></p>
<p>Select <strong>Rounded Rectangle Tool(U)</strong> Create a <strong>180px</strong> by <strong>50px rounded rectangle </strong>set the Radius to <strong>3px</strong> and color to <strong>#eae70e</strong>.</p>
<p><strong>Apply This Blending Option</strong></p>
<ul>
<li>Drop Shadow:</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-25.jpg" alt="" /></p>
<ul>
<li>Inner Shadow:</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-26.jpg" alt="" /></p>
<ul>
<li>Gradient Overlay:</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-27.jpg" alt="" /></p>
<p>Result!</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-28.jpg" alt="" /></p>
<p>Next we will add the arrow icon and the text. For the text I used <strong>Oswald 18pt</strong> color <strong>#ffffff</strong> and color <strong>#9a9603</strong> for the bevel look. For the arrow icon find an arrow from the selection using <strong>Shape Tool(U)</strong>.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-29.jpg" alt="" /></p>
<p>For the rounded circle just create a <strong>30px</strong> by <strong>30px</strong> using <strong>Ellipse Tool(U)</strong> set the <strong>Fill</strong> to <strong>0%</strong> and apply a <strong>3px</strong> stroke <em>inside</em>. For the bevel looking look just duplicate the layers and make the original layer color to <strong>#9a9603</strong>.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-30.jpg" alt="" /></p>
<p>Next adding the controls. Just create a <strong>12px</strong> by <strong>12px</strong> white circle and set the Opacity to <strong>50%</strong>. For the active one just leave it white. For the cpu/servers just grab some stockphotos.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-31.jpg" alt="" /></p>
<h2>Step 5: Working on News Letter Sign Up</h2>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-32.jpg" alt="" /></p>
<p>Grab a mail icon from wefunction icon set and place it as shown. For the Heading text I used <strong>Museo 500 18pt</strong> color <strong>#ffffff</strong>. For the Paragraph I used <strong>Arial 14pt</strong> color <strong>#777777</strong>.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-33.jpg" alt="" /></p>
<p>Next we will create the news letter input and button. To start create a <strong>300px</strong> by <strong>40px</strong> shape using <strong>Rounded Rectangle Tool(U)</strong> Radius <strong>3px</strong>, set the fill color to <strong>#f2f2f2</strong>.</p>
<p><strong>Apply This Blending Option</strong></p>
<ul>
<li>Inner Shadow:</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-34.jpg" alt="" /></p>
<p>Label it with text <strong>Arial 12pt</strong> color <strong>#555555</strong>.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-35.jpg" alt="" /></p>
<p>Next using <strong>Rounded Rectangle Tool(U)</strong> with the same radius create a <strong>90px</strong> by <strong>40px</strong> shape. Fill color will be <strong>#1560d5</strong>. Once the shape is in place using <strong>Direct Selection Tool(U)</strong>, <strong>Delete Anchor Point</strong> and <strong>Add Anchor Point</strong> create a shape as shown in the screenshot below.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-36.jpg" alt="" /></p>
<p><strong>Apply This Blending Option</strong></p>
<ul>
<li>Inner Shadow:</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-37.jpg" alt="" /></p>
<ul>
<li>Gradient Overlay:</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-38.jpg" alt="" /></p>
<ul>
<li>Stroke: #0341a2, #1560d5</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-39.jpg" alt="" /></p>
<p>Label the button with &#8220;SIGNUP&#8221; using <strong>Text Tool(T)</strong> color white and for the bevel look color will be <strong>#0342a3</strong>.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-40.jpg" alt="" /></p>
<p>To finish this button using <strong>150px</strong> Soft Brush color <strong>#ffffff</strong>. Click once in a separate layer and transform it as shown in the screenshot below. Then, set the <strong>Layer Mode</strong> &#8211; <em>Softlight</em>.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-41.jpg" alt="" /></p>
<p>Result</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-42.jpg" alt="" /></p>
<h2>Step 6: Working on Main Content</h2>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-43.jpg" alt="" /></p>
<p>The main content will contain <em>Package Table &amp; About Us</em>. Let&#8217;s work first on <em>Pricing Table.</em></p>
<h3>Pricing Table</h3>
<p>Using <strong>Rounded Rectangle Tool(U)</strong> with the same Radius, create a <strong>690px</strong> by <strong>330px</strong> shape and add a <strong>1px</strong> stroke color <strong>#c3c3c3</strong>.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-44.jpg" alt="" /></p>
<p>Using the same tool create a <strong>690px</strong> by <strong>55px</strong> shape with a fill color of <strong>#1560d5</strong>. Make the bottom part not rounded, and also apply the same blending option as we did in our sign up button.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-45.jpg" alt="" /></p>
<p>Let&#8217;s divide our table into 3 columns 690 / 3 = 230px each column, so go ahead and measure it using <strong>Ruler Tool(I)</strong> then add a <strong>1px</strong> line using <strong>Line Tool(U)</strong> color will be <strong>#c3c3c3</strong>.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-46.jpg" alt="" /></p>
<p>Now let&#8217;s add data in our table. Each table data will have a <strong>40px</strong> of height, white for odd and <strong>#f5f5f5</strong> for even. For the text I used <strong>Arial 12pt</strong> color <strong>#555555</strong>.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-47.jpg" alt="" /></p>
<p>Next let&#8217;s create a button for each column. Button size will be <strong>100px</strong> by <strong>30px</strong>, the same font but font size is <strong>13pt</strong>. For the styles just copy what we applied on sign up button and add this blending option.</p>
<ul>
<li>Drop Shadow:</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-48.jpg" alt="" /></p>
<p>Apply also the highlights effect that we did previously.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-49.jpg" alt="" /></p>
<p>Now let&#8217;s work on the header part. Using <strong>Line Tool(U)</strong> create a <strong>1px</strong> line color will be <strong>#0341a3</strong>. Next, using <strong>Text Tool(T)</strong> add the heading text as shown in the screenshot below.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-50.jpg" alt="" /></p>
<p>Apply the highlights effect.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-51.jpg" alt="" /></p>
<h3>About Us</h3>
<p>Using <strong>Text Tool(T)</strong> add the heading text and paragraph. For heading font will be <strong>Museo 18pt</strong> color <strong>#2c2c2c</strong>, and for the paragraph <strong>Arial 12pt</strong> color <strong>#555555</strong>.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-52.jpg" alt="" /></p>
<h2>Step 7: Working on Sidebar</h2>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-53.jpg" alt="" /></p>
<p>The sidebar will contain a blocks. Let&#8217;s work first on the first block</p>
<h3>Services</h3>
<p>Using <strong>Rounded Rectangle Tool(U)</strong> create a <strong>250px</strong> by <strong>225px</strong> shape. Apply a <strong>1px</strong> inside stroke color <strong>#c3c3c3</strong>.</p>
<p>Next open up wefunction iconset and grab 3 icons resize it and align it as shown in the screenshot below.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-54.jpg" alt="" /></p>
<h3>Testimonials</h3>
<p>Using the same tool create a <strong>250px</strong> by <strong>220px</strong> shape with a fill color of <strong>#111111</strong>. Apply a <strong>1px</strong> inside stroke color <strong>#000000</strong>. Refer to the screenshot below for the text format and colors.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-55.jpg" alt="" /></p>
<h2>Step 8: Working on Footer</h2>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-56.jpg" alt="" /></p>
<p>The Footer will be divided into 4 columns <em>Quick Links, From the blog, Quick Contact, and Follow us</em>. Each column will have a <strong>20px</strong> distance from the right except for the last one.</p>
<h3>Quick Links</h3>
<p>The width will be <strong>320px</strong>. The will contain two column of links each column will have a width of <strong>150px</strong> and a distance of <strong>20px</strong>.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-57.jpg" alt="" /></p>
<h3>From The Blog</h3>
<p>The width will be <strong>300px</strong>. Using <strong>Rectangle Tool(U)</strong> create a <strong>49px</strong> by <strong>49px</strong> shape. Beside it <strong>20px</strong> from the right will be the post title and date published.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-58.jpg" alt="" /></p>
<h3>Quick Contact</h3>
<p>Width will be <strong>150px</strong>, the same text and spacing.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-59.jpg" alt="" /></p>
<h3>Follow Us</h3>
<p>Width will be <strong>130px</strong> and place the social icons as shown in the screenshot below.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-60.jpg" alt="" /></p>
<p>And lastly add the copyright text on the bottom left part and links on the bottom right part. Font will be <strong>Arial 11pt</strong> color <strong>#555555</strong>.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-61.jpg" alt="" /></p>
<h2>Finally We&#8217;re Done!</h2>
<p><a title="Preview" href="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-fullsize.jpg"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/besthost-tutorial-img-preview.jpg" alt="" /></a></p>
<p>I hope you learn something from this tutorial and I hope this helps. If you have questions feel free to drop it below. Happy Holidays everyone. Godbless!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.1stwebdesigner.com/tutorials/create-web-hosting-landing-page/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>4 Simple Steps To Make Silhouettes Using Photoshop</title>
		<link>http://www.1stwebdesigner.com/tutorials/make-silhouette-using-photoshop/</link>
		<comments>http://www.1stwebdesigner.com/tutorials/make-silhouette-using-photoshop/#comments</comments>
		<pubDate>Wed, 21 Dec 2011 21:00:39 +0000</pubDate>
		<dc:creator>prit</dc:creator>
				<category><![CDATA[Photo Effects]]></category>
		<category><![CDATA[Quick Tips]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[banner]]></category>
		<category><![CDATA[effects]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[Silhouette]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.1stwebdesigner.com/?p=60422</guid>
		<description><![CDATA[Silhouettes as an art form originates back to as early as 18th century drawing its name from a French minister Étienne de Silhouette who imposed heavy economic cuts on French people. Quite symbolically austere outline portraits which became popular in the same time period started to be referred as Silhouettes. Silhouettes art had tremendous popularity [...]]]></description>
			<content:encoded><![CDATA[<p>Silhouettes as an art form originates back to as early as 18th century drawing its name from a French minister <em>Étienne de Silhouette</em> who imposed heavy economic cuts on French people. Quite symbolically austere outline portraits which became popular in the same time period started to be referred as Silhouettes.</p>
<p>Silhouettes art had tremendous popularity which has grown over years and is now associated more with images depicting fashion and fitness. Traditional ways of making Silhouettes are somewhat complex which involve cardboard and paints, but thanks to two wonderful inventions of mankind – <em>Photoshop</em> and <em>Wacom</em> things are much simpler now.</p>
<p>In this tutorial I will take you through some beautiful examples for inspiration and then we will proceed to make a silhouette from scratch.</p>
<p><span id="more-60422"></span></p>
<h2>Step 1: Inspiration</h2>
<hr style="margin-left: 20px;" align="left" width="60%" />
<h4><strong>Silhouettes in movies</strong><br />
<img class="alignnone size-full wp-image-60597" title="Making_Silhouette_using_photoshop_silhouettes_in_movies" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/Making_Silhouette_using_photoshop_silhouettes_in_movies.jpg" alt="silhouettes in movies" width="570" height="210" /></h4>
<p>The famous silhouetted image of Elliot and E.T. encircled by the moon depicted in Steven Spielberg’s <em>E.T.</em> It is now a part of the logo of his film and television company Amblin Entertainment.</p>
<p>The second one is of Alfred Hitchcock in American television series Alfred Hitchcock Presents in which he himself appears in a silhouette form in the opening screen and in a number of scenes as well.</p>
<h4><strong>Silhouettes as traffic symbols</strong><br />
<img class="alignnone size-full wp-image-60598" title="Making_Silhouette_using_photoshop_silhouettes_in_traffic_symbols" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/Making_Silhouette_using_photoshop_silhouettes_in_traffic_symbols.jpg" alt="silhouettes as traffic symbols" width="570" height="210" /></h4>
<p>The first one is a Japanese railroad crossing signal which uses a silhouette of a steam engine. The second one is from Canada which warns drivers for speeding cameras. The third one is a Swedish moose warning signal, portraying silhouette of a moose, a typical encounter you might experience while driving in Sweden!</p>
<h4><strong>Silhouettes of public figures</strong></h4>
<p><img class="alignnone size-full wp-image-60599" title="Making_Silhouette_using_photoshop_silhouettes_of_public_figures" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/Making_Silhouette_using_photoshop_silhouettes_of_public_figures.jpg" alt="Silhouettes of public figures" width="570" height="210" /><br />
The first one is of English novelist Jane Austen, author of famous titles like Pride and Prejudice (1813) and Sense and Sensibility (1811) . Her silhouette is attributed to 19th century artist Mrs. Collins and is displayed at the National Portrait Gallery, London. The second one is of silhouette depiction of Queen Victoria used as decoration in the London Underground. The third one is artwork of designer Jonathan Mak depicting Steve Jobs on the apple logo, which went viral on the internet few days ago.</p>
<h2>Step 2: Sketch</h2>
<hr style="margin-left: 20px;" align="left" width="60%" />
<p>Grab a pencil and a sheet of paper and start sketching your ideas. No need to sketch in detail as we are going to use only the outline for making the silhouette, but make sure that the dimensions and/or anatomy is correct. In my case my client wanted something like a person using a phone. I made a few sketches, and drew a dark outline around them.<br />
<img class="alignnone size-medium wp-image-60684" title="Making_Silhouette_using_photoshop_sketches" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/Making_Silhouette_using_photoshop_sketches-570x227.jpg" alt="Silhouette sketch outline" width="570" height="227" /></p>
<p>The first idea depicts a lady walking a dog, looking at her phone. I imagined a background with neighborhood depiction like houses etc. which I can add to the silhouette later on. The second idea is of a guy standing and looking at his phone. In this case I imagined a park or similar setting with street lights etc. as background.</p>
<h2>Step 3: Scan</h2>
<hr style="margin-left: 20px;" align="left" width="60%" />
<p>Draw a thicker outline on your sketch and scan it. After scanning I found that the silhouette of the lady with dog appeared better on-screen, so I went ahead with it.</p>
<p><img class="alignnone size-full wp-image-60683" title="Making_Silhouette_using_photoshop_scan_choose" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/Making_Silhouette_using_photoshop_scan_choose.jpg" alt="Scan" width="570" height="282" /></p>
<h2>Step 4: Digitally Enhance</h2>
<hr style="margin-left: 20px;" align="left" width="60%" />
<p>Open up the scanned image in Photoshop (or similar editor) and plug-in your Wacom (or similar device).</p>
<p><strong>a. Outline</strong></p>
<p>Create a new layer, select brush tool 2-3px, and set a contrasting foreground color (like red, so that it visible) and using the Wacom pen outline the image.</p>
<p><img class="alignnone size-full wp-image-60580" title="Making_Silhouette_using_photoshop_scan" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/Making_Silhouette_using_photoshop_scan.jpg" alt="Scan" width="570" height="330" /></p>
<p><strong>b. Fill the outline with the same color.</strong></p>
<p><img class="alignnone size-medium wp-image-60575" title="Making_Silhouette_using_photoshop_fill" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/Making_Silhouette_using_photoshop_fill-570x329.jpg" alt="Fill silhouette" width="570" height="329" /></p>
<p><strong>c. Duplicate the silhouette</strong> in a new layer, use the select tool to select the entire silhouette and fill it with #00000. In this step you can zoom into the image and edit minor flaws and smooth the outline with careful movements of the brush.</p>
<p><img class="alignnone size-medium wp-image-60581" title="Making_Silhouette_using_photoshop_select" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/Making_Silhouette_using_photoshop_select-570x349.jpg" alt="Select silhouette" width="570" height="349" /></p>
<p><img class="alignnone size-medium wp-image-60579" title="Making_Silhouette_using_photoshop_save" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/Making_Silhouette_using_photoshop_save-570x329.jpg" alt="Fill and save" width="570" height="329" /></p>
<p>If your silhouette consists of two or more elements, it&#8217;s easier if you handle them one by one. In my case I divided the task into three – the lady, the leash and the dog. So I repeated step a to c two more times and here is what the silhouette looks now.</p>
<p>So now the silhouette is done, you can save it as a vector and then proceed to using it in a banner or an image as required.</p>
<p><strong>d. As I said before,</strong> I imagined the entire picture to be some sort of neighborhood, so created an apartment block and duplicated to make a couple of them for the background.</p>
<p><img class="alignnone size-medium wp-image-60577" title="Making_Silhouette_using_photoshop_house" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/Making_Silhouette_using_photoshop_house-570x329.jpg" alt="" width="570" height="329" /></p>
<p><strong>e. Now add the silhouette to the background</strong></p>
<p><img class="alignnone size-medium wp-image-60578" title="Making_Silhouette_using_photoshop_lady_and_house" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/Making_Silhouette_using_photoshop_lady_and_house-570x317.jpg" alt="silhouette and background" width="570" height="317" /></p>
<p><strong>f. Once the silhouettes and the background is ready</strong>, its time to work on the layout of the banner or the final image as required. Since this project was a banner for website I kept width as 900px and height as 357px. The elements that I added in this stage are speech bubbles which contains a specially designed <em>Facebook</em> button for the app and text.</p>
<p><img class="alignnone size-medium wp-image-60574" title="Making_Silhouette_using_photoshop_all_elements" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/Making_Silhouette_using_photoshop_all_elements-570x329.jpg" alt="silhouette on banner" width="570" height="329" /></p>
<p>The final banner looks like this. The banner depicts a <em>Facebook</em> enabled e-commerce app (<a href="http://dragdropshop.com/" target="_blank">www.dragdropshop.com</a>), and will be a part of a sliding js carousel on client&#8217;s new homepage.</p>
<p><img class="alignnone size-full wp-image-60576" title="Making_Silhouette_using_photoshop_final_banner" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/Making_Silhouette_using_photoshop_final_banner.jpg" alt="final banner with silhouette" width="570" height="226" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.1stwebdesigner.com/tutorials/make-silhouette-using-photoshop/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Creative Christmas Gift For Geek Lovers &#8211; Web &amp; Mobile App</title>
		<link>http://www.1stwebdesigner.com/tutorials/creative-christmas-gift-for-geek-lovers/</link>
		<comments>http://www.1stwebdesigner.com/tutorials/creative-christmas-gift-for-geek-lovers/#comments</comments>
		<pubDate>Wed, 21 Dec 2011 10:00:58 +0000</pubDate>
		<dc:creator>Rochester Oliveira</dc:creator>
				<category><![CDATA[Quick Tips]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Interface]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[mobile app]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[web app]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web interface]]></category>

		<guid isPermaLink="false">http://www.1stwebdesigner.com/?p=60410</guid>
		<description><![CDATA[Oh, Christmas. The magic time when you spend all the money you&#8217;ve been saving the whole year. Oh, and we have all that Christmas Spirit, of course. Now, you probably want to spend a lot on your soul mate&#8217;s gift, to show her how deep is your love. Yeah, money can buy cool things, but [...]]]></description>
			<content:encoded><![CDATA[<p>Oh, Christmas. The magic time when you spend all the money you&#8217;ve been saving the whole year. Oh, and we have all that Christmas Spirit, of course.</p>
<p>Now, you probably want to spend a lot on your soul mate&#8217;s gift, to show her <a href="http://www.youtube.com/watch?v=1Mhm9j05N7E">how deep is your love</a>.</p>
<p>Yeah, money can buy cool things, but guess what: almost every year I make my own gifts for my girlfriend (but I always have to buy something else anyway). And I feel that she just loves when I do something by myself instead of just buying it (unless shoes, she wouldn&#8217;t like if I made her a shoe). So I&#8217;ll show you, dear Padawan, how to make a cool one-page-gift for anybody that you like.</p>
<p>Our goal here is to do a simple &#8220;slider&#8221;, where a lot of messages and pictures that you like are shown. In the meantime you&#8217;ll learn a little bit about design, jQuery and CSS3.</p>
<p>So, let&#8217;s rock!</p>
<p><span id="more-60410"></span></p>
<h2>Demo &amp; Download</h2>
<hr style="margin-left: 20px;" align="left" width="60%" />
<p>This is our final effect. You can check out our <strong><a href="http://dl.dropbox.com/u/35995890/christmas2011/index.html" target="_blank">live demo</a> </strong>and <strong><a href="http://dl.dropbox.com/u/35995890/christmas2011/christmas-gift.zip" target="_blank">download </a></strong>our source files and start playing with it.</p>
<p><img class="alignnone size-full wp-image-60728" title="demo" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/demo.jpg" alt="" width="650" height="384" /></p>
<h2>Design stuff</h2>
<hr style="margin-left: 20px;" align="left" width="60%" />
<p>First of all we&#8217;ll need a cool background. Snow is not an option for me, since in Brazil we barely know what it&#8217;s like. So I&#8217;d rather pick a cool christmas tree and change it a little. I&#8217;ve found a couple of cool images to use in<br />
<a href="http://www.1stwebdesigner.com/freebies/christmas-wallpapers-web-design-and-fonts/">Salman&#8217;s article full of Christmas resources</a>. I&#8217;ve chosen one of them, adjusted its colors, sliced its background and cut the Christmas tree itself.</p>
<p>As our effect&#8217;s start point (slider and this stuff) we&#8217;ll use a rocking tutorial on how to do an <a href="http://rockingcode.com/tutorial/john-lennon-tribute-amazing-slideshow/">Amazing Slideshow (John Lennnon Tribute</a>). We&#8217;ll change it a little bit, but the main effect is just amazing :)</p>
<p>Now we need a good looking font for our design. I suggest you to go with <a href="http://www.losttype.com/font/?name=carto">Cartoon</a>. Then just <a href="http://www.fontsquirrel.com/fontface/generator">generate its webfont</a> and we can include it in our basic HTML (that one downloaded from Rocking Code).</p>
<p>Our basic HTML will be like this:</p>
<pre class="brush: php; title: ; notranslate">
&lt;!DOCTYPE html&gt;
&lt;html lang=&quot;en&quot;&gt;
&lt;head&gt;
&lt;meta charset=&quot;utf-8&quot; /&gt;
&lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge,chrome=1&quot; /&gt;

&lt;title&gt;Happy Christmas!&lt;/title&gt;
&lt;meta name=&quot;description&quot; content=&quot;Cool DIY Christmas Gift for geek lovers.&quot; /&gt;
&lt;meta name=&quot;author&quot; content=&quot;Rochester Oliveira - 1stWebDesigner.com&quot; /&gt;
&lt;link rel=&quot;shortcut icon&quot; type=&quot;image/x-icon&quot; href=&quot;favicon.ico&quot;&gt;

&lt;link rel=&quot;stylesheet&quot; href=&quot;css/style.css?v=2&quot; /&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;div id=&quot;tree&quot;&gt;
&lt;div id=&quot;container&quot;&gt;
&lt;h1&gt;Happy Christmas!&lt;/h1&gt;
&lt;div id=&quot;masonry&quot;&gt;
&lt;div&gt;
&lt;img src=&quot;http://placekitten.com/200/300&quot; alt=&quot;Cute kitten - http://placekitten.com/200/300&quot; /&gt;
&lt;div&gt;Caption text.&lt;/div&gt;
&lt;/div&gt;
[... more .item divs]
&lt;/div&gt;
&lt;/div&gt;
&lt;!--! end of #container --&gt;
&lt;/div&gt;
&lt;!-- JavaScript at the bottom for fast page loading --&gt;

&lt;!-- Grab Google CDN's jQuery, with a protocol relative URL; fall back to local if necessary --&gt;
&lt;script src=&quot;//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.js&quot;&gt;&lt;/script&gt;
&lt;script&gt;window.jQuery || document.write(&quot;&lt;script src='js/libs/jquery-1.7.1.min.js'&gt;\x3C/script&gt;&quot;)&lt;/script&gt;

&lt;!-- scripts--&gt;
&lt;script src=&quot;js/jquery.images.loaded.js&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;js/jquery.masonry.min.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
//[slideshow action scripts]
&lt;/script&gt;
&lt;!-- end scripts--&gt;

&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>And basic CSS:</p>
<pre class="brush: php; title: ; notranslate">body {
	background: #feffef url(&quot;../img/bg.jpg&quot;) repeat-x center bottom;
 }
 #tree {
	position: relative;
	width: 100%;
	height: 100%;
	background: #feffef url(&quot;../img/bg-tree.jpg&quot;) repeat-x center bottom;
 }
#container {
	position: relative;
	width: 880px;
	margin: 15px auto;
	padding: 20px 20px 20px 30px;
	background-color: transparent;
	background-color: rgba(255,255,255,0.5);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#32ffffff,endColorstr=#32ffffff);
	-ms-filter: &quot;progid:DXImageTransform.Microsoft.gradient(startColorstr=#32ffffff,endColorstr=#32ffffff)&quot;;
	-moz-box-shadow: 0 0 5px #B8B8B8; /* Firefox */
	-webkit-box-shadow: 0 0 5px #B8B8B8; /* Safari, Chrome */
	box-shadow: 0 0 5px #B8B8B8; /* CSS3 */
}
	#container h1 {
		font-family: 'CartonSlab';
		font-size: 20px;
	}
	.item {
		position: relative;
		padding: 0;
		width: 200px;
		margin-bottom: 20px;
		float: left;
		background: #000;
		overflow: hidden;
	}
		.item img {
			width: 100%;
			cursor: pointer;
		}
	.selected {
		border: 2px solid #fff;
		-moz-box-shadow: 0 0 3px #000; /* Firefox */
		-webkit-box-shadow: 0 0 3px #000; /* Safari, Chrome */
		box-shadow: 0 0 3px #000; /* CSS3 */
	}</pre>
<p>As you may have noticed, our tree is done with a different HTML element, so it won&#8217;t affect our slideshow effect at all.</p>
<p>Oh, and don&#8217;t forget to <a href="http://tools.dynamicdrive.com/favicon">generate favicons</a>. They are really cool.</p>
<h2>Setting up pictures and captions</h2>
<hr style="margin-left: 20px;" align="left" width="60%" />
<p>One thing that will really impress your date is to choose romantic messages and cute stuff. So be ready to search for:</p>
<ul>
<li>Cat pictures (demo with a lot of them)</li>
<li>Hearts</li>
<li>Landscapes</li>
<li>Your own pictures</li>
</ul>
<p>I&#8217;ve found a couple of good quotes on <a href="http://www.quotationspage.com/subjects/love/">QuotationsPage</a> &amp; <a href="http://www.romanticlovemessages.com/">RomanticloveMessages</a> and have written my own ones (this is really important).</p>
<p>Then, let&#8217;s put them inside our HTML with proper markup. We&#8217;ll have captions positioned on top, middle and bottom, this way:</p>
<pre class="brush: php; title: ; notranslate">&lt;div&gt;
&lt;img src=&quot;http://placekitten.com/200/300&quot; alt=&quot;Cute kitten - http://placekitten.com/200/300&quot; /&gt;
&lt;div&gt;You may not care for me like I care for you But if you ever need me, I will always be around for you.&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;img src=&quot;img/kitten.jpg&quot; alt=&quot;Cute kitten - http://www.sxc.hu/photo/1369754&quot; /&gt;
&lt;div&gt;It's hard to tell your mind to stop loving someone when your heart still does. &lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;img src=&quot;img/kitten1.jpg&quot; alt=&quot;Cute kitten - http://www.sxc.hu/photo/555320&quot; /&gt;
&lt;div&gt;Meeting you was fate, but falling in love with you was beyond my control. &lt;/div&gt;
&lt;/div&gt;</pre>
<p>And CSS will be:</p>
<pre class="brush: php; title: ; notranslate">.item .caption {
	position: absolute;
	top: 0;
	padding: 10px 20px;
	font-family: 'CartonSlab';
	font-size: 15px;
	color: #ffffff;
	background-color: transparent;
	background-color: rgba(0,0,0,0.5);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#32000000,endColorstr=#32000000);
	-ms-filter: &quot;progid:DXImageTransform.Microsoft.gradient(startColorstr=#32000000,endColorstr=#32000000)&quot;;
}
.item .bottom {
	top: auto;
	bottom: 0;
}
.item .middle {
	top: 50%;
}
</pre>
<h2>Coding Slideshow JS</h2>
<hr style="margin-left: 20px;" align="left" width="60%" />
<p>Our basic logic will be:</p>
<ul>
<li>It&#8217;ll hide all captions and reduce opacity for images on start;</li>
<li>It&#8217;ll automatically expand box and show caption, one at a time;</li>
<li>When hovering images, it&#8217;ll increase its opacity and automatically stop our timer;</li>
<li>When the person clicks on an image, it&#8217;ll expand its box;</li>
</ul>
<p>First, we&#8217;ll make sure that no function will run before all images are loaded (it wouldn&#8217;t look good, trust me). This code will do the trick (since we&#8217;ve uploaded jquery.images.loaded.js):</p>
<pre class="brush: php; title: ; notranslate">//defaults
var $container = $('#masonry'), $items = $container.find(&quot;.item&quot;), count = $items.length, current = 0, lowOpacity = 0.3, highOpacity = 1, timer = &quot;&quot;;

$container.imagesLoaded(function(){
	$container.masonry({
		itemSelector : '.item',
		columnWidth : 220,
		isAnimated: true
	});

	init();
});
</pre>
<p>This init() will do our first, third and fourth bullet points. Let&#8217;s go through it:</p>
<pre class="brush: php; title: ; notranslate">function init() {
	//let's set all images to dark and bind their hover
	$items.find(&quot;img&quot;).each(function(index){
		//hide captions
		$($items[index]).find(&quot;.caption&quot;).fadeOut();
		//images setup
		$(this)
			.animate( { opacity: lowOpacity } )
			.hover(
				function(){
					$(this).stop().animate( { opacity: highOpacity } );
					stopTimer();
				}, function() {
					startTimer();
					if(index != current) {
						$(this).stop().animate( { opacity: lowOpacity } );
					}
				}
			)
			.click(
				function() {
					expand(index);
				}
			);
	});
	expand(0);
	startTimer();
}</pre>
<p>The coolest thing here is all those chained functions. They improve performance a lot and if you break lines between them (always before &#8220;.&#8221;) it&#8217;ll be much better to understand.</p>
<p>Now we have two important functions, startTimer() and stopTimer(). I&#8217;m pretty sure you know what do they do. We&#8217;ll use setInterval and clearInterval to control our timer:</p>
<pre class="brush: php; title: ; notranslate">function startTimer() {
	timer = window.setInterval( &quot;next()&quot;, 6000); // it'll call next function every 6 seconds and will identify this interval as &quot;timer&quot;
}
function stopTimer() {
	clearInterval(timer); //we'll kill timer :(
}</pre>
<p>Now we called &#8220;next&#8221; function every 6 seconds let&#8217;s see what it does:</p>
<pre class="brush: php; title: ; notranslate">function next() {
	//if we add one item to current we'll still below our total count of numbers?
	if ( (current ++) &lt; count) {
		expand(current++);
	} else {
		expand(0);
	}
}</pre>
<p>Now what you&#8217;ve been waiting for: expand()</p>
<pre class="brush: php; title: ; notranslate">//this is what makes our current box bigger and the ones before it smaller
function expand(item) {
	var curItem = $(&quot;.selected&quot;), $img = &quot;&quot;;
	if(curItem) {
		curItem.animate({&quot;width&quot;: &quot;200px&quot;}, function(){
			$img = $(this).find(&quot;img&quot;);
			imgOff($img);
			curItem.find(&quot;.caption&quot;).fadeOut();
		}).removeClass(&quot;selected&quot;);
	}
	$( $items[item] ).animate( {&quot;width&quot;: &quot;420px&quot;}, function(){
		$img = $(this).find(&quot;img&quot;);
		imgOn($img);
		$(this).addClass(&quot;selected&quot;);
		$container.masonry( 'reload' );
		$($items[item]).find(&quot;.caption&quot;).fadeIn();
	} );
	current = item;
}
/*** functions used above **/
//let's make our current imag look better
function imgOn(img) {
	img.each(function(){
		$(this).animate( { opacity: highOpacity } );
	});
}
//let's turn off these images
function imgOff(img) {
	img.each(function(){
		$(this).animate( { opacity: lowOpacity } );
	});
}</pre>
<p>Ok, then, let&#8217;s group all this stuff inside one script call, and we&#8217;re done!</p>
<pre class="brush: php; title: ; notranslate">var $container = $('#masonry'), $items = $container.find(&quot;.item&quot;), count = $items.length, current = 0, lowOpacity = 0.3, highOpacity = 1, timer = &quot;&quot;;
$container.imagesLoaded(function(){
	$container.masonry({
		itemSelector : '.item',
		columnWidth : 220,
		isAnimated: true
	});

	init();
});
//runs qwiki function for fisrt item so we'll start loop
function init() {
	//let's set all images to dark and bind their hover
	$items.find(&quot;img&quot;).each(function(index){
		//hide captions
		$($items[index]).find(&quot;.caption&quot;).fadeOut();
		//images setup
		$(this)
			.animate( { opacity: lowOpacity } )
			.hover(
				function(){
					$(this).stop().animate( { opacity: highOpacity } );
					stopTimer();
				}, function() {
					startTimer();
					if(index != current) {
						$(this).stop().animate( { opacity: lowOpacity } );
					}
				}
			)
			.click(
				function() {
					expand(index);
				}
			);
	});
	expand(0);
	startTimer();
}
function startTimer() {
	timer = window.setInterval( &quot;next()&quot;, 6000);
}
function stopTimer() {
	clearInterval(timer);
}
// let's go on with next item if we didn't reach end of our set of items
function next() {
	if ( (current ++) &lt; count) {
		expand(current++);
	} else {
		expand(0);
	}
}
//let's make our current imag look better
function imgOn(img) {
	img.each(function(){
		$(this).animate( { opacity: highOpacity } );
	});
}
//let's turn off these images
function imgOff(img) {
	img.each(function(){
		$(this).animate( { opacity: lowOpacity } );
	});
}
//this is what makes our current box bigger and the ones before it smaller
function expand(item) {
	var curItem = $(&quot;.selected&quot;), $img = &quot;&quot;;
	if(curItem) {
		curItem.animate({&quot;width&quot;: &quot;200px&quot;}, function(){
			$img = $(this).find(&quot;img&quot;);
			imgOff($img);
			curItem.find(&quot;.caption&quot;).fadeOut();
		}).removeClass(&quot;selected&quot;);
	}
	$( $items[item] ).animate( {&quot;width&quot;: &quot;420px&quot;}, function(){
		$img = $(this).find(&quot;img&quot;);
		imgOn($img);
		$(this).addClass(&quot;selected&quot;);
		$container.masonry( 'reload' );
		$($items[item]).find(&quot;.caption&quot;).fadeIn();
	} );
	current = item;
}</pre>
<h2>Personal touch: My horrible voice as background music</h2>
<hr style="margin-left: 20px;" align="left" width="60%" />
<p>I&#8217;ve been learning guitar for 1 month. I know how to play two songs (&#8220;In spite of all the danger&#8221; and &#8220;Stand by me&#8221;) and I sing really, really bad. But when I showed my girlfriend my first &#8220;demo&#8221; record, well, I understood why so many guys want to learn guitar.</p>
<p>This is my final personal touch, and you could do so with a cool picture, a recorded mesage (video, maybe), or whatever you can imagine.</p>
<h2>What do you think?</h2>
<hr style="margin-left: 20px;" align="left" width="60%" />
<p>So, have you liked it? Are you planning to do something really special to the ones you love most? Let me hear your thoughts!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.1stwebdesigner.com/tutorials/creative-christmas-gift-for-geek-lovers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create Elegant Tags With Sliding Post Count For WordPress</title>
		<link>http://www.1stwebdesigner.com/wordpress/create-tags-with-sliding-post-count-wordpress/</link>
		<comments>http://www.1stwebdesigner.com/wordpress/create-tags-with-sliding-post-count-wordpress/#comments</comments>
		<pubDate>Mon, 12 Dec 2011 10:00:35 +0000</pubDate>
		<dc:creator>Rochester Oliveira</dc:creator>
				<category><![CDATA[HowTos]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[customize wordpress]]></category>
		<category><![CDATA[effects]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[sliding tags]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.1stwebdesigner.com/?p=60126</guid>
		<description><![CDATA[Tired of the boring category style being always same, like a mini menu? Tired of items arranged horizontally or vertically, styled always the same way? Yes, I&#8217;m tired of it too. So let&#8217;s make things more interesting now. Our starting point will be a cool sliding tags design made by Thomas Bosée. Then we&#8217;ll learn [...]]]></description>
			<content:encoded><![CDATA[<p>Tired of the boring category style being always same, like a mini menu? Tired of items arranged horizontally or vertically, styled always the same way? Yes, I&#8217;m tired of it too. So let&#8217;s make things more interesting now.</p>
<p>Our starting point will be <a href="http://365psd.com/day/2-213/">a cool sliding tags design</a> made by <a href="http://madebythomas.com/">Thomas Bosée</a>. Then we&#8217;ll learn how to use WordPress wp_list_categories function, how to edit its result, how to code CSS and finally a little of jQuery &#8220;Black Magic&#8221;.</p>
<p>So, let&#8217;s rock!</p>
<p><span id="more-60126"></span></p>
<h2>Demo first, please</h2>
<hr style="margin-left: 20px;" align="left" width="60%" />
<p>So our goal is to achieve the effect seen on this <a href="http://dl.dropbox.com/u/35995890/Slidingtags/index.html" target="_blank">demo</a>. As usual you can <a href="http://dl.dropbox.com/u/35995890/Slidingtags/wordpress-sliding-category-FINAL.zip" target="_blank">download our sample files</a> and edit as you want!</p>
<p><img class="alignnone size-full wp-image-60179" title="demo" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/12/demo.png" alt="" width="512" height="183" /></p>
<h2>Wp_list_categories()</h2>
<hr style="margin-left: 20px;" align="left" width="60%" />
<p>Wp_list_categories is a function that gets all categories and has a few useful parameters. We&#8217;ll be using a few of them:</p>
<ul>
<li><strong>echo</strong> &#8211; whether the results should or shouldn&#8217;t be displayed. This is quite useful because we&#8217;ll have to adjust results a little bit</li>
<li><strong>show_count</strong> &#8211; this one toggles the display of current post count in each category</li>
<li><strong>title_li</strong> &#8211; since the default value is a big &lt;h2&gt;Categories&lt;/h2&gt; we&#8217;ll change it</li>
<li><strong>depth</strong> &#8211; It&#8217;ll be better not to have children categories this time. But if you want it just put it as zero and change &#8216;hierarchical&#8217; to false</li>
</ul>
<p>Our php will be like this:</p>
<pre class="brush: php; title: ; notranslate">&lt;ul&gt;
&lt;?php
	$args = array (
		'echo' =&gt; 0,
		'show_count' =&gt; 1,
		'title_li' =&gt; '',
		'depth' =&gt; 1
	);
	$variable = wp_list_categories($args);
	echo $variable;
?&gt;
&lt;/ul&gt;</pre>
<p>And this PHP outputs this HTML:</p>
<pre class="brush: php; title: ; notranslate">&lt;ul id=&quot;category&quot;&gt;
	&lt;li class=&quot;cat-item cat-item-8&quot;&gt;&lt;a href=&quot;#design&quot;&gt;design&lt;/a&gt; (17)&lt;/li&gt;
	&lt;li class=&quot;cat-item cat-item-6&quot;&gt;&lt;a href=&quot;#icon&quot;&gt;icon&lt;/a&gt; (9)&lt;/li&gt;
	&lt;li class=&quot;cat-item cat-item-7&quot;&gt;&lt;a href=&quot;#grid&quot;&gt;grid&lt;/a&gt; (3)&lt;/li&gt;
	&lt;li class=&quot;cat-item cat-item-9&quot;&gt;&lt;a href=&quot;#clean&quot;&gt;clean&lt;/a&gt; (25)&lt;/li&gt;
	&lt;li class=&quot;cat-item cat-item-1&quot;&gt;&lt;a href=&quot;#typography&quot;&gt;typography&lt;/a&gt; (8)&lt;/li&gt;
	&lt;li class=&quot;cat-item cat-item-5&quot;&gt;&lt;a href=&quot;#minimal&quot;&gt;minimal&lt;/a&gt; (12)&lt;/li&gt;
	&lt;li class=&quot;cat-item cat-item-5&quot;&gt;&lt;a href=&quot;#illustration&quot;&gt;illustration&lt;/a&gt; (1)&lt;/li&gt;
	&lt;li class=&quot;cat-item cat-item-5&quot;&gt;&lt;a href=&quot;#high-resolution&quot;&gt;high resolution&lt;/a&gt; (6)&lt;/li&gt;
	&lt;li class=&quot;cat-item cat-item-5&quot;&gt;&lt;a href=&quot;#iphone&quot;&gt;iphone&lt;/a&gt; (15)&lt;/li&gt;
	&lt;li class=&quot;cat-item cat-item-5&quot;&gt;&lt;a href=&quot;#interface&quot;&gt;interface&lt;/a&gt; (21)&lt;/li&gt;
	&lt;li class=&quot;cat-item cat-item-5&quot;&gt;&lt;a href=&quot;#grunge&quot;&gt;grunge&lt;/a&gt; (10)&lt;/li&gt;
&lt;/ul&gt;</pre>
<h2>Oops, HTML is not quite right yet</h2>
<hr style="margin-left: 20px;" align="left" width="60%" />
<p>As you may notice, the default post count is simple text with parenthesis. Well, in our original design we have count as a separate element, so we&#8217;ll need to change this default behavior. A simple way of doing this is with str_replace, we&#8217;ll search for &#8220;(&#8220;, replace with &#8220;&lt;span&gt;&#8221; and then search for &#8220;)&#8221; e replace with &#8220;&lt;/span&gt;&#8221;.</p>
<p>This is how your category listing function will be:</p>
<pre class="brush: php; title: ; notranslate">&lt;ul&gt;
&lt;?php
	$args = array (
		'echo' =&gt; 0,
		'show_count' =&gt; 1,
		'title_li' =&gt; '',
		'depth' =&gt; 1
	);
	$variable = wp_list_categories($args);
	$variable = str_replace ( &quot;(&quot; , &quot;&lt;span&gt;&quot;, $variable );
	$variable = str_replace ( &quot;)&quot; , &quot;&lt;/span&gt;&quot;, $variable );
	echo $variable;
?&gt;
&lt;/ul&gt;</pre>
<p>And now we&#8217;ll have right HTML, as follows:</p>
<pre class="brush: php; title: ; notranslate">&lt;ul id=&quot;category&quot;&gt;
	&lt;li class=&quot;cat-item cat-item-8&quot;&gt;&lt;a href=&quot;#design&quot;&gt;design&lt;/a&gt; &lt;span&gt;17&lt;/span&gt;&lt;/li&gt;
	&lt;li class=&quot;cat-item cat-item-6&quot;&gt;&lt;a href=&quot;#icon&quot;&gt;icon&lt;/a&gt; &lt;span&gt;9&lt;/span&gt;&lt;/li&gt;
	&lt;li class=&quot;cat-item cat-item-7&quot;&gt;&lt;a href=&quot;#grid&quot;&gt;grid&lt;/a&gt; &lt;span&gt;3&lt;/span&gt;&lt;/li&gt;
	&lt;li class=&quot;cat-item cat-item-9&quot;&gt;&lt;a href=&quot;#clean&quot;&gt;clean&lt;/a&gt; &lt;span&gt;25&lt;/span&gt;&lt;/li&gt;
	&lt;li class=&quot;cat-item cat-item-1&quot;&gt;&lt;a href=&quot;#typography&quot;&gt;typography&lt;/a&gt; &lt;span&gt;8&lt;/span&gt;&lt;/li&gt;
	&lt;li class=&quot;cat-item cat-item-5&quot;&gt;&lt;a href=&quot;#minimal&quot;&gt;minimal&lt;/a&gt; &lt;span&gt;12&lt;/span&gt;&lt;/li&gt;
	&lt;li class=&quot;cat-item cat-item-5&quot;&gt;&lt;a href=&quot;#illustration&quot;&gt;illustration&lt;/a&gt; &lt;span&gt;1&lt;/span&gt;&lt;/li&gt;
	&lt;li class=&quot;cat-item cat-item-5&quot;&gt;&lt;a href=&quot;#high-resolution&quot;&gt;high resolution&lt;/a&gt; &lt;span&gt;6&lt;/span&gt;&lt;/li&gt;
	&lt;li class=&quot;cat-item cat-item-5&quot;&gt;&lt;a href=&quot;#iphone&quot;&gt;iphone&lt;/a&gt; &lt;span&gt;15&lt;/span&gt;&lt;/li&gt;
	&lt;li class=&quot;cat-item cat-item-5&quot;&gt;&lt;a href=&quot;#interface&quot;&gt;interface&lt;/a&gt; &lt;span&gt;21&lt;/span&gt;&lt;/li&gt;
	&lt;li class=&quot;cat-item cat-item-5&quot;&gt;&lt;a href=&quot;#grunge&quot;&gt;grunge&lt;/a&gt; &lt;span&gt;10&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;</pre>
<h2>CSS, CSS, CSS</h2>
<hr style="margin-left: 20px;" align="left" width="60%" />
<p>(A.K.A. CSS3. Yeah, a really bad joke)</p>
<p>Now we&#8217;ll do this with a few cool CSS3 implementations. This is what will help us:</p>
<ul>
<li><strong>Before and after pseudo elements</strong> &#8211; instead of putting a lot of additional spans we&#8217;ll just use them to create pretty effects</li>
<li><strong>Border-radius</strong> - we&#8217;ll need slightly rounded corners</li>
<li><strong>Content -</strong> this CSS property will be especially useful because we&#8217;ll insert an image as content of before count and after count</li>
<li><strong>Element positioning -</strong> we&#8217;ll have to be aware of positioning since before and after have to always be with our main span element</li>
</ul>
<p>Let&#8217;s go step by step. Basic CSS for background and main div positioning. Nothing really major in here:</p>
<pre class="brush: php; title: ; notranslate">body {
	background: url(bg.png);
}
	#container {
		position: relative;
		width: 500px;
		margin: 50px auto 0;
		padding: 10px 0 20px;
	}</pre>
<p>With #category and li rules we&#8217;ll achieve that side-by-side listing.</p>
<pre class="brush: php; title: ; notranslate">#category {
	margin: 0;
	padding: 0;
	list-style-type: none;
	overflow: hidden;
}
	#category li {
		float: left;
		position: relative;
		padding: 0 10px;
		margin: 0 15px 10px 0;
	}</pre>
<p>Our link styling will create that &#8220;white&#8221; part of our little tag. Background is a 1px wide soft gradient:</p>
<pre class="brush: php; title: ; notranslate">#category li a {
	float: left;
	padding: 4px 10px 0;
	height: 18px;
	font-family: &quot;arial&quot;;
	font-size: 10px;
	color: #3f3f3f;
	text-decoration: none;
	border-top: 1px solid #d3d0cf;
	border-left: 1px solid #cac7c7;
	border-bottom: 1px solid #aeadad;
	background: url(bgTag.png) repeat-x;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
}</pre>
<p>Now we need to create the orange part of our tag. Since we&#8217;ll animate just the &#8220;middle&#8221;, we&#8217;ll have to do it in a way that our before and after elements will be &#8220;inside&#8221; of span but will go to right / left as our main element expands. So this will do the trick:</p>
<pre class="brush: php; title: ; notranslate">#category li span {
	position: relative;
	float: left;
	width: 35px;
	padding: 5px 0 0;
	margin-top: 1px;
	height: 18px;
	font-family: &quot;arial&quot;;
	font-size: 10px;
	color: #3f3f3f;
	text-align: center;
	background: url(bgCount.png);
	overflow: hidden;
}
	#category li span:before, #category li span:after {
		position: absolute;
		top: 0;
		left: 0;
		width: 3px;
		height: 30px;
		content: url(bgBeforeCount.png);
		overflow: hidden;
	}
	#category li span:after {
		left: auto;
		right: 0;
		content: url(bgAfterCount.png);
	}</pre>
<h2>jQuery Black Magic</h2>
<hr style="margin-left: 20px;" align="left" width="60%" />
<p>First of all, we need to include jQuery, right? So we&#8217;ll do it with a really cool technique that I&#8217;ve seen at jQuery boilerplate:</p>
<pre class="brush: php; title: ; notranslate">&lt;script src=&quot;//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;window.jQuery || document.write(&quot;\x3Cscript src='js/jquery-1.7.1.min.js' type='text/javascript'&gt;\x3C/script&gt;&quot;)&lt;/script&gt;</pre>
<p>We&#8217;ll try to get it from Google. Since almost everybody visits Google often we have a good chance of getting this right from the users cache. But if for any crazy reason Google is down (for instance, if we have been hit by a giant meteor just like our dino friends) it&#8217;ll get jQuery from our local file :)</p>
<p>Now we need to show / hide post counts when hovering over them, so our basic logic will be:</p>
<pre class="brush: php; title: ; notranslate">FIND all &quot;#category span&quot; tags
	animate their width to 0px
FIND all &quot;#category li&quot; tags
	WHEN mouseenter
		animate this.children(&quot;span&quot;) width to 35px
	WHEN mouseleave
		animate this.children(&quot;span&quot;) width to 0px</pre>
<p>When translating this to jQuery what you need to be aware of is:</p>
<ul>
<li>When you animate item to zero jQuery will add &#8216;display: none&#8217; to it (will hide our before and after tags), so we&#8217;ll animate it to 5px instead</li>
<li>You have to chain selectors to get better performance, so we&#8217;ll find #category, then get each span, then go up a level (to li&#8217;s)</li>
<li>When you animate several elements it&#8217;s good to &#8220;stop&#8221; them before animating so we won&#8217;t have a lot of &#8220;dancing&#8221; tags if user moves randomly mouse over elements</li>
</ul>
<p>Our final jQuery code will be this crazy thing:</p>
<pre class="brush: php; title: ; notranslate">$(function(){
	$(&quot;#category&quot;)
		.find(&quot;span&quot;)
		.each(function(){
			$(this).animate({&quot;width&quot;: &quot;5px&quot;});
		})
		.parent()
		.hover(
			function(){
				$(this).find(&quot;span&quot;).stop().animate({&quot;width&quot;: &quot;35px&quot;});
			}, function() {
				$(this).find(&quot;span&quot;).stop().animate({&quot;width&quot;: &quot;5px&quot;});
			}
		);
});</pre>
<h2>So, what do you think?</h2>
<hr style="margin-left: 20px;" align="left" width="60%" />
<p>Hope you enjoyed reading. Don&#8217;t be shy and share your thoughts with us!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.1stwebdesigner.com/wordpress/create-tags-with-sliding-post-count-wordpress/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>Using Retro Style Images And Banners For Advertising</title>
		<link>http://www.1stwebdesigner.com/tutorials/retro-style-images-banners-advertising/</link>
		<comments>http://www.1stwebdesigner.com/tutorials/retro-style-images-banners-advertising/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 10:00:17 +0000</pubDate>
		<dc:creator>prit</dc:creator>
				<category><![CDATA[Quick Tips]]></category>
		<category><![CDATA[Text Effects]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[banner design]]></category>
		<category><![CDATA[designing]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[retro]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.1stwebdesigner.com/?p=59439</guid>
		<description><![CDATA[Retro style images and pop art graphics like those of Roy Lichtenstein and Andy Warhol is a popular style adopted by graphic designers for web and print design. They are chic, fashionable, eye-catching and add to the &#8216;cool&#8217; factor of the company and its products. Lots of stock images are available for download which can [...]]]></description>
			<content:encoded><![CDATA[<p>Retro style images and pop art graphics like those of Roy Lichtenstein and Andy Warhol is a popular style adopted by graphic designers for web and print design. They are chic, fashionable, eye-catching and add to the &#8216;cool&#8217; factor of the company and its products. Lots of stock images are available for download which can be used for web designing, however if you want something unique or customized it&#8217;s better to grab a pencil and paper and do it yourself.</p>
<p><span id="more-59439"></span></p>
<h2>Step 1: Visualize the layout</h2>
<hr style="margin-left: 20px;" align="left" width="60%" />
<p>If you are designing a website, it is important that you choose the image while constructing the wireframe as it should fit your overall layout accordingly. Have a look at some examples to get an idea. It is popular to use them like banners or as full body depiction which encompasses the entire page. Some examples are below<br />
<a href="http://mailchimp.com/v5-3/ "><img class="alignnone size-full wp-image-59447" title="example_1_using_retro_style_images_and_banners_for_advertising" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/ax.jpg" alt="Mailchimp retro" width="570" height="254" /></a></p>
<p><a href="http://www.istockphoto.com/article_view.php?ID=1208 "><img class="alignnone size-full wp-image-59460" title="example_2_using_retro_style_images_and_banners_for_advertising" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/bx.jpg" alt="istockphoto" width="570" height="213" /></a></p>
<p><a href="http://www.targetscope.com/"><img class="alignnone size-full wp-image-59461" title="example_2_using_retro_style_images_and_banners_for_advertising" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/cx.jpg" alt="Tagetscope retro layout" width="570" height="290" /></a></p>
<h2>Step 2: Sketch</h2>
<hr style="margin-left: 20px;" align="left" width="60%" />
<p>Once you have decided on the layout, its time to work on the image. Start with a few pencil sketches and try to capture the essence of the product. In this case my client was a mobile app company, so I decided to create an image of a lady displaying a standard touch screen mobile phone. To make sure that the original product gets the deserved attention I decided to sketch the lady and use a real phone image so that it remains highlighted and looks like a fun combination as well.</p>
<p><img class="alignnone size-full wp-image-59483" title="sketch_and_layout_using_retro_style_images_and_banners_for_advertising" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/sketchx.jpg" alt="Retro image sketch " width="570" height="300" /></p>
<h2>Step 3: Scan</h2>
<hr style="margin-left: 20px;" align="left" width="60%" />
<p>Photocopy the pencil sketch so that the original sketch is preserved and can be re-used later. In this step you can either scan the sketch and add the details digitally (like details of hairstyle, dress etc) using Photoshop and a Wacom device, or if you feel more comfortable on paper, try to sketch the details on the photocopy and then scan it.</p>
<p><img class="alignnone size-full wp-image-59462" title="scan_using_retro_style_images_and_banners_for_advertising" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/1x.jpg" alt="scan retro image" width="570" height="398" /></p>
<h2>Step 4: Digitally enhance</h2>
<hr style="margin-left: 20px;" align="left" width="60%" />
<p>Once you are satisfied with the scan, open it with Photoshop (or a similar editor) and plug-in your Wacom (or similar device). First use the magic wand tool in Photoshop to select as much area as possible from the image and save the structure in a new layer. Now use the pen tool to select around a shape and copy on a new layer. Finally use the brush tool and with careful movements of the Wacom pen add finishing touches to the image.</p>
<p><strong>a.</strong> Using the magic wand tool to select and copy areas from the scanned image, and reconstruct them on a different layer (say layer2)</p>
<p><img class="alignnone size-full wp-image-59463" title="magic_wand_photoshop_using_retro_style_images_and_banners_for_advertising" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/3x.jpg" alt="magic wand on retro image" width="570" height="429" /></p>
<p><strong>b. </strong>Zoom and use the pen tool to copy the finer details on layer 2</p>
<p><img class="alignnone size-full wp-image-59468" title="pen_tool_photoshop_using_retro_style_images_and_banners_for_advertising" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/2x.jpg" alt="pen tool on retro image" width="570" height="420" /></p>
<p><strong>c. </strong>Use the brush to reconstruct the details on layer 2.</p>
<p><img class="alignnone size-full wp-image-59469" title="brush_tool_photoshop_using_retro_style_images_and_banners_for_advertising" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/4x.jpg" alt="brush tool on retro image" width="570" height="335" /></p>
<h2>Step 5: Integrate</h2>
<hr style="margin-left: 20px;" align="left" width="60%" />
<p>Add the mobile phone (or any other product) to the image and adjust the size and contrast of the image for smooth integration. Add the entire image to the banner or the web layout. Try a few different backgrounds to see what works best.<br />
<img class="alignnone size-full wp-image-59473" title="final_banner_using_retro_style_images_and_banners_for_advertising" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/kvinnamedmobilx.jpg" alt="retro and pop art inspired banner" width="570" height="226" /><br />
<img class="alignnone size-full wp-image-59474" title="final_banner_2_using_retro_style_images_and_banners_for_advertising" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/kvinnamedmobil2x.jpg" alt="retro and pop art inspired banner" width="570" height="226" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.1stwebdesigner.com/tutorials/retro-style-images-banners-advertising/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Definitive Mobile Guide &#8211; 40+ Tools, Frameworks And Tutorials</title>
		<link>http://www.1stwebdesigner.com/tutorials/mobile-guide-for-tools-frameworks-tutorials/</link>
		<comments>http://www.1stwebdesigner.com/tutorials/mobile-guide-for-tools-frameworks-tutorials/#comments</comments>
		<pubDate>Tue, 29 Nov 2011 21:00:11 +0000</pubDate>
		<dc:creator>Rochester Oliveira</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[mobile development]]></category>
		<category><![CDATA[Roundup]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.1stwebdesigner.com/?p=59060</guid>
		<description><![CDATA[The mobile market is getting bigger and bigger. A lot of people are spending much more time mobile browsing than desktop. Sometimes I feel like developers aren&#8217;t paying proper attention to mobile interfaces. Maybe because we don&#8217;t have enough tools to do it, right? No, actually it isn&#8217;t. Despite cool things like Safari Mobile that [...]]]></description>
			<content:encoded><![CDATA[<p>The mobile market is getting bigger and bigger. A lot of people are spending much more time mobile browsing than desktop. Sometimes I feel like developers aren&#8217;t paying proper attention to mobile interfaces. Maybe because we don&#8217;t have enough tools to do it, right? No, actually it isn&#8217;t.</p>
<p>Despite cool things like Safari Mobile that makes any (non-flash) website &#8220;browsable&#8221; it&#8217;s easy to see that conversion rates are much higher on interfaces design for mobile viewing.</p>
<p>So be ready to see A LOT of tools to help you create cool things for mobile with just what we know (HTML, CSS, JS).</p>
<p><span id="more-59060"></span></p>
<h2>Frameworks, plugins and development tools</h2>
<p>Many of us know how to do things with HTML and JS. Sometimes seriously cool stuff using HTML5 effects and some of the newer coding options. Now you&#8217;ll see a lot of tools to help you to bring all your knowledge to create mobile interfaces easily.</p>
<h3><a href="http://www.appinventorbeta.com/">App Inventor (beta)</a></h3>
<p>If you like drag &amp; drop, this one is for you. Actually you don&#8217;t need to know a single line of code to build your android apps with this great software. I&#8217;ve tried it myself and it works great despite a final app sizes being a little large.</p>
<p><img class="alignnone size-full wp-image-59084" title="app-inventor" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/app-inventor.jpg" alt="" width="550" height="300" /></p>
<h3><a href="http://www.dhtmlx.com/touch/">DHTMLX Touch</a></h3>
<p>One of the most well-known frameworks. Helps a lot when you know a little JS and HTML5 and want to create powerful apps.</p>
<p><img class="alignnone size-full wp-image-59085" title="dhtml-touch" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/dhtml-touch.jpg" alt="" width="550" height="300" /></p>
<h3><a href="http://uxebu.github.com/embedjs/ ">EmbedJS</a></h3>
<p>EmbedJS is a JavaScript framework for embedded devices (mobile phones, TVs, etc.). It takes a different approach than other frameworks by shipping just the code needed for each device. That means, there&#8217;s less code going over the wire, less code branching at runtime and less memory usage.</p>
<p><img class="alignnone size-full wp-image-59086" title="embed-js" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/embed-js.jpg" alt="" width="550" height="300" /></p>
<h3><a href="http://guryjs.org/">Gury</a></h3>
<p>Gury (pronounced &#8220;jury&#8221;) is a JavaScript library designed to aid in the creation of HTML5/Canvas applications by providing an easy-to-use chain based interface.</p>
<p><img class="alignnone size-full wp-image-59087" title="gury" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/gury.jpg" alt="" width="550" height="300" /></p>
<h3><a href="http://iosframeworks.com/">iOSFrameworks.com</a></h3>
<p>For those who knows basic Objective-C, this one is a really useful collection of frameworks to help you in your projects. Really useful!</p>
<p><img class="alignnone size-full wp-image-59088" title="ios-frameworks" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/ios-frameworks.jpg" alt="" width="550" height="300" /></p>
<h3><a href="http://snippetspace.com/projects/iwebkit/">iWebkit</a></h3>
<p>iWebKit is a file package designed to help you create your own iPhone, iPod Touch and iPad compatible website or webapp.</p>
<p><img class="alignnone size-full wp-image-59089" title="iwebkit" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/iwebkit.jpg" alt="" width="550" height="300" /></p>
<h3><a href="http://code.google.com/p/iui/wiki/Introduction">iUI</a></h3>
<p>Web UI Framework for mobile devices &#8211; iOS, Android, Palm, and others.</p>
<p><img class="alignnone size-full wp-image-59090" title="iui" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/iui.jpg" alt="" width="550" height="300" /></p>
<h3><a href="http://joapp.com/">JoApp</a></h3>
<p>Framework for mobile development with a lot of cool features, like native-like widgets, multiple ways to code, and heavy use of CSS3.</p>
<p><img class="alignnone size-full wp-image-59091" title="jo" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/jo.jpg" alt="" width="550" height="300" /></p>
<h3><a href="http://jquerymobile.com/">jQuery Mobile</a></h3>
<p>How could I forget this one? Well, this is our well known jQuery with a lot of mobile-optimized features. With its recent 1.0 launch it will be a default script for many sites (just like jQuery &#8220;normal&#8221; is now).</p>
<p><img class="alignnone size-full wp-image-59093" title="jquery-mobile" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/jquery-mobile.jpg" alt="" width="550" height="300" /></p>
<h3><a href="http://jqtouch.com/">jQTouch</a></h3>
<p>At first it may look like just another plugin for responsive layouts. Well, it&#8217;s actually almost a UI framework with a lot of cool features that will save you a lot of development hours. :)</p>
<p><img class="alignnone size-full wp-image-59094" title="jqtouch" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/jqtouch.jpg" alt="" width="550" height="300" /></p>
<h3><a href="http://www.kendoui.com/ ">Kendo UI</a></h3>
<p>Kendo has a lot of cool features for responsive UI. It does a lot of amazing things, like responsive charts being one of the most impressive performances you&#8217;ll find.</p>
<p><img class="alignnone size-full wp-image-59095" title="kendo" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/kendo.jpg" alt="" width="550" height="300" /></p>
<h3><a href="http://www.limejs.com/">Lime.JS</a></h3>
<p>Do you like games? Yeah, you, me and Lime.js do. Build games faster than ever with this HTML5 game framework.</p>
<p><img class="alignnone size-full wp-image-59096" title="lime" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/lime.jpg" alt="" width="550" height="300" /></p>
<h3><a href="http://www.mobl-lang.org/ ">MOBL</a></h3>
<p>Feel like learning a new language? Mobl is a new programming language for mobile devices. Sounds cool, huh?</p>
<p><img class="alignnone size-full wp-image-59097" title="mobl" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/mobl.jpg" alt="" width="550" height="300" /></p>
<h3><a href="http://nextinterfaces.com/ ">NEXT Interfaces</a></h3>
<p>NEXT is a free, open source Java and HTML5 framework for building Native Looking web applications for smartphones and tablets.</p>
<p><img class="alignnone size-full wp-image-59098" title="next" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/next.jpg" alt="" width="550" height="300" /></p>
<h3><a href="http://www.nimblekit.com/index.php ">NimbleKit</a></h3>
<p>NimbleKit is the fastest way to create applications for iOS. You don&#8217;t need to know Objective-C or the iOS SDK. All you need is to know how to write an HTML page with JavaScript code.</p>
<p><img class="alignnone size-full wp-image-59099" title="nimblekit" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/nimblekit.jpg" alt="" width="550" height="300" /></p>
<h3><a href="http://phonegap.com/">PhoneGap</a></h3>
<p>Using the free open source framework or PhoneGap build you can get access to native APIs.</p>
<p><img class="alignnone size-full wp-image-59100" title="phonegap" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/phonegap.jpg" alt="" width="550" height="300" /></p>
<h3><a href="http://www.sencha.com/products/touch">Sencha Touch</a></h3>
<p>You&#8217;ve probably heard about this one, Sencha Touch allows you to develop mobile web apps that look and feel native on iPhone, Android, and BlackBerry touch devices.</p>
<p><img class="alignnone size-full wp-image-59101" title="sencha-touch" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/sencha-touch.jpg" alt="" width="550" height="300" /></p>
<h3><a href="http://the-m-project.net/">The M-Project</a></h3>
<p>It&#8217;s a really good framework, with great documentation, built to allow you to develop easily cross-platform mobile apps.</p>
<p><img class="alignnone size-full wp-image-59102" title="the-m-project" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/the-m-project.jpg" alt="" width="550" height="300" /></p>
<h3><a href="http://www.appcelerator.com/products/titanium-mobile-application-development/">Titanium</a></h3>
<p>Titanium is different because after your development process it generates a compiled app for iOS or android, so you can get a higher performance with native apps without learning a line of Objective-C or Java.</p>
<p><img class="alignnone size-full wp-image-59103" title="titanium-mobile" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/titanium-mobile.jpg" alt="" width="550" height="300" /></p>
<h3><a href="http://labs.doat.com/ ">Touchy</a></h3>
<p>More than just a boilerplate, it has a lot of built-in functions to do all the heavy lifting, so you can focus on getting your app out there. Touchy<em></em> goes beyond just an HTML/CSS template, adding performance optimization tools, hardware accelerated animation, device API, fixed positioning and much more so you can really rock the mobile web.</p>
<p><img class="alignnone size-full wp-image-59104" title="touchy-boilerplate" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/touchy-boilerplate.jpg" alt="" width="550" height="300" /></p>
<h3><a href="http://webapp-net.com/ ">WebApp.Net</a></h3>
<p>WebApp.Net is a light weight, powerful JavaScript framework taking advantage of AJAX technology. It provides a full set of ready to use components to help you develop, quickly and easily, advanced mobile web applications.</p>
<p><img class="alignnone size-full wp-image-59105" title="webapp--net" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/webapp-net.jpg" alt="" width="550" height="300" /></p>
<h3><a href="http://www.winktoolkit.org/">Wink Toolkit</a></h3>
<p>Wink Toolkit is a lightweight JavaScript toolkit, designed and developed to meet the specific constraints of the mobile environment. The toolkit&#8217;s core offers all the basic functionalities a mobile developer would need from touch event handling to DOM manipulation objects or CSS transforms utilities.</p>
<p><img class="alignnone size-full wp-image-59106" title="wink-toolkit" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/wink-toolkit.jpg" alt="" width="550" height="300" /></p>
<h3><a href="http://zeptojs.com/">Zepto.Js</a></h3>
<p>Zepto.js is a minimalist JavaScript framework for mobile WebKit browsers, with a jQuery-compatible syntax.</p>
<p><img class="alignnone size-full wp-image-59107" title="zepto-js" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/zepto-js.jpg" alt="" width="550" height="300" /></p>
<h2>Miscellaneous tools</h2>
<p>Here we have everything from validators to image gallery plugins.</p>
<h3><a href="http://stuffandnonsense.co.uk/projects/320andup/ ">320 and up</a></h3>
<p>The ‘tiny screen first’ boilerplate extension. It prevents mobile devices from downloading desktop assets by using a tiny screen’s stylesheet as its starting point.</p>
<p><img class="alignnone size-full wp-image-59108" title="320-and-up" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/320-and-up.jpg" alt="" width="550" height="300" /></p>
<h3><a href="http://jeromeetienne.github.com/jquery-mobile-960/">960 Grid on jQuery-Mobile</a></h3>
<p>jQuery-mobile-960 is a port of 960 grid to jQuery mobile. It merges the flexibility of 960.gs, and the ease of jQuery mobile.</p>
<p><img class="alignnone size-full wp-image-59109" title="960-grid-on-jquery-mobile" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/960-grid-on-jquery-mobile.jpg" alt="" width="550" height="300" /></p>
<h3><a href="http://animatable.com/">Animatable</a></h3>
<p>It&#8217;s not ready to use&#8230;yet. But you should bookmark this one. It&#8217;ll help us create animations for desktop, Android, Blackberry QNX, iOS and WebOS mobile devices.</p>
<p><img class="alignnone size-full wp-image-59110" title="animatable" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/animatable.jpg" alt="" width="550" height="300" /></p>
<h3><a href="https://github.com/Wilto/Dynamic-Carousel">Dynamic carousel </a></h3>
<p>Responsive carousel script. Check it out!</p>
<p><img class="alignnone size-full wp-image-59111" title="dynamic-carrousel" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/dynamic-carrousel.jpg" alt="" width="550" height="300" /></p>
<h3><a href="http://galleria.aino.se/">Galleria.Aino.Se</a></h3>
<p>Galleria is a cool image gallery script that works nice from desktop to mobile.</p>
<p><img class="alignnone size-full wp-image-59112" title="galleria" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/galleria.jpg" alt="" width="550" height="300" /></p>
<h3><a href="http://html5boilerplate.com/">HTML5 Boilerplate / mobile</a></h3>
<p>HTML 5 Boilerplate has a set of cool features for mobile interfaces with a lot of guidelines to get the most from your mobile app.</p>
<p><img class="alignnone size-full wp-image-59113" title="mobile-boilerplate" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/mobile-boilerplate.jpg" alt="" width="550" height="300" /></p>
<h3><a href="http://www.initializr.com/ ">Initializr 2</a></h3>
<p>Since it uses the HTML5 Boilerplate it has the same cool features.</p>
<p><img class="alignnone size-full wp-image-59114" title="initialzr" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/initialzr.jpg" alt="" width="550" height="300" /></p>
<h3><a href="http://masonry.desandro.com/">Masonry</a></h3>
<p>It allows you to use crazy grids that would be just impossible with CSS floats. Plus, with a touch of creativity, you can do cool things, like this <a href="http://www.b2bweb.fr/molokoloco/scroll-wall-jquery-mobile-masonry/">Scroll Wall with jQuery Mobile and Masonry</a>.</p>
<p><img class="alignnone size-full wp-image-59092" title="jquery-masonry" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/jquery-masonry.jpg" alt="" width="550" height="300" /></p>
<h3><a href="http://www.mobilexweb.com/emulators">Mobile Emulators &amp; Simulators: The Ultimate Guide &#8211; MobileXWeb</a></h3>
<p>A complete guide of mobile emulators and tools to help you test your apps.</p>
<p><img class="alignnone size-full wp-image-59115" title="mobile-emulators" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/mobile-emulators.jpg" alt="" width="550" height="300" /></p>
<h3><a href="http://www.notjustagrid.com/default.asp">Not Just A Grid</a></h3>
<p>Not Just a Grid is a flexible and modular CSS  framework that is designed to assist in the rapid prototyping and development of websites. It has been designed for the future with larger screen sizes and the use of CSS3 for progressive enhancement and richer user experiences.</p>
<p><img class="alignnone size-full wp-image-59116" title="not-just-a-grid" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/not-just-a-grid.jpg" alt="" width="550" height="300" /></p>
<h3><a href="http://ready.mobi/">MobiReady</a></h3>
<p>The mobiReady testing tool evaluates mobile-readiness using industry best practices &amp; standards.</p>
<p><img class="alignnone size-full wp-image-59117" title="mobi-ready" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/mobi-ready.jpg" alt="" width="550" height="300" /></p>
<h3><a href="http://treesaverjs.com/">Treesaver</a></h3>
<p>Treesaver is a JavaScript framework for creating magazine-style layouts using standards-compliant HTML and CSS.</p>
<p><img class="alignnone size-full wp-image-59118" title="tree-saver" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/tree-saver.jpg" alt="" width="550" height="300" /></p>
<h3><a href="http://validator.w3.org/mobile/">W3C Mobile Validator</a></h3>
<p>It&#8217;s from W3C.  No more description needed, right?</p>
<p><img class="alignnone size-full wp-image-59119" title="w3c-mobile-ok" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/w3c-mobile-ok.jpg" alt="" width="550" height="300" /></p>
<h3><a href="http://wijmo.com/">Wijmo</a></h3>
<p>Wijmo is a complete kit of over 30 UI widgets with everything from interactive menus to rich charts.</p>
<p><img class="alignnone size-full wp-image-59120" title="wijmo" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/wijmo.jpg" alt="" width="550" height="300" /></p>
<h3><a href="http://wordpress.org/extend/plugins/wptouch/">WP Touch</a></h3>
<p>WPtouch: A simple, powerful and elegant mobile theme for your website. WPtouch automatically transforms your WordPress blog into an iPhone application.</p>
<p><img class="alignnone size-full wp-image-59121" title="wp-touch" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/wp-touch.jpg" alt="" width="550" height="300" /></p>
<h2>Tutorials and Articles</h2>
<h3><a href="http://designmodo.com/mobile-web-design-trends/">Mobile Web Design Trends and Best Practices &#8211; DesignModo</a></h3>
<p>A long and very well written guide with all the basics you need to know before getting started with this mobile development thing.</p>
<p><img class="alignnone size-full wp-image-59122" title="tutorial-designmodo" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/tutorial-designmodo.jpg" alt="" width="550" height="300" /></p>
<h3><a title="Permanent Link to Building Mobile Web Apps the Right Way: Tips and Techniques" href="http://sixrevisions.com/web-applications/building-mobile-web-apps-the-right-way-tips-and-techniques/" rel="bookmark">Building Mobile Web Apps the Right Way: Tips and Techniques &#8211; SixRevisions</a></h3>
<p>Good guide with a comparison of what you&#8217;re used to doing for desktop development and what you should be doing for mobile interfaces.</p>
<p><img class="alignnone size-full wp-image-59123" title="tutorial-six-revisions" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/tutorial-six-revisions.jpg" alt="" width="550" height="300" /></p>
<h3><a title="Permanent Link to 10 handy jQuery mobile tips and snippets to get you started" href="http://www.webdesignerdepot.com/2011/05/10-handy-jquery-mobile-tips-and-snippets-to-get-you-started/" rel="bookmark">10 handy jQuery mobile tips and snippets to get you started &#8211; WebDesignerDepot</a></h3>
<p>jQuery mobile is a great tool, indeed. But you need to know how to use it. This really helpful guide will help you get started with jQuery mobile!</p>
<p><img class="alignnone size-full wp-image-59124" title="tutorial-webdesigner-depot" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/tutorial-webdesigner-depot.jpg" alt="" width="550" height="300" /></p>
<h3><a href="http://designshack.net/articles/css/build-a-responsive-mobile-friendly-web-page-with-skeleton/">Build a Responsive, Mobile-Friendly Web Page With Skeleton &#8211; DesignShack</a></h3>
<p>I didn&#8217;t mention skeleton because this guide will help you understand it better. You can use these principles in all other mobile boilerplates out there.</p>
<p><img class="alignnone size-full wp-image-59125" title="tutorial-designshack" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/tutorial-designshack.jpg" alt="" width="550" height="300" /></p>
<h3><a href="http://tympanus.net/codrops/2010/05/27/awesome-mobile-image-gallery-web-app/">Awesome Mobile Image Gallery Web App &#8211; Codrops</a></h3>
<p>Check it with your mobile device and be as amazed as I was at first. Pretty cool :)</p>
<p><img class="alignnone size-full wp-image-59126" title="tutorial-codrops" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/tutorial-codrops.jpg" alt="" width="550" height="300" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.1stwebdesigner.com/tutorials/mobile-guide-for-tools-frameworks-tutorials/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Snickles: Create A Modern Business Template In Adobe Photoshop</title>
		<link>http://www.1stwebdesigner.com/tutorials/modern-business-template-tutorial/</link>
		<comments>http://www.1stwebdesigner.com/tutorials/modern-business-template-tutorial/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 21:00:53 +0000</pubDate>
		<dc:creator>Michael John Burns</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Interface]]></category>
		<category><![CDATA[photoshop tutorial]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web interface]]></category>

		<guid isPermaLink="false">http://www.1stwebdesigner.com/?p=58687</guid>
		<description><![CDATA[Good day! Today we will be designing a modern business template in Adobe Photoshop.. This template will contain a header, slide show, service area, video, about us, testimonials, and footer. What you will be learning from this tutorial are how to achieve that 3D looking interface in just a few simple steps, creating patterns, combining [...]]]></description>
			<content:encoded><![CDATA[<p>Good day! Today we will be designing a modern business template in Adobe Photoshop.. This template will contain a header, slide show, service area, video, about us, testimonials, and footer. What you will be learning from this tutorial are how to achieve that 3D looking interface in just a few simple steps, creating patterns, combining textures, colors, alignments and many more. So get ready and let&#8217;s get started!</p>
<p><span id="more-58687"></span></p>
<p>Here is what we will be making, click on the image for full preview:</p>
<p><a title="Preview" href="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-fullsize.jpg"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-preview.jpg" alt="" /></a></p>
<h2>Resources for this tutorial</h2>
<ul>
<li><a title="" href="http://www.premiumpixels.com/freebies/14-high-res-paper-canvas-textures/" target="_blank">Paper Textures</a></li>
<li><a title="" href="http://www.teehanlax.com/blog/browser-form-elements-psd/" target="_blank">UI Elements</a></li>
<li><a title="" href="http://www.iconfinder.com/icondetails/65844/128/picons48_icon" target="_blank">Social Icons</a></li>
<li><a title="" href="http://thedesigninspiration.com/articles/10-free-useful-icons-for-designers/" target="_blank">Icons</a>.</li>
<li>Featured Illustration credits to <a href="http://atixvector.deviantart.com/art/CUIDADOS-INTENSIVOS-259828681">Atixvector</a></li>
</ul>
<h2>Step 1: Setting up the Document</h2>
<p>Start by creating a <strong>1400px</strong> x <strong>1700px</strong> document in Photoshop.</p>
<p><strong>Ruler Tool</strong> is very useful for this tutorial make sure that <em>rulers</em> and <em>guides</em> is turned on.</p>
<ul>
<li>Rulers: Ctrl + R</li>
<li>Guides: Ctrl + ;</li>
</ul>
<p>Also one thing important in using <strong>Ruler Tool</strong> is the <strong>Info(Information) Panel</strong>. The use of this is when you are measuring using the ruler the information will be shown in the information panel. Make sure that this is shown in your panels at the right. If it is not shown you can access this by going to <em>Windows &#8211; Info</em>.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-1.jpg" alt="" /></p>
<p>The total width of this site will be <strong>960px</strong>. So, let’s create our 1st guide by going to <em>View &#8211; New Guide</em>, set the value to <strong>220px</strong>. Repeat the step of create a guide but now change the value to <strong>1180px</strong>, this will make a total of <strong>960px</strong> to the center of our canvas.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-2.jpg" alt="" /></p>
<h2>Step 2: Working on Base Background for Header and Slider</h2>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-3.jpg" alt="" /></p>
<p>What we&#8217;re trying to achieve here is a 3D like surface to hold our <em>slider preview</em> and on top of it will be our <em>logo, navigation and RSS feed</em>.</p>
<p>To start using <strong>Rectangle Tool(U)</strong> create a <strong>100%</strong> by <strong>960px</strong> shape, color <strong>#092f56</strong>. Next, using <strong>Ruler Tool(I)</strong> measure <strong>140px</strong> staring from the bottom of the shape towards top and drag a guide from the ruler.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-4.jpg" alt="" /></p>
<p>Next add a <strong>1px</strong> line, color <strong>#062340</strong> just <strong>1px</strong> above the guide.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-5.jpg" alt="" /></p>
<p>Using <strong>Rectangular Marquee Tool(M)</strong> create a selection as shown in the screen shot below. Set the <em>Foreground</em> color to <strong>#000</strong> and select <strong>Linear Gradient</strong> <em>Foreground to Transparent</em> then, fill the selection with it. Once you have fill it set the <em>Blend Mode</em> to <strong>Multiply</strong>, <em>Opacity</em> to <strong>30%</strong>.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-6.jpg" alt="" /></p>
<p>Select <strong>Rectangle Tool(U)</strong> and create a <strong>100%</strong> by <strong>45px</strong> shape. Place it as shown in the screenshot below.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-7.jpg" alt="" /></p>
<p><strong>Apply this Blending Option</strong></p>
<ul>
<li>Dorp Shadow: #000</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-8.jpg" alt="" /></p>
<ul>
<li>Inner Shadow: #0f3b69</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-9.jpg" alt="" /></p>
<ul>
<li>Gradient Overlay: #051f3a, #082c50</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-10.jpg" alt="" /></p>
<ul>
<li>Stroke: #06213a</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-11.jpg" alt="" /></p>
<p><strong>Result</strong></p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-12.jpg" alt="" /></p>
<p>Next you need to extract the paper texture that you have downloaded. Select <em>Paper 9</em> and place it into our canvas as shown in the screenshot below.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-13.jpg" alt="" /></p>
<p>Set the <em>Blend Mode</em> to <strong>Multiply</strong> and <em>Opacity</em> to <strong>30%</strong>. Later on when we finished putting all the content for <em>header</em> and <em>slider</em> we will be adding <em>highlights</em> to our base background.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-14.jpg" alt="" /></p>
<h2>Step 3: Working on Header</h2>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-15.jpg" alt="" /></p>
<p>Our header will contain <em>Logo, Navigation and RSS Feed</em>.</p>
<h3>Logo</h3>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-16.jpg" alt="" /></p>
<p>I used a font called <em>Snickles</em> you can get it on <a href="http://www.fontsquirrel.com/fonts/Snickles">Font Squirrel</a>. Now type in your website name using the font settings below.</p>
<p><strong>Font Settings</strong></p>
<ul>
<li>Font Name: Snickles</li>
<li>Weight: Normal</li>
<li>Size: 60pt</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-17.jpg" alt="" /></p>
<p><strong>Apply this Blending Option</strong></p>
<ul>
<li>Drop Shadow: #000</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-18.jpg" alt="" /></p>
<ul>
<li>Inner Shadow: #fff</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-19.jpg" alt="" /></p>
<ul>
<li>Gradient Overlay: #c0c0c0, #ffffff</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-20.jpg" alt="" /></p>
<p><strong>Result</strong></p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-16.jpg" alt="" /></p>
<h3>Navigation</h3>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-21.jpg" alt="" /></p>
<p>Using <strong>Rounded Rectangle Tool(U)</strong> set the <em>Radius</em> to <strong>20px</strong>. Create a <strong>580px</strong> by <strong>50px</strong> shape as shown in the screenshot below.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-22.jpg" alt="" /></p>
<p><strong>Apply this Blending Option</strong></p>
<ul>
<li>Dorp Shadow: #000</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-23.jpg" alt="" /></p>
<ul>
<li>Inner Shadow: #fff</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-24.jpg" alt="" /></p>
<ul>
<li>Gradient Overlay: #fea201, #fccf6a</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-25.jpg" alt="" /></p>
<p><strong>Result</strong></p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-26.jpg" alt="" /></p>
<p>Using <strong>Text Tool(T)</strong> add site links <em>Home, Blog, About Us, Free Consultation and Contact Us</em>. Distance with each links will be <strong>41px</strong> so go ahead and measure it with <strong>Ruler Tool(I)</strong></p>
<p><strong>Font Settings</strong></p>
<ul>
<li>Font Name: Helvetica Neue</li>
<li>Weight: Roman</li>
<li>Size: 12pt</li>
<li>Color: #fff, #ac5b00</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-27.jpg" alt="" /></p>
<p>Duplicate the text and exclude the <em>Home</em> link in a separate text layer. Place it under the original text layer and move it <strong>1px</strong> above using arrow up key and lastly change the color to <strong>#d38904</strong>. For the other links place it below the original text layer and move it <strong>1px</strong> below and change the color to <strong>#ffe91e</strong>. You may now have an embossed looking links.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-28.jpg" alt="" /></p>
<p>We will be adding dividers. Using <strong>Line Tool(U)</strong> with a fill color <strong>#fee79e</strong> create a <strong>1px</strong> line and place it as shown in the screenshot below.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-29.jpg" alt="" /></p>
<p>Below all the text layers create a <strong>70px</strong> by <strong>30px</strong> shape, color <strong>#ee9e0d</strong> using <strong>Rounded Rectangle Tool(U)</strong> and place it as shown in the screenshot below.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-30.jpg" alt="" /></p>
<p><strong>Apply this Blending Option</strong></p>
<ul>
<li>Dorp Shadow: #fff</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-31.jpg" alt="" /></p>
<ul>
<li>Inner Shadow: #000</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-32.jpg" alt="" /></p>
<p><strong>Result</strong></p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-21.jpg" alt="" /></p>
<h3>RSS Feed</h3>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-33.jpg" alt="" /></p>
<p>Download RSS button from the resource and place it as shown in the screenshot below and add a text using <strong>Text Tool(T)</strong></p>
<p><strong>Font Settings</strong></p>
<ul>
<li>Font Name: Arial</li>
<li>Weight: Regular</li>
<li>Size: 12pt</li>
<li>Color: #fff</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-34.jpg" alt="" /></p>
<p><strong>Apply this Blending Option</strong></p>
<ul>
<li>Dorp Shadow: #000</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-35.jpg" alt="" /></p>
<ul>
<li>Inner Shadow: #fff</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-36.jpg" alt="" /></p>
<ul>
<li>Gradient Overlay: #f38600, #fed676</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-37.jpg" alt="" /></p>
<p><strong>Result</strong></p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-33.jpg" alt="" /></p>
<h2>Step 4: Working on Slider</h2>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-38.jpg" alt="" /></p>
<p>Our slider will contain <em>text title &amp; description, button and a browser display.</em></p>
<h3>Text Title &amp; Description</h3>
<p>Using <strong>Text Tool(T)</strong> place a dummy text using the text format provided below.</p>
<p><strong>Title</strong></p>
<ul>
<li>Font Name: Helvetica Neue</li>
<li>Weight: Condensed</li>
<li>Size: 24pt</li>
<li>Color: #fff</li>
</ul>
<p><strong>Description</strong></p>
<ul>
<li>Font Name: Arial</li>
<li>Weight: Regular</li>
<li>Size: 12pt</li>
<li>Color: #dddddd</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-39.jpg" alt="" /></p>
<h3>Button</h3>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-40.jpg" alt="" /></p>
<p>Using <strong>Rounded Rectangle Tool(U)</strong> create a <strong>150px</strong> by <strong>35px</strong> shape.</p>
<p><strong>Apply this Blending Option</strong></p>
<ul>
<li>Dorp Shadow: #000</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-41.jpg" alt="" /></p>
<ul>
<li>Inner Shadow: #fff</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-42.jpg" alt="" /></p>
<ul>
<li>Gradient Overlay: #f38600, #fed676</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-43.jpg" alt="" /></p>
<p><strong>Result</strong></p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-44.jpg" alt="" /></p>
<p>Label it with <em>View Details</em> using <strong>Text Tool(T)</strong></p>
<p><strong>Description</strong></p>
<ul>
<li>Font Name: Helvetica Neue</li>
<li>Weight: Roman</li>
<li>Size: 14pt</li>
<li>Color: #fff, #02b0f3</li>
</ul>
<p><strong>Result</strong></p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-40.jpg" alt="" /></p>
<h3>Display</h3>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-45.jpg" alt="" /></p>
<p>First using <strong>Rectangle Tool</strong> create a <strong>450px</strong> by <strong>250px</strong> shape.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-46.jpg" alt="" /></p>
<p>Select <strong>Rounded Rectangle Tool(U)</strong>, set the <em>Radius</em> to <strong>5px</strong>. Create a <strong>450px</strong> by <strong>20px</strong> and fill the rounded corners in the bottom.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-47.jpg" alt="" /></p>
<p><strong>Apply this Blending Option</strong></p>
<ul>
<li>Drop Shadow: #404040</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-48.jpg" alt="" /></p>
<ul>
<li>Inner Shadow: #fff</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-49.jpg" alt="" /></p>
<ul>
<li>Gradient Overlay: #f38600, #fed676</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-50.jpg" alt="" /></p>
<p><strong>Result</strong></p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-51.jpg" alt="" /></p>
<p>Open up the <em>web ui elements</em>. Cut out the buttons and resize it to fit to the shape that we have created. Refer to the screenshot below.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-52.jpg" alt="" /></p>
<p>Next create a new layer below the white shape we have created. Select <strong>Elliptical Marquee Tool(M)</strong> and create a selection as shown in the screenshot then fill it with <strong>#000</strong>. Go to <em>Filter &#8211; Blur &#8211; Gaussian Blur &#8211; 2</em> and change the layer <em>Opacity</em> to <strong>50%</strong></p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-53.jpg" alt="" /></p>
<h3>Controls</h3>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-54.jpg" alt="" /></p>
<p>Using <strong>Ellipse Tool(U)</strong> create a <strong>14px</strong> by <strong>14px</strong> shape. Place it on the center as shown in the screenshot below.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-55.jpg" alt="" /></p>
<p><strong>1st Shape</strong></p>
<ul>
<li>Drop Shadow: #000</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-56.jpg" alt="" /></p>
<ul>
<li>Inner Shadow: #fff</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-57.jpg" alt="" /></p>
<ul>
<li>Gradient Overlay: #03b8ff, #89e3fe</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-58.jpg" alt="" /></p>
<p><strong>2nd &amp; 3rd Shape</strong></p>
<ul>
<li>Dorp Shadow: #fff</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-59.jpg" alt="" /></p>
<ul>
<li>Inner Shadow: #000</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-60.jpg" alt="" /></p>
<ul>
<li>Color Overlay: #051f3a</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-61.jpg" alt="" /></p>
<p><strong>Result</strong></p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-54.jpg" alt="" /></p>
<h3>Highlights</h3>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-82.jpg" alt="" /></p>
<p>Select <strong>Dodge Tool(O)</strong> set <em>Exposure</em> to <strong>10%</strong>, also set the Dodge size to 200px.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-83.jpg" alt="" /></p>
<p>Duplicate the base layer shape and <em>rasterize</em> it. Using <strong>Dodge Tool(O)</strong> lighten up the area as shown in the screenshot below.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-84.jpg" alt="" /></p>
<p><strong>Result</strong></p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-82.jpg" alt="" /></p>
<h2>Step 5: Working on Consult Area</h2>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-62.jpg" alt="" /></p>
<p>To create a pattern create a new <strong>15px</strong> by <strong>15px</strong> <em>transparent</em> document. Using <strong>Pencil Tool(B)</strong> create a pattern the same on the screenshot below.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-63.jpg" alt="" /></p>
<p>Go to <em>Edit &#8211; Define Pattern</em>, name it <em>zigzag</em>. Now, create a <strong>100%</strong> by <strong>150px</strong> shape using <strong>Rectangle Tool(U)</strong>. Select <strong>Paint Bucket Tool(G)</strong> and change <em>Foreground to Pattern</em> from the dropdown list. Create a selection at the very bottom of the shape and fill it with pattern that we made.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-64.jpg" alt="" /></p>
<p><strong>Apply this Blending Option</strong></p>
<ul>
<li>Drop Shadow: #bfbfbf</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-65.jpg" alt="" /></p>
<ul>
<li>Gradient Overlay: #f5f4f4, #fdfdfd</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-66.jpg" alt="" /></p>
<p><strong>Result</strong></p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-67.jpg" alt="" /></p>
<p>Using <strong>Text Tool(T)</strong> add a dummy text.</p>
<p><strong>Font Settings</strong></p>
<ul>
<li>Font Name: Helvetica Neue</li>
<li>Weight: Light Condensed</li>
<li>Size: 20pt</li>
<li>Color: #444444</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-68.jpg" alt="" /></p>
<h3>Button</h3>
<p>Create a <strong>210px</strong> by <strong>50px</strong> shape using <strong>Rounded Rectangle Tool(U)</strong>, apply the same <em>Gradient Overlay</em> and <em>Inner Shadow</em>.</p>
<p><strong>Apply this Blending Option</strong></p>
<ul>
<li>Stroke: #cf8606</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-69.jpg" alt="" /></p>
<p>Label it with <em>CONSULT NOW</em> using <strong>Text Tool(T)</strong>.</p>
<p><strong>Font Settings</strong></p>
<ul>
<li>Font Name: Helvetica Neue</li>
<li>Weight: Roman</li>
<li>Size: 18pt</li>
<li>Color: #fff, #cf8606</li>
</ul>
<p><strong>Result</strong></p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-70.jpg" alt="" /></p>
<h2>Step 6: Working on Services</h2>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-71.jpg" alt="" /></p>
<p>Service area is divided into <em>4 columns</em>. Each column has a size of <strong>210px</strong> by <strong>125px</strong>. The distance of each column will be <strong>40px</strong>. Create this guide by measuring using <strong>Ruler Tool(I)</strong>.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-72.jpg" alt="" /></p>
<p>Open up the <em>icons set</em> that you have downloaded from the resource and place it as shown in the screen shot below. Next label each Icon using <strong>Text Tool(T)</strong>.</p>
<p><strong>Font Settings</strong></p>
<ul>
<li>Font Name: Helvetica Neue</li>
<li>Weight: Condensed</li>
<li>Size: 18pt</li>
<li>Color: #444444</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-73.jpg" alt="" /></p>
<p>Using <strong>Line Tool(U)</strong> color <strong>#bfbfbf, #f8f8f</strong> create lines as shown in the screenshot below.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-74.jpg" alt="" /></p>
<p>Once you are done, merge all the line shape and <strong>mask</strong> it by clicking the mask icon from the layers panel. Using <strong>Brush Tool</strong> paint every edges of the line. You should have similar to the screenshot below.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-75.jpg" alt="" /></p>
<h2>Step 7: Working on Video Tour</h2>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-76.jpg" alt="" /></p>
<p>Using <strong>Text Tool(T)</strong> add a header text.</p>
<p><strong>Font Settings</strong></p>
<ul>
<li>Font Name: Helvetica Neue</li>
<li>Weight: Condensed</li>
<li>Size: 22pt</li>
<li>Color: #444444</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-77.jpg" alt="" /></p>
<p>Using <strong>Rectangle Tool(U)</strong> create a <strong>460px</strong> by <strong>255px</strong> shape, color <strong>#dddddd</strong>.</p>
<p><strong>Apply this Blending Option</strong></p>
<ul>
<li>Outer Glow: #bfbfbf</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-78.jpg" alt="" /></p>
<ul>
<li>Stroke: #fff</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-79.jpg" alt="" /></p>
<p>Place some sample play button at the center of the shape.</p>
<p><strong>Result</strong></p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-76.jpg" alt="" /></p>
<h2>Step 8: Working on About Us and Testimonials</h2>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-80.jpg" alt="" /></p>
<p>Header font is the same, for the paragraph use the font settings below.</p>
<p><strong>Font Settings</strong></p>
<ul>
<li>Font Name: Arial</li>
<li>Weight: Regular</li>
<li>Size: 12pt</li>
<li>Color: #444444</li>
</ul>
<p>For the thumbnail in the testimonials area create a shape <strong>70px</strong> by <strong>70px</strong> and apply the same blending option as we did in our video tour. Change the stroke size to <strong>3px</strong>. For the <em>quotation</em> follow the font settings below.</p>
<p><strong>Font Settings</strong></p>
<ul>
<li>Font Name: Arial</li>
<li>Weight: Regular</li>
<li>Size: 215pt</li>
<li>Color: #dad9d9</li>
</ul>
<p><strong>Result</strong></p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-80.jpg" alt="" /></p>
<h2>Step 9: Working on Footer</h2>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-85.jpg" alt="" /></p>
<p>Our footer will contain <em>Quick Links, Latest Posts, Latest Tweets, We Socialize, and Copyright</em>. The width of this will be the same to our <strong>4 columns</strong> as we did in the services area.</p>
<p>To start let&#8217;s create the base background first. At the very bottom of the canvas create a <strong>100%</strong> by <strong>45px</strong> shape, color <strong>#04203b</strong> using <strong>Rectangle Tool(U)</strong>. On top of it create another shape size <strong>100%</strong> by <strong>450px</strong> shape, color <strong>#052342</strong>. Duplicate the paper texture we made on our header and slideshow area then place it below to our footer.</p>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-86.jpg" alt="" /></p>
<h3>Quick Links</h3>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-87.jpg" alt="" /></p>
<p>The header title will be place <strong>30px</strong> below the shape. Each link will have a distance of <strong>15px</strong> from the dividers. Divider color will be <strong>#265686</strong></p>
<p><strong>Header</strong></p>
<ul>
<li>Font Name: Helvetica Neue</li>
<li>Weight: Condensed</li>
<li>Size: 18pt</li>
<li>Color: #fff</li>
</ul>
<p><strong>Links</strong></p>
<ul>
<li>Font Name: Arial</li>
<li>Weight: Regular</li>
<li>Size: 12pt</li>
<li>Color: #fff</li>
</ul>
<h3>Latest Posts</h3>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-88.jpg" alt="" /></p>
<p>For the latest post still the same text format as we did in Quick links.</p>
<p><strong>Date</strong></p>
<ul>
<li>Font Name: Arial</li>
<li>Weight: Regular</li>
<li>Size: 11pt</li>
<li>Color: #8496a9</li>
</ul>
<h3>Latest Tweets</h3>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-89.jpg" alt="" /></p>
<p><strong>Text</strong></p>
<ul>
<li>Font Name: Arial</li>
<li>Weight: Regular</li>
<li>Size: 12pt</li>
<li>Color: #8496a9</li>
</ul>
<p><strong>Link</strong></p>
<ul>
<li>Font Name: Arial</li>
<li>Weight: Regular</li>
<li>Size: 12pt</li>
<li>Color: #fcc757</li>
</ul>
<h3>We Socialize</h3>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-90.jpg" alt="" /></p>
<p>Place the Icons you have downloaded from the resource accordingly as shown in the screenshot above.</p>
<p><strong>Apply this Blending Option</strong></p>
<ul>
<li>Drop Shadow: #000</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-91.jpg" alt="" /></p>
<ul>
<li>Inner Shadow: #fff</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-92.jpg" alt="" /></p>
<ul>
<li>Gradient Overlay: #03b8ff, #89e3fe</li>
</ul>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-93.jpg" alt="" /></p>
<h3>Copyright</h3>
<p><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-94.jpg" alt="" /></p>
<h2><strong>Here is our Final Result!</strong></h2>
<p><a title="Preview" href="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-fullsize.jpg"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/snickles-tut-img-preview.jpg" alt="" /></a><br />
<a href="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/11/1stwebdesignerSnickles.zip" target="_blank">PSD Download</a></p>
<p>I hope you enjoyed and learned something from this tutorial. Don&#8217;t forget to comment, share and subscribe. Thank you! :)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.1stwebdesigner.com/tutorials/modern-business-template-tutorial/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

