<?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>Design Woop &#124; The Web Design and Development Blog &#187; Tutorials</title>
	<atom:link href="http://designwoop.com/category/tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://designwoop.com</link>
	<description>The Web design blog brought to you by David Martin</description>
	<lastBuildDate>Thu, 02 Feb 2012 08:00:00 +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>Tutorial: Create A Minimal Single Page Portfolio With HTML5/CSS3</title>
		<link>http://designwoop.com/2012/02/tutorial-create-a-minimal-single-page-portfolio-with-html5css3/</link>
		<comments>http://designwoop.com/2012/02/tutorial-create-a-minimal-single-page-portfolio-with-html5css3/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 08:00:00 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[All Posts]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Minimal]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://designwoop.com/2012/02/tutorial-create-a-minimal-single-page-portfolio-with-html5css3/</guid>
		<description><![CDATA[This tutorial is the second installment of how to create a minimal single page portfolio using HTML5 and CSS3, take a look at part one where I initially <a title="Tutorial: Create A Minimal Single Page Portfolio Design In PhotoShop" href="http://designwoop.com/2011/08/tutorial-create-a-minimal-single-page-portfolio-design-in-photoshop/">designed the single page portfolio concept</a>. In this tutorial I will walk you through the basic front-end build and what resources I used to rapidly build the page.]]></description>
			<content:encoded><![CDATA[<p>This tutorial is the second installment of how to create a minimal single page portfolio using HTML5 and CSS3, take a look at part one where I initially <a rel="nofollow" title="Tutorial: Create A Minimal Single Page Portfolio Design In PhotoShop" href="http://designwoop.com/2011/08/tutorial-create-a-minimal-single-page-portfolio-design-in-photoshop/">designed the single page portfolio concept</a>. In this tutorial I will walk you through the basic front-end build and what resources I used to rapidly build the page.</p>
<h3>The Design</h3>
<p><img class="alignnone size-large wp-image-7440" title="David Martin - A Web Designer &amp; Developer - Tunbridge Wells, Kent._1325439810610" src="http://designwoop.com/uploads/2012/02/David-Martin-A-Web-Designer-Developer-Tunbridge-Wells-Kent._1325439810610-580x721.png" alt="" width="580" height="721" /></p>
<h3>Resources Used</h3>
<p><a rel="nofollow" href="http://www.fontsquirrel.com/fonts/TitilliumText" target="_blank">Titillium Text</a> &#8211; Using @font-face for heading typography.</p>
<p><a rel="nofollow" href="http://dev7studios.com/portfolio/form-producer/" target="_blank">Form Producer</a> &#8211; Used for basic form demo.</p>
<p><a rel="nofollow" href="http://www.premiumpixels.com/freebies/apple-ios-linen-texture/" target="_blank">Apple iOS Linen Texture</a> &#8211; Used for the background texture.</p>
<p><a rel="nofollow" href="http://lab.tylergaw.com/jribbble/" target="_blank">Jribbble</a> &#8211; A jQuery plugin to pull in some dribbble shots.</p>
<p><a rel="nofollow" href="http://html5boilerplate.com/" target="_blank">HTML5 Boilerplate</a> &#8211; A HTML5 framework to build our design on.</p>
<p><a rel="nofollow" href="http://960.gs/" target="_blank">960 Grid System</a> &#8211; A CSS framework to provide pixel perfect from design to code.</p>
<h3>Basic HTML5 Layout</h3>
<p>Our basic layout section starts with the HTML5 doctype and the usual stuff such as the title/meta tags and the CSS links to two stylesheets. One is the 960 grid frame work which will allow me to quickly and easily code up the site from my previous design, the other stylesheet is where I place the styles for the page. I have kept these separate for demonstration purposes. I lastly use the HTML5 Autocorrect form attribute in the message text area, this is again useful for mobile users who may have fat or clumsy fingers ;).</p>
<pre class="brush: php; title: ; notranslate">

&lt;!doctype html&gt;
&lt;head&gt;
  &lt;meta charset=&quot;utf-8&quot;&gt;
  &lt;title&gt;David Martin - A Web Designer &amp;amp; Developer - Tunbridge Wells, Kent.&lt;/title&gt;
	  &lt;meta name=&quot;description&quot; content=&quot;David Martin - Web Design Tunbridge Wells&quot;&gt;
	  &lt;meta name=&quot;author&quot; content=&quot;David Martin @webadelic&quot;&gt;
	  &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,initial-scale=1&quot;&gt;
	  &lt;link rel=&quot;stylesheet&quot; href=&quot;css/grid/960_12_col.css&quot;&gt;
	  &lt;link rel=&quot;stylesheet&quot; href=&quot;css/style.css&quot;&gt;
&lt;/head&gt;
&lt;body&gt;
</pre>
<h3>Header</h3>
<p>The page concept is pretty simply so semantically dividing the sections up is easy. I use HTML5 elements such as &lt;header&gt; to markup the intro block as this is the introduction to the section and &lt;hrgroup&gt; to markup the intro text for the current section.</p>
<pre class="brush: php; title: ; notranslate">
  &lt;div id=&quot;header-line&quot;&gt;&lt;/div&gt;

  &lt;div class=&quot;container_12&quot;&gt;

  	&lt;header&gt;

		&lt;div class=&quot;grid_3 push_1&quot;&gt;

			&lt;img src=&quot;img/webadelic-logo.png&quot; alt=&quot;Webadelic - Web Design Tunbridge Wells&quot; border=&quot;0&quot; width=&quot;140&quot; height=&quot;94&quot; /&gt;

		&lt;/div&gt;

		&lt;hgroup class=&quot;grid_7 push_1 intro&quot;&gt;

			&lt;h1&gt;Hello! My name is David!&lt;/h1&gt;

			&lt;h2&gt;A web developer &amp;amp; designer from Tunbridge Wells, UK.&lt;/h2&gt;

		&lt;hgroup&gt;

    &lt;/header&gt;

    &lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;
</pre>
<h3>Body</h3>
<p>I group the body contents of the page using the HTML5 elements &lt;section&gt; and &lt;article&gt;. I use the &lt;section&gt; element to group the small &#8216;About&#8217; left column and the right side &#8216;Contact&#8217; form.</p>
<p>Notice I also nest both the left and right columns using the &lt;article&gt; element. I used the &lt;article&gt; element to markup the left and right content areas as two separate pieces of content inside the main &lt;section&gt; element.</p>
<p>When constructing the form you can see I was able to use some new HTML5 form elements to improve the form functionality. Notice for the text inputs I use the Placeholder attribute, this displays text in the field until the field is focused.</p>
<p>A useful HTML5 form attribute is Auto capitalization, this is useful for mobile users who may not want their phones to add capital letters to their email fields.</p>
<p>I lastly used the HTML5 form attribute Autocorrect on the message textarea to help mobile users who may have clumsy fingers ;).</p>
<p>There are more HTML5 form elements you could add to this form, but for now this is simply a demo.  I would recommend also using the Required attribute to improve your form validation. Have a play around and enjoy!</p>
<p>The Dribbble shot feed is pulled in using the jQuery plugin, for now I simply add &lt;ul id=&#8221;feed&#8221;&gt;&lt;/ul&gt; to the page, this is where the feed will be pulled in. There are some configuration options you will need to amend in the plugin, you can <a rel="nofollow" href="https://github.com/tylergaw/jribbble/blob/master/README.md" target="_blank">read up on this here</a> or simply view the demo.</p>
<pre class="brush: php; title: ; notranslate">

   &lt;div id=&quot;horizontal-line-full&quot;  class=&quot;push_1&quot;&gt;&lt;/div&gt;

		&lt;div id=&quot;main&quot; role=&quot;main&quot; class=&quot;grid_10 push_1&quot;&gt;
			&lt;section&gt;

				&lt;article class=&quot;grid_4 about&quot;&gt;

					&lt;header&gt;

						&lt;h3&gt;About&lt;/h3&gt;

					&lt;/header&gt;

					&lt;p&gt;Maurizzle tellivizzle nibh bling bling for sure. Ghetto izzle sheezy. Pellentesque yo mamma rhoncus owned. Gangster hac nizzle platea dictumst.&lt;/p&gt;

					&lt;p&gt;Maurizzle tellivizzle nibh bling bling for sure. Ghetto izzle sheezy. Pellentesque yo mamma rhoncus owned. Gangster hac nizzle platea dictumst.&lt;/p&gt;

					&lt;p&gt;Maurizzle tellivizzle nibh bling bling for sure. Ghetto izzle sheezy. Pellentesque yo mamma rhoncus owned. Gangster hac nizzle platea dictumst.&lt;/p&gt;

				&lt;/article&gt;

			&lt;/section&gt;

				&lt;div class=&quot;grid_2 column&quot;&gt;&lt;/div&gt;

			&lt;section&gt;

				&lt;article class=&quot;grid_4 contact&quot;&gt;

					&lt;header&gt;

						&lt;h3&gt;Contact&lt;/h3&gt;

					&lt;/header&gt;

							&lt;section class=&quot;contact-me&quot;&gt;

								&lt;label for=&quot;name&quot;&gt;Name&lt;/label&gt;
								&lt;input type=&quot;text&quot; name=&quot;name&quot; id=&quot;name&quot; placeholder=&quot;Your name&quot; autocapitalize=&quot;on&quot; autocorrect=&quot;on&quot; /&gt;

								&lt;label for=&quot;email&quot;&gt;Email&lt;/label&gt;
								&lt;input type=&quot;email&quot; name=&quot;email&quot; id=&quot;email&quot; placeholder=&quot;Your email&quot; autocapitalize=&quot;off&quot; autocorrect=&quot;on&quot; /&gt;

								&lt;label for=&quot;website&quot;&gt;Message&lt;/label&gt;
								&lt;textarea name=&quot;message&quot; id=&quot;message&quot; placeholder=&quot;Your message&quot; autocorrect=&quot;on&quot;&gt;&lt;/textarea&gt;

								&lt;button class=&quot;button&quot; name=&quot;submit&quot; id=&quot;submit&quot;&gt;Send&lt;/button&gt;

							&lt;/section&gt;

						&lt;/form&gt;

				&lt;/article&gt;

			&lt;/section&gt;

			&lt;section&gt;

				&lt;article class=&quot;grid_10 projects&quot;&gt;

						&lt;header&gt;

							&lt;h3&gt;Projects&lt;/h3&gt;

						&lt;/header&gt;

						&lt;p&gt;You can check out some of the designs I am working on which are being fed from my &lt;a href=&quot;http://dribbble.com/webadelic&quot; rel=&quot;nofollow&quot;&gt;Dribbble feed&lt;/a&gt;, one day when I have some spare time I’ll develop this site a little further to actually show some full project details...&lt;em&gt;I promise&lt;/em&gt;.&lt;/p&gt;

						&lt;ul id=&quot;feed&quot;&gt;&lt;/ul&gt;

				&lt;/article&gt;

			&lt;/section&gt;
</pre>
<h3>Footer</h3>
<p>I can once again use more HTML5 elements to semantically divide the footer section up,  I first wrap the entire footer with the &lt;footer&gt; attribute.</p>
<p>The &lt;footer&gt; attribute can be used at the end of documents and sections and typically are used to provide the author information or other miscellaneous text.</p>
<p>Inside the &lt;footer&gt; attribute I divide the left and right links into two separate sections using &lt;section&gt;, this allows me to separate the grouping of content in more semantic way.</p>
<pre class="brush: php; title: ; notranslate">

    &lt;footer class=&quot;grid_10 footer&quot;&gt;

    	&lt;section id=&quot;social-procrastination&quot; class=&quot;grid_6&quot;&gt;

    		&lt;ul&gt;
    			&lt;li id=&quot;twitter&quot;&gt;
    				&lt;a href=&quot;http://twitter.com/#!webadelic&quot; rel=&quot;nofollow&quot; title=&quot;David Martin (@webadelic) on Twitter&quot;&gt;
						&lt;span&gt;David Martin (@webadelic) on Twitter&lt;/span&gt;
					&lt;/a&gt;
    			&lt;/li&gt;
    			&lt;li id=&quot;gplus&quot;&gt;
	    			&lt;a href=&quot;https://plus.google.com/108725634593324907312/posts&quot; rel=&quot;nofollow&quot;&gt;
	    				&lt;span&gt;David Martin (@webadelic) on Google Plus&lt;/span&gt;
	    			&lt;/a&gt;
    			&lt;/li&gt;
 				&lt;li id=&quot;dribbble&quot;&gt;
 					&lt;a href=&quot;http://dribbble.com/webadelic&quot; rel=&quot;nofollow&quot;&gt;
 						&lt;span&gt;David Martin (@webadelic) on Dribbble&lt;/span&gt;
 					&lt;/a&gt;
 				&lt;/li&gt;
    		&lt;/ul&gt;

    	&lt;/section&gt;

    	&lt;section id=&quot;footer-email&quot; class=&quot;grid_2 push_2&quot;&gt;

    		&lt;p&gt;&lt;a href=&quot;mailto:david@webadelic.co.uk&quot; rel=&quot;nofollow&quot;&gt;david@webadelic.co.uk&lt;/a&gt;&lt;/p&gt;

    	&lt;/section&gt;

    &lt;/footer&gt;

  &lt;/div&gt; &lt;!-- end of #container --&gt;

&lt;/body&gt;
&lt;/html&gt;
</pre>
<h3>Using CSS</h3>
<p>Now we have created the basic HTML5 layout, we are ready to add the CSS. Here I will walk you through a <strong>few basics of the CSS I used</strong> to code up the design. To see the full CSS I used to achieve the exact layout <a rel="nofollow" href="http://designwoop.com/labs/portfolio/" target="_blank">view the demo</a> and have a snoop around.</p>
<p>I use the 960.gs grid with some custom styles in order to match the site with the design, if you take a look at the source code you will see my references to the grid columns in the code, a good write up on <a rel="nofollow" href="http://sixrevisions.com/web_design/the-960-grid-system-made-easy/" target="_blank">using the 960 grid</a> is available from Six Revisions. If you would like to explore the CSS code better, its all available in the demo.</p>
<p><em>Before I add the CSS:</em></p>
<p><a rel="nofollow" href="http://designwoop.com/uploads/2012/02/nocss.png"><img class="alignnone size-large wp-image-7441" title="nocss" src="http://designwoop.com/uploads/2012/02/nocss-580x787.png" alt="" width="580" height="787" /></a></p>
<h3>Header</h3>
<p>First off I am setting the background texture to the downloaded and modified <a rel="nofollow" href="http://www.premiumpixels.com/freebies/apple-ios-linen-texture/" target="_blank">Apple iOS Linen Texture</a>. Next I am setting the body fonts, I want the fonts to show as Helvetica Neue if possible but if this font is not available I will roll back to either Helvetica or Arial respectively.</p>
<pre class="brush: php; title: ; notranslate">
body {
margin: 0;
background-image: url(../img/bg.png);
font: 11px/20px &quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif;
line-height: 1.231;
}
</pre>
<h3>Heading Fonts</h3>
<p>As stated I wanted to use Titillium text on the heading fonts, as the font is available in various different formats and is font-face compatible I can use @font-face. I download the fonts and place them in a folder in the site directory and call them using the below @font-face code:</p>
<pre class="brush: php; title: ; notranslate">&lt;/pre&gt;
&lt;pre id=&quot;line1&quot;&gt;h1 {font: 35px/15px 'TitilliumText22LXBold', Arial, sans-serif;letter-spacing: 2px;}
h2 {font: 20px/15px 'TitilliumText22LThin', Arial, sans-serif;letter-spacing: 1px; 	color:#8a8989;}
h3 {font: 28px/15px 'TitilliumText22LThin', Arial, sans-serif;letter-spacing: 1px;}
p{color:#8a8989;}

@font-face {
    font-family: 'TitilliumText22LThin';
    src: url('../fonts/TitilliumText22L001-webfont.eot');
    src: url('../fonts/TitilliumText22L001-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/TitilliumText22L001-webfont.woff') format('woff'),
         url('../fonts/TitilliumText22L001-webfont.ttf') format('truetype'),
         url('../fonts/TitilliumText22L001-webfont.svg#TitilliumText22LThin') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'TitilliumText22LRegular';
    src: url('../fonts/TitilliumText22L003-webfont.eot');
    src: url('../fonts/TitilliumText22L003-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/TitilliumText22L003-webfont.woff') format('woff'),
         url('../fonts/TitilliumText22L003-webfont.ttf') format('truetype'),
         url('../fonts/TitilliumText22L003-webfont.svg#TitilliumText22LRegular') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'TitilliumText22LBold';
    src: url('../fonts/TitilliumText22L005-webfont.eot');
    src: url('../fonts/TitilliumText22L005-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/TitilliumText22L005-webfont.woff') format('woff'),
         url('../fonts/TitilliumText22L005-webfont.ttf') format('truetype'),
         url('../fonts/TitilliumText22L005-webfont.svg#TitilliumText22LBold') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'TitilliumText22LXBold';
    src: url('../fonts/TitilliumText22L006-webfont.eot');
    src: url('../fonts/TitilliumText22L006-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/TitilliumText22L006-webfont.woff') format('woff'),
         url('../fonts/TitilliumText22L006-webfont.ttf') format('truetype'),
         url('../fonts/TitilliumText22L006-webfont.svg#TitilliumText22LXBold') format('svg');
    font-weight: normal;
    font-style: normal;

}
</pre>
<h3>Form</h3>
<p>Styling the form allows me to use some nice CSS3 effects to match up with the design without having to use images.</p>
<p>I use the following CSS3 to achieve an indented effect on the form inputs, I think this is a pleasant and simple way of making the form inputs. I achieve the indented textfield using the CSS box shadow technique and using a -1px black line:  0 -1px 0 0px which has its opacity set to 0.1: rgba(0,0,0,0.1). <em>See below</em>:</p>
<pre class="brush: php; title: ; notranslate">
   -moz-box-shadow: 0 -1px 0 0px rgba(0,0,0,0.1);
   -webkit-box-shadow: 0 -1px 0 0px rgba(0,0,0,0.1);
   box-shadow: 0 -1px 0 0px rgba(0,0,0,0.1);
</pre>
<p><strong>The Complete Form CSS</strong></p>
<pre class="brush: php; title: ; notranslate">&lt;/pre&gt;
&lt;pre id=&quot;line1&quot;&gt;/* Contact Form */

 label {
 	margin: 0 0 10px 0;
 	display: block;
 	font-weight: normal;
 }

 .error{color:red;}

 #form_producer input[type=&quot;text&quot;], .contact-me input[type=&quot;email&quot;] {
	float:left;
	clear:both;
	margin:0 0 15px 0;
	padding:3px 6px;
	width:300px;
	height:24px;
	border:none;
	color:#8a8989;
	background:#f9f9f9;
		-moz-box-shadow: 0 -1px 0 0px rgba(0,0,0,0.1);
		-webkit-box-shadow: 0 -1px 0 0px rgba(0,0,0,0.1);
		box-shadow: 0 -1px 0 0px rgba(0,0,0,0.1);
 }

 #form_producer textarea{
 	float:left;
 	clear:both;
 	margin:0 0 15px 0;
 	padding:3px;
 	width:305px;
 	height:90px;
 	border:none;
 	color:#8a8989;
	background:#f9f9f9;
		-moz-box-shadow: 0 -1px 0 0px rgba(0,0,0,0.1);
		-webkit-box-shadow: 0 -1px 0 0px rgba(0,0,0,0.1);
		box-shadow: 0 -1px 0 0px rgba(0,0,0,0.1);
 }

 .button{
 	float:left;
	clear:both;
	background-color:#ebe9e9;
	border:solid 1px #ebe9e9;
	width:140px;
	height:30px;
	text-transform:uppercase;
	font-size: 0.9em;
	letter-spacing:1px;
		background-image: linear-gradient(top, rgb(241,241,241) 50%, rgb(235,233,233) 50%);
		background-image: -o-linear-gradient(top, rgb(241,241,241) 50%, rgb(235,233,233) 50%);
		background-image: -moz-linear-gradient(top, rgb(241,241,241) 50%, rgb(235,233,233) 50%);
		background-image: -webkit-linear-gradient(top, rgb(241,241,241) 50%, rgb(235,233,233) 50%);
		background-image: -ms-linear-gradient(top, rgb(241,241,241) 50%, rgb(235,233,233) 50%);

		background-image: -webkit-gradient(
			linear,
			left top,
			left bottom,
			color-stop(0.5, rgb(241,241,241)),
			color-stop(0.5, rgb(235,233,233))
		);
 }

 	.button:hover{
 		opacity: 0.8;
 	}

 		.button:active{
 			opacity: 0.4;
 		}
</pre>
<h3>The Dribbble Feed</h3>
<p>The dribbble shot feed is styled using some simple CSS to remove the list bullets and to get each image to sit next to the next correctly. <em>See below:</em></p>
<pre class="brush: php; title: ; notranslate">
ul#feed{
list-style-type: none;
margin: 60px 0;
padding: 0;
}

#feed li{
float: left;
margin: 0 45px 45px 0;
padding:5px;
width: 200px;
height: 150px;
border: solid 1px #dedbdb;
background: #fff;
}
</pre>
<h3>Footer</h3>
<p>To give the social icons a little hover effect, we can use the CSS3 opacity attribute. When a user hovers over, the opacity is changed to o.8.</p>
<pre class="brush: php; title: ; notranslate">

#twitter a:hover, #gplus a:hover, #dribbble a:hover{
opacity:0.8;
}
</pre>
<p><strong>Demo:</strong> <a rel="nofollow" href="http://designwoop.com/labs/portfolio/" target="_blank">View the demo &#8211; Single Page HTML5 Portfolio</a></p>
]]></content:encoded>
			<wfw:commentRss>http://designwoop.com/2012/02/tutorial-create-a-minimal-single-page-portfolio-with-html5css3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tutorial: Creating A Sticky Sidebar Using jQuery</title>
		<link>http://designwoop.com/2011/09/tutorial-creating-a-sticky-sidebar-using-jquery/</link>
		<comments>http://designwoop.com/2011/09/tutorial-creating-a-sticky-sidebar-using-jquery/#comments</comments>
		<pubDate>Thu, 15 Sep 2011 09:00:00 +0000</pubDate>
		<dc:creator>Alexandre Smirnov</dc:creator>
				<category><![CDATA[All Posts]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://designwoop.com/?p=5709</guid>
		<description><![CDATA[Today, I will be showing how to create a jQuery sticky sidebar script. Now, I'm sure many of you have a question: Why can't I just use "position:fixed"?

Well, you can, but then the element with that style will stay where it is relative to the top of the viewport.

This means, if the element you are "fixing" in place is in the center of the page, it will stay in the center of the page as you scroll down. With this script, it will stay wherever you want it to be.]]></description>
			<content:encoded><![CDATA[<p><em>DesignWoop welcomes this guest post by <a rel="nofollow" href="http://www.designlunatic.com/" rel="nofollow" target="_blank">Alexandre Smirnov</a> a web designer and developer who lives and works in Cal­i­for­nia.</em></p>
<p>Today, I will be showing how to create a jQuery sticky sidebar script. Now, I&#8217;m sure many of you have a question: Why can&#8217;t I just use &#8220;position:fixed&#8221;?</p>
<p>Well, you can, but then the element with that style will stay where it is relative to the top of the viewport.</p>
<p>This means, if the element you are &#8220;fixing&#8221; in place is in the center of the page, it will stay in the center of the page as you scroll down. With this script, it will stay wherever you want it to be.</p>
<h3>Check out the demo</h3>
<p><strong><a rel="nofollow" href="http://designwoop.com/labs/jquery-sticky-sidebar/index.html" target="_blank"> jQuery sticky sidebar script</a></strong></p>
<h3>You may also like:</h3>
<p><strong><a rel="nofollow" title="Using jQuery To Create Smooth Page Scrolling" href="../2011/01/using-jquery-to-create-smooth-page-scrolling/" rel="bookmark">Using jQuery To Create Smooth Page Scrolling</a></strong></p>
<p><strong><a rel="nofollow" title="How To: Create a jQuery sticky sidebar" href="../2011/01/how-to-create-a-jquery-sticky-sidebar/" rel="bookmark">How To: Create a jQuery scrolling sidebar</a></strong></p>
<h3>Setting the HTML</h3>
<p>Now, we&#8217;re going to start off with some simple HTML for the sticky sidebar. In this case, we&#8217;ll be &#8220;sticking&#8221; a div with an id of &#8220;sticky&#8221;.</p>
<pre class="brush: xml; title: ; notranslate">&lt;br /&gt;
&amp;amp;lt;div id=&amp;amp;quot;sticky&amp;amp;quot;&amp;amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;amp;lt;/div&amp;amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;amp;lt;div id=&amp;amp;quot;text&amp;amp;quot;&amp;amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;amp;lt;/div&amp;amp;gt;&lt;br /&gt;
</pre>
<h3>Setting the CSS</h3>
<p>Now that we&#8217;ve got the foundation, we can apply some styles to it to make the page look nice.</p>
<pre class="brush: css; title: ; notranslate">&lt;br /&gt;
body {&lt;br /&gt;
    background: #fbfbfb;&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;#container {&lt;br /&gt;
    width: 744px;&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;#text {&lt;br /&gt;
    color: #333333;&lt;br /&gt;
    margin-top: 100px;&lt;br /&gt;
    width: 500px;&lt;br /&gt;
    height: 10000px;&lt;br /&gt;
    float: right;&lt;br /&gt;
    font-size: 15px;&lt;br /&gt;
    line-height: 23px;&lt;br /&gt;
}&lt;br /&gt;
</pre>
<p>Of course, we&#8217;re also going to need to style our sticky element.</p>
<pre class="brush: css; title: ; notranslate">&lt;br /&gt;
#sticky {&lt;br /&gt;
margin-top: 50px;&lt;br /&gt;
margin-left: 50px;&lt;br /&gt;
padding:5px;&lt;br /&gt;
background: rgba(255,255,255,1);&lt;br /&gt;
height: 120px;&lt;br /&gt;
width: 305px;&lt;br /&gt;
-webkit-border-radius: 7px;&lt;br /&gt;
-moz-border-radius: 7px;&lt;br /&gt;
border-radius: 7px;&lt;br /&gt;
}&lt;br /&gt;
</pre>
<h3>Setting the jQuery</h3>
<p>Great, now we can move on to the <a rel="nofollow" href="http://designwoop.com/tag/jquery/">jQuery</a> that will make this all work. Before we begin, let me clarify exactly how the logic behind this goes. We have a normal element, just sitting on the page. Then, when the page is scrolled enough that the element we&#8217;re sticking is touching the top of the viewport, we &#8220;stick&#8221; the element.</p>
<p>What that means? We set the element to be &#8220;position:fixed&#8221;, after which we give it margins that will place it into the same stop where it was before being fixed? Sound complicated? Don&#8217;t worry, the code is actually quite simple.</p>
<p>First, we declare some variables.</p>
<pre class="brush: jscript; title: ; notranslate">&lt;br /&gt;
var obj = $('#sticky');&lt;br /&gt;
var offset = obj.offset();&lt;br /&gt;
var topOffset = offset.top;&lt;br /&gt;
var leftOffset = offset.left;&lt;br /&gt;
var marginTop = obj.css(&amp;amp;quot;marginTop&amp;amp;quot;);&lt;br /&gt;
var marginLeft = obj.css(&amp;amp;quot;marginLeft&amp;amp;quot;);&lt;br /&gt;
</pre>
<p>We need these values to be able to position the element correctly when it is &#8220;stuck&#8221;.</p>
<p>Next, we have to create a window scroll function. This function will execute every time the page is scrolled.</p>
<pre class="brush: jscript; title: ; notranslate">&lt;br /&gt;
$(window).scroll(function() {&lt;br /&gt;
	var scrollTop = $(window).scrollTop();&lt;br /&gt;
});&lt;br /&gt;
</pre>
<p>As you can see, the syntax is quite simple. Also, take a look at the &#8220;scrollTop&#8221; variable. This variable will be updated every time the page is scrolled. It holds the value of how far the user has scrolled. Specifically, how far away the top of the viewport is from the top of the actual page.</p>
<p>Now, we&#8217;re going to need two &#8220;if&#8221; statements. One of them will execute if the user has scrolled to the sticky element. Now, the next &#8220;if&#8221; statement may seem extra at first.</p>
<p>However, it is actually very important. Image that the user has scrolled down, and the sticky element has been &#8220;stuck&#8221;. Then, imagine what would happen if the user were to scroll back up the page?</p>
<p>The element would stay &#8220;stuck&#8221;, instead of going back to its previous position. In order to fix it, we&#8217;re going to have a function that checks if the sticky element is higher than its original position. If it is, the function reapplies the original styles. That&#8217;s why we need so many variables at the top of the javascript.</p>
<p>These are the &#8220;if&#8221; statements:</p>
<pre class="brush: jscript; title: ; notranslate">&lt;br /&gt;
	if (scrollTop &amp;amp;gt;= topOffset){&lt;/p&gt;
&lt;p&gt;		obj.css({&lt;br /&gt;
			marginTop: 0,&lt;br /&gt;
			marginLeft: leftOffset,&lt;br /&gt;
			position: 'fixed',&lt;br /&gt;
		});&lt;br /&gt;
	}&lt;/p&gt;
&lt;p&gt;	if (scrollTop &amp;amp;lt; topOffset){ 		obj.css({ 			marginTop: marginTop, 			marginLeft: marginLeft, 			position: 'relative', 		}); 	} </pre>
<p>Those &#8220;if&#8221; statements are the meat of this code &#8211; they make everything work. Here&#8217;s the end result:</p>
<pre class="brush: jscript; title: ; notranslate"> var obj = $('#sticky'); var offset = obj.offset(); var topOffset = offset.top; var leftOffset = offset.left; var marginTop = obj.css(&amp;amp;quot;marginTop&amp;amp;quot;); var marginLeft = obj.css(&amp;amp;quot;marginLeft&amp;amp;quot;); $(window).scroll(function() { var scrollTop = $(window).scrollTop(); 	if (scrollTop &amp;amp;gt;= topOffset){&lt;/p&gt;
&lt;p&gt;		obj.css({&lt;br /&gt;
			marginTop: 0,&lt;br /&gt;
			marginLeft: leftOffset,&lt;br /&gt;
			position: 'fixed',&lt;br /&gt;
		});&lt;br /&gt;
	}&lt;/p&gt;
&lt;p&gt;	if (scrollTop &amp;amp;lt; topOffset){&lt;/p&gt;
&lt;p&gt;		obj.css({&lt;br /&gt;
			marginTop: marginTop,&lt;br /&gt;
			marginLeft: marginLeft,&lt;br /&gt;
			position: 'relative',&lt;br /&gt;
		});&lt;br /&gt;
	}&lt;br /&gt;
});&lt;br /&gt;
</pre>
<p>Well, that&#8217;s the end of this tutorial. I hope you enjoyed it! Also, don&#8217;t forget to actually include the jQuery library, and don&#8217;t forget to wrap everything in a $(document).ready(function(){} as well.</p>
<h3>Check out the demo</h3>
<p><strong><a rel="nofollow" href="http://designwoop.com/labs/jquery-sticky-sidebar/index.html" target="_blank"> jQuery sticky sidebar script</a></strong></p>
<p>I actually made this into a jQuery plugin, so if you intend to use this in one of your future projects, I would suggest downloading the plugin: <a rel="nofollow" href="http://www.designlunatic.com/projects/jsticky/">jSticky</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://designwoop.com/2011/09/tutorial-creating-a-sticky-sidebar-using-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tutorial: Create A Minimal Single Page Portfolio Design In PhotoShop</title>
		<link>http://designwoop.com/2011/08/tutorial-create-a-minimal-single-page-portfolio-design-in-photoshop/</link>
		<comments>http://designwoop.com/2011/08/tutorial-create-a-minimal-single-page-portfolio-design-in-photoshop/#comments</comments>
		<pubDate>Mon, 01 Aug 2011 14:00:00 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[All Posts]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Minimal]]></category>

		<guid isPermaLink="false">http://designwoop.com/2011/08/tutorial-create-a-minimal-single-page-portfolio-design-in-photoshop/</guid>
		<description><![CDATA[Today I will show you how I created this minimal &#038; stylish single page portfolio design in Photoshop, I will show you step by step how I use the 960 Grid System with textures, icons and fonts to build this single page portfolio.]]></description>
			<content:encoded><![CDATA[<p>Today I will show you how I created this minimal &amp; stylish single page portfolio design in Photoshop, I will show you step by step how I use the 960 Grid System with textures, icons and fonts to build this single page portfolio.</p>
<h3>Final Result Preview</h3>
<p>This is the finished product of the tutorial. (<a rel="nofollow" href="http://designwoop.com/uploads/2011/08/webadelic.jpg" target="_blank">View Large</a>)</p>
<p><img class="alignnone size-full wp-image-4546" title="Tutorial: Create A Minimal Single Page Portfolio Design In PhotoShop" src="http://designwoop.com/uploads/2011/08/webadelic_small.jpg" alt="Tutorial: Create A Minimal Single Page Portfolio Design In PhotoShop" width="428" height="592" /></p>
<h3>Tutorial Resources</h3>
<p><a rel="nofollow" href="http://www.fontsquirrel.com/fonts/TitilliumText" target="_blank">TitilliumText</a> font, @font-face Compatible.</p>
<p><a rel="nofollow" href="http://lifetreecreative.com/icons/" target="_blank">Social Media Icons</a> by Gedy Rivera.</p>
<p><a rel="nofollow" href="http://www.premiumpixels.com/freebies/apple-ios-linen-texture/">Apple iOS Linen Texture</a> by Orman Clark.</p>
<p><a rel="nofollow" href="http://960.gs/" target="_blank">960.gs</a> Grid System.</p>
<h3>Set The Canvas</h3>
<p>Before you begin designing and creating the structure of your portfolio, it is a good idea to work to set of grid lines, I like to use the 960.gs grid. Once you have downloaded this and unzipped the file contents, you will find the PhotoShop PSD grid in the folder named templates. For the purposes of this tutorial I will be using the 12 column grid template, I find it really useful to turn the &#8216;Guides&#8217; on, &#8211; View -&gt; Show -&gt; Guides.</p>
<p><img class="alignnone size-full wp-image-4595" title="Tutorial: Create A Minimal Single Page Portfolio Design In PhotoShop" src="http://designwoop.com/uploads/2011/08/Screen-shot-2011-07-08-at-07.58.21.png" alt="Tutorial: Create A Minimal Single Page Portfolio Design In PhotoShop" width="428" height="360" /></p>
<p>Open the downloaded grid PSD called <strong>&#8217;960_grid_12_col.psd&#8217;</strong> and re-size the canvas to width: <strong>1021px and height:1400px</strong>. Image -&gt; Canvas Size. Create a new layer and fill this with the <strong>color:# f5f2f2</strong>.</p>
<p><img class="alignnone size-full wp-image-4596" title="Tutorial: Create A Minimal Single Page Portfolio Design In PhotoShop" src="http://designwoop.com/uploads/2011/08/Screen-shot-2011-07-08-at-07.59.32.png" alt="Tutorial: Create A Minimal Single Page Portfolio Design In PhotoShop" width="428" height="336" /></p>
<p>To add a some more depth to the background canvas I will use the Apple iOS Linen Texture, unzip this and open the PSD called <strong>&#8216;os-linen.psd&#8217;</strong>. Duplicate all the layers apart from the layer named base color to your PSD file. Select the top four layers and duplicate to your file &#8211; <strong>Layers -&gt;Duplicate &#8211; &gt; Your_PSD_Name.psd</strong>. Set the opacity of the two dark textures to 70% and the two lighter top layers to 20% opacity.</p>
<p><img class="alignnone size-full wp-image-4597" title="Tutorial: Create A Minimal Single Page Portfolio Design In PhotoShop" src="http://designwoop.com/uploads/2011/08/Screen-shot-2011-07-08-at-08.00.29.png" alt="Tutorial: Create A Minimal Single Page Portfolio Design In PhotoShop" width="428" height="180" /></p>
<p>The final background texture we will use will look like so:</p>
<p><img class="alignnone size-full wp-image-4598" title="Tutorial: Create A Minimal Single Page Portfolio Design In PhotoShop" src="http://designwoop.com/uploads/2011/08/Screen-shot-2011-07-08-at-08.01.22.png" alt="Tutorial: Create A Minimal Single Page Portfolio Design In PhotoShop" width="428" height="180" /></p>
<h3>Creating The Header</h3>
<p>Create a new &#8216;Group&#8217; and name it &#8216;Header&#8217;, <strong>- Layer -&gt; New -&gt; Group,</strong> whilst inside this new group create a new layer called &#8216;header _line&#8217;, &#8211; <strong>Layer -&gt; New -&gt; Layer. </strong>With this new layer selected, draw the pink line to the dimensions of width:1021px and height: 6px. To create the shape, simply use the the &#8216;<strong>Rectangle Tool</strong>&#8216; and use the <strong>color:#ee6d72</strong> for the line. You will be able to see the line dimensions by selecting <strong>- Window -&gt; Info</strong> from the top menu.</p>
<p>Once you have created this top line you will need to duplicate it, name the new duplicated layer &#8216;header_line_white&#8217;. To duplicate the line select the layer called header _line and select &#8211; <strong>Layer -&gt; Duplicate Layer.</strong> Make this new line half the height but use the same width and move it to the bottom of the layer called header _line, once in place, change the color of this layer to: <strong>#ffffff;</strong></p>
<p><strong>The resulting top line will look like so:</strong></p>
<p><img class="alignnone size-full wp-image-4599" title="Tutorial: Create A Minimal Single Page Portfolio Design In PhotoShop" src="http://designwoop.com/uploads/2011/08/Screen-shot-2011-07-08-at-08.02.00.png" alt="Tutorial: Create A Minimal Single Page Portfolio Design In PhotoShop" width="428" height="204" /></p>
<p>Next we will create the typography, earlier I gave you the font I used to create the welcome message and page headings, download <strong>TitilliumText and install it</strong> onto your PC/Mac.  Create a new group whilst still inside the Group you made earlier, call this new Group &#8211; &#8216;Strap Line&#8217;. Organizing and naming your layers and groups correctly makes it so much easier navigating around the PSD, it also makes it much easier when you come to code up your PSD into XHTML.</p>
<p>To create the header text, whilst inside inside the Group &#8216;Strap Line&#8217; I created a new layer, selected the <strong>&#8216;Horizontal Type Tool&#8217;</strong> and typed in my welcome message: &#8220;Hello, my name is David Martin.<br />
A front end developer/designer from the UK.&#8221;. I set the <strong>font size to: 11pt</strong> and the color to: <strong>#000000</strong>.</p>
<p>Notice I place my welcome message to the right of the first three columns of the 12 bar grid, this leaves me room to place my logo in columns two and three as I will be leaving columns one and twelve blank. I do not want to create a cramped and confused design.</p>
<p><img class="alignnone size-full wp-image-4600" title="Tutorial: Create A Minimal Single Page Portfolio Design In PhotoShop" src="http://designwoop.com/uploads/2011/08/Screen-shot-2011-07-08-at-08.03.46.png" alt="Tutorial: Create A Minimal Single Page Portfolio Design In PhotoShop" width="428" height="201" /></p>
<p>To help separate the welcome message from what will be the page body, I created a simple divider line, to do this, whilst still inside the &#8216;Header&#8217; group, create a new group called &#8216;Line Separator&#8217;. Create a new layer called &#8216;Separator Line Top&#8217; and using the &#8216;<strong>Rectangle Tool</strong>&#8216; draw a line which will cover a full ten columns on the grid. The line dimensions will be &#8211; <strong>width: 780px, height: 1px </strong>and the color of this top line will need to be set to <strong>#d5d5d5</strong>.<strong> </strong></p>
<p>To create the illusion of a letterpress style on the line, select the layer &#8216;Separator Line Top&#8217; and duplicate it, rename the new layer &#8216;Separator Line Bottom&#8217; and move this new layer to the bottom of the layer &#8216;Separator Line Top&#8217;, set the color of &#8216;Separator Line Bottom&#8217; to <strong>#ffffff</strong>.</p>
<p><img class="alignnone size-full wp-image-4601" title="Tutorial: Create A Minimal Single Page Portfolio Design In PhotoShop" src="http://designwoop.com/uploads/2011/08/Screen-shot-2011-07-08-at-08.04.20.png" alt="Tutorial: Create A Minimal Single Page Portfolio Design In PhotoShop" width="428" height="139" /></p>
<h3>Creating The Body Content</h3>
<p>The left and right content areas will be created with a width equal to four grid lines each and will be separated by two grid columns.</p>
<p><strong>Creating The Form</strong></p>
<p>Create a new group and name it &#8216;Contact&#8217;, within this group, create a new layer for the heading text &#8220;Contact me&#8221;. Using the the same font as before &#8216;<strong>TitilliumText&#8217; </strong>type the contact message into the grid lines, I aligned it so that the heading starts on grid column 8. The character settings used are &#8211; <strong>size: 8pt, weight: thin.</strong></p>
<p><img class="alignnone size-full wp-image-4602" title="Tutorial: Create A Minimal Single Page Portfolio Design In PhotoShop" src="http://designwoop.com/uploads/2011/08/Screen-shot-2011-07-08-at-08.05.48.png" alt="Tutorial: Create A Minimal Single Page Portfolio Design In PhotoShop" width="428" height="322" /></p>
<p>The form input fields are created using the &#8216;<strong>Rectangle Tool</strong>&#8216;, I create the &#8216;name&#8217; and &#8216;subject&#8217; input fields so they start on grid column 8 and have the dimensions &#8211; <strong>width: 300px, height: 30px</strong>. The message textarea has the dimensions <strong>width: 300px, height: 130px</strong>. For each input field and the textarea I will add a very subtle <strong>Inner Shaddow. </strong>Select the input field layer and select &#8211; <strong>Layer -&gt; Layer Style -&gt; Blending Options -&gt; Inner Shaddow. </strong>Set the Inner Shaddow settings to <strong>- Blend Mode: Multiply, Opacity: 75%, Angle: -90, Distance: 1px Choke:0px, Size: 0px, Color: #ebe9e9.</strong></p>
<p><strong><img class="alignnone size-full wp-image-4603" title="Tutorial: Create A Minimal Single Page Portfolio Design In PhotoShop" src="http://designwoop.com/uploads/2011/08/Screen-shot-2011-07-08-at-08.06.27.png" alt="Tutorial: Create A Minimal Single Page Portfolio Design In PhotoShop" width="428" height="180" /><br />
</strong></p>
<p>Keeping consistent with the grid guidelines, I will create the form button to sit between grid columns 10 and 11. Using the using the &#8216;<strong>Rectangle Tool</strong>&#8216; I create the button to the dimensions of &#8211; <strong>width: 140px, height: 30px</strong>.</p>
<p>For the form button I will add a Gradient and Stroke. Select the button layer and tick &#8211; <strong>Layer -&gt; Layer Style -&gt; Blending Options -&gt; Stroke </strong><em>&amp;</em> <strong>Layer -&gt; Layer Style -&gt; Blending Options -&gt; Gradient Overlay. </strong>The button color is set to <strong>#ebe9e9</strong>, the Stroke settings are -  <strong>Size: 1px, Color: #ebe9e9. </strong>The settings I used for the button gradient are &#8211; Blend Mode: Normal, Opacity: 100%, Style: Linear, Angle: 90. Set the left Stop Location color to #ebe9e9 and the right color to #f1f1f1,  set both the Stop Locations for the gradient sliders to 50%  like below -</p>
<p><img class="alignnone size-full wp-image-4604" title="Tutorial: Create A Minimal Single Page Portfolio Design In PhotoShop" src="http://designwoop.com/uploads/2011/08/Screen-shot-2011-07-08-at-08.07.32.png" alt="Tutorial: Create A Minimal Single Page Portfolio Design In PhotoShop" width="428" height="180" /></p>
<h3>Creating &#8216;About Me&#8217;</h3>
<p>This is, as you can see pretty straight forward, the only thing to note is the font  in use which is <a rel="nofollow" href="http://www.linotype.com/1266/neuehelvetica-family.html" target="_blank">Helvetica Neue 45 Light</a>. Download and install this font and set the font settings to <strong>size: 2.5pt, Leading: 4pt, Tracking: 100, Color: #2a2828. </strong>Create a new Group and name it &#8216;About me&#8217;. Within this group create a new layer<strong>,</strong> using the <strong> &#8216;<strong>TitilliumText&#8217; </strong></strong>fonthis will create the &#8216;About me&#8217; heading. The font settings for this font is -  <strong>size: 8pt, weight: thin.</strong> Below this I will create a new layer for the &#8216;About me&#8217; text blurb. All the text is aligned to the start of the second grid column and will span no more than four columns in total.</p>
<p><img class="alignnone size-full wp-image-4606" title="Tutorial: Create A Minimal Single Page Portfolio Design In PhotoShop" src="http://designwoop.com/uploads/2011/08/Screen-shot-2011-07-08-at-08.08.52.png" alt="Tutorial: Create A Minimal Single Page Portfolio Design In PhotoShop" width="428" height="180" /></p>
<h3><strong></strong> Creating the &#8216;Project Feed&#8217;</h3>
<p>The project feed will span an entire ten columns of the grid. I create a new group called &#8216;Project Feed&#8217; and within this two new layers for the heading text and paragraph below. The heading text font is again &#8211; <strong>size: 8pt, weight: thin </strong>and the font settings for the paragraph below is &#8211; <strong>size: 2.5pt, Leading: 4pt</strong>.</p>
<p><img class="alignnone size-full wp-image-4607" title="Tutorial: Create A Minimal Single Page Portfolio Design In PhotoShop" src="http://designwoop.com/uploads/2011/08/Screen-shot-2011-07-08-at-08.09.24.png" alt="Tutorial: Create A Minimal Single Page Portfolio Design In PhotoShop" width="428" height="178" /></p>
<p>I decided that I wanted to pull a feed of images into the page using the Dribbble API, in the future, when I expand on this design I will modify it to show more detailed information about project work. Within the &#8216;Project&#8217; group I create a new sub group called &#8216;Feed&#8217;. For each feed image the total size will be exactly three grid columns, including the image padding and border.</p>
<p><img class="alignnone size-full wp-image-4608" title="Tutorial: Create A Minimal Single Page Portfolio Design In PhotoShop" src="http://designwoop.com/uploads/2011/08/Screen-shot-2011-07-08-at-08.14.46.png" alt="Tutorial: Create A Minimal Single Page Portfolio Design In PhotoShop" width="428" height="180" /></p>
<p>Create a new layer and use the &#8216;<strong>Rectangle Tool</strong>&#8216; to create a box to the dimensions of &#8211; <strong>width: 220px, height: 144px. </strong>The box background color needs to be set to <strong>#ffffff</strong> and a 1px stroke will need to be added to this box. Select the layer and click <strong>Layer -&gt; Layer Style -&gt; Blending Options -&gt; Stroke</strong>. Set the stroke to 1px and the stroke color to <strong>#dedbdb</strong>. The actual feed images will sit inside this white box, the image size will be <strong>- width: 200px, height: 124px</strong>.</p>
<p><img class="alignnone size-full wp-image-4609" title="Tutorial: Create A Minimal Single Page Portfolio Design In PhotoShop" src="http://designwoop.com/uploads/2011/08/Screen-shot-2011-07-08-at-08.15.06.png" alt="Tutorial: Create A Minimal Single Page Portfolio Design In PhotoShop" width="428" height="204" /></p>
<h3>Creating the &#8216;Footer&#8217;</h3>
<p>Creating the footer is very straight forward due to the simplistic concept, firstly create a new group named &#8216;Footer and create a new layer. This will form part of the two dividing lines at the top and bottom of the footer. Select the new layer and using the <strong>&#8216;Line Tool&#8217; </strong>draw a 1px line that spans across a whole ten grid columns. Set the color of this 1px line to <strong>#dedbdb</strong> and duplicate the layer &#8211; <strong>Layer -&gt; Duplicate Layer</strong>. Change the color of the new duplicated layer to <strong>#ffffff</strong> and move it to the bottom of the grey line we just created, merge these two layers to create the dividing line so we can duplicate this to use again at the bottom of the footer.</p>
<p><img class="alignnone size-full wp-image-4610" title="Tutorial: Create A Minimal Single Page Portfolio Design In PhotoShop" src="http://designwoop.com/uploads/2011/08/Screen-shot-2011-07-08-at-08.15.28.png" alt="Tutorial: Create A Minimal Single Page Portfolio Design In PhotoShop" width="428" height="128" /></p>
<p>The Twitter and Dribble Icons are courtesy of <a rel="nofollow" href="http://lifetreecreative.com/icons/" target="_blank">Gedy Rivera</a> download the PSD ($5 &#8211; well spent) and duplicate the Twitter and Dribbble icons into the PSD. I re-sized each icon to <strong>30px </strong><em>by</em><strong> 30px</strong> and set the icon color to <strong>#dedbdb.</strong></p>
<p><a rel="nofollow" href="http://designwoop.com/uploads/2011/08/Screen-shot-2011-07-08-at-08.15.41.png"><img class="alignnone size-full wp-image-4611" title="Tutorial: Create A Minimal Single Page Portfolio Design In PhotoShop" src="http://designwoop.com/uploads/2011/08/Screen-shot-2011-07-08-at-08.15.41.png" alt="Tutorial: Create A Minimal Single Page Portfolio Design In PhotoShop" width="428" height="173" /></a></p>
<h3>The Final Result</h3>
<p><img class="alignnone size-full wp-image-4546" title="Tutorial: Create A Minimal Single Page Portfolio Design In PhotoShop" src="http://designwoop.com/uploads/2011/08/webadelic_small.jpg" alt="Tutorial: Create A Minimal Single Page Portfolio Design In PhotoShop" width="428" height="592" /></p>
<p>This is the finished product of the tutorial. (<a rel="nofollow" href="http://designwoop.com/uploads/2011/08/webadelic.jpg" target="_blank">View Large</a>)</p>
<h3>Coding the concept&#8230;</h3>
<p><a rel="nofollow" href="http://feeds.feedburner.com/designwoop" target="_blank">Subscribe to the RSS feed</a> or <a rel="nofollow" href="http://twitter.com/#%21/designwoop" target="_blank">follow DesignWoop on Twitter</a> for part two of the tutorial, where I will code the concept from a PSD to a responsive HTML5 single page portfolio.</p>
]]></content:encoded>
			<wfw:commentRss>http://designwoop.com/2011/08/tutorial-create-a-minimal-single-page-portfolio-design-in-photoshop/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Tutorial: Getting Started With jQuery Animations</title>
		<link>http://designwoop.com/2011/07/tutorial-getting-started-with-jquery-animations/</link>
		<comments>http://designwoop.com/2011/07/tutorial-getting-started-with-jquery-animations/#comments</comments>
		<pubDate>Thu, 07 Jul 2011 14:00:34 +0000</pubDate>
		<dc:creator>Alexandre Smirnov</dc:creator>
				<category><![CDATA[All Posts]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://designwoop.com/?p=4444</guid>
		<description><![CDATA[jQuery. No doubt you have heard about this popular JavaScript library. It has taken the throne of all the JavaScript libraries out there because of its many features and easy syntax. Today, I will show you one of the simpler uses of jQuery: you can animate things. this will be the focus of today's tutorial.]]></description>
			<content:encoded><![CDATA[<p><em>DesignWoop welcomes this guest post by <a rel="nofollow" href="http://www.designlunatic.com/">Alexandre Smirnov</a> a web designer and developer who lives and works in Cal­i­for­nia.</em></p>
<p>jQuery. No doubt you have heard about this popular JavaScript library. It has taken the throne of all the JavaScript libraries out there because of its many features and easy syntax. Today, I will show you one of the simpler uses of <a rel="nofollow" href="http://designwoop.com/category/jquery/">jQuery</a>: you can animate things. this will be the focus of today&#8217;s tutorial.</p>
<p>Before we begin, you should learn one very important thing: this next snippet of code.</p>
<p>The following snippet of code basically says, when the document is ready, do something:</p>
<pre class="brush: jscript; title: ; notranslate">
$(document).ready(function(){
//Jquery code goes here
});
</pre>
<p>This is important because if you don&#8217;t use it, jQuery could try to manipulate DOM elements that don&#8217;t exist yet. It wouldn&#8217;t be able to, and there would be complications.</p>
<p>Now that you know that, we can move on to the article&#8217;s focus.</p>
<h3>A typical animate function:</h3>
<pre class="brush: jscript; title: ; notranslate">
$('#something').animate({

});
</pre>
<p>In order to animate something, you have to give it some parameters. For example what to animate, what the new value is, and how long you want the animation to take.</p>
<p>Let&#8217;s include the code that will actually make this work:</p>
<pre class="brush: jscript; title: ; notranslate">
$('#something').animate({
	opacity: '0.5'
}, 120);
</pre>
<p><strong></strong><strong><a rel="nofollow" href="http://designwoop.com/labs/jquery_animations/jQuery_animations.html" target="_blank">View the demo</a></strong></p>
<p>Opacity is what is being animated, and it&#8217;s being animated to 0.5. I&#8217;m also saying that I want it to take 120 milliseconds to complete. That is the meat of it &#8211; however, there are some more things you should keep in mind.</p>
<p>The built in jQuery animate function cannot animate strings. For example, you cannot animate an object from float: left to float: right without doing a lot of extra work. Likewise, you can&#8217;t animate colors. If I wanted to animate the color of an element, I would have to use <a rel="nofollow" href="http://jqueryui.com/">jQuery UI</a>.</p>
<h3>Multiple Animations</h3>
<p>If you are animating multiple things, you must use commas to separate them. A common mistake is to use a semicolon; <em>Don&#8217;t do that!</em></p>
<p>Here&#8217;s what you should do:</p>
<pre class="brush: jscript; title: ; notranslate">
$('#something').animate({
	opacity: '0.5', //&lt;-- notice the comma
	height: '10', //&lt;-- notice the comma
}, 120);
</pre>
<p><strong><a rel="nofollow" href="http://designwoop.com/labs/jquery_animations/jQuery_animations.html" target="_blank">View the demo</a></strong></p>
<p>jQuery assumes by default that the value you are animating is in pixels, so if you are too lazy to write the &#8220;px&#8221;, you don&#8217;t have to. It is also possible to animate &#8220;em&#8221; and &#8220;%&#8221;.</p>
<p>Also, the jQuery selector syntax is much like CSS. Notice I have a number sign in front of the &#8220;something&#8221; text. That would work only if what I&#8217;m animating has an <strong>ID</strong> of &#8220;something&#8221;. If I wanted to animate all the elements with the <strong>class</strong> &#8220;something&#8221; on the page, I would do this:</p>
<pre class="brush: jscript; title: ; notranslate">
$('.something').animate({
	opacity: '0.5',
}, 120);
</pre>
<h3>Animate On Hover</h3>
<p>Now, you know how to animate elements with jQuery. That&#8217;s useful, but what if we don&#8217;t want an element to animate the moment the page finishes loading? What if we want it to animate only when we hover over it? Take a look:</p>
<pre class="brush: jscript; title: ; notranslate">
$('#something').hover(function(){
 $(this).animate({
 opacity: '0.5',
 });
});
</pre>
<p><strong><a rel="nofollow" href="http://designwoop.com/labs/jquery_animations/jQuery_animations.html" target="_blank">View the demo</a></strong></p>
<p>What this is saying is, &#8220;when you hover over #something, animate its opacity to 0.5. Also, keep this in mind: &#8220;$(this)&#8221; is a keyword which can be used in instance methods to refer to the object on which the currently executing method has been invoked. In this case, &#8220;$(this)&#8221; is equivalent to &#8220;$(&#8216;#something&#8217;)&#8221;.</p>
<h3>Using Callbacks</h3>
<p>Now, back to animating. What if you don&#8217;t want it to stay that way, and want it to animate back to opacity: 1 when you hover off of &#8220;#something&#8221;? This is where callbacks come in.</p>
<pre class="brush: jscript; title: ; notranslate">
$('#something').hover(function(){
 $(this).animate({
 opacity: '0.5',
 });
}, function(){
 $(this).animate({
 opacity: '1',
 });
});
</pre>
<p><strong><a rel="nofollow" href="http://designwoop.com/labs/jquery_animations/jQuery_animations.html" target="_blank">View the demo</a></strong></p>
<p>This snippet of code makes an element animate to 0.5 opacity when you hover over it, and animates it back to 1 when you hover off of it.</p>
<h3>Animate On Click</h3>
<p>Hovering is a popular way to start a jQuery animate function. However, clicking is also a great way to initialize an animate function.</p>
<pre class="brush: jscript; title: ; notranslate">
$('#something').click(function(){
 $(this).animate({
 opacity: '0.5',
 });
});
</pre>
<p><strong><a rel="nofollow" href="http://designwoop.com/labs/jquery_animations/jQuery_animations.html" target="_blank">View the demo</a></strong></p>
<p>As you can see, the syntax is basically the same. Unfortunately, jQuery doesn&#8217;t support click callbacks, so this will be a one-time animation. If you aren&#8217;t satisfied with that, there&#8217;s a marvelous plugin just waiting for you: <a rel="nofollow" href="http://benalman.com/projects/jquery-outside-events-plugin/">Clickoutside.js</a></p>
<p>Also, a problem with animations is that the queue up. Check out this article for more info: <a rel="nofollow" href="http://css-tricks.com/full-jquery-animations/">Animations Without Queueing up.</a></p>
<p>If you want more info, take a look at <a rel="nofollow" href="http://api.jquery.com/animate/">the official jQuery page on animating.</a></p>
<p>Well, that&#8217;s the end of this tutorial. Good luck!</p>
]]></content:encoded>
			<wfw:commentRss>http://designwoop.com/2011/07/tutorial-getting-started-with-jquery-animations/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Do You Support Non Standards-Compliant Browsers</title>
		<link>http://designwoop.com/2011/05/do-you-support-non-standards-compliant-browsers/</link>
		<comments>http://designwoop.com/2011/05/do-you-support-non-standards-compliant-browsers/#comments</comments>
		<pubDate>Mon, 23 May 2011 10:44:32 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[All Posts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Browsers]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[Modernizr]]></category>

		<guid isPermaLink="false">http://designwoop.com/?p=3866</guid>
		<description><![CDATA[In a ideal world, we would not have to include additional scripts to render a web page the same in all browsers. Not all people are technically capable or knowledgeable as to why or how to change or update their browser, so unfortunately we are left with a situation where we have to choose to either support them or disregard their browsing experience.]]></description>
			<content:encoded><![CDATA[<p>I have written a couple of previous tutorials using HTML5 and CSS3 to <a rel="nofollow" title="Create a Clean and Stylish Login Form With HTML5 and CSS3" rel="bookmark" href="../2011/04/create-a-clean-and-stylish-login-form-with-html5-and-css3/">create a clean and stylish login form with HTML5 and CSS3</a> and  <a rel="nofollow" title="How To Create A Clean And Stylish CSS3 Menu" rel="bookmark" href="../2011/03/how-to-create-a-clean-and-stylish-css3-menu/">create a clean and stylish CSS3 menu</a>, the problem designers and developers often encounter when using HTML5 or CSS3 is how best to support older browsers and browsers which do not support features such as border-radius, gradients and text-shadows. The list could go&#8230;</p>
<h3>Why support old browsers?</h3>
<p>It is becoming more common to see websites that no longer support old outdated web browsers, even the WordPress dashboard has discontinued to support IE6. However if a large proportion of your visitors still use IE6, they will be missing out on the aesthetically pleasing eye candy that CSS3 and HTML5 has to offer, you may also inadvertently be serving them a website that is not rendering correctly, thus loosing conversions and repeat business.</p>
<p>In a ideal world, we would not have to include additional scripts to render a web page the same in all browsers. Not all people are technically capable or knowledgeable as to why or how to change or update their browser, so unfortunately we are left with a situation where we have to choose to either support them or disregard their browsing experience.</p>
<h3>How to use CSS3 and HTML5 in old browsers</h3>
<p>Last week I was searching for a simple, lightweight non intrusive way of easily integrating a Javascript library which will allow older browsers to render CSS3 and HTML5. In particular I was very concerned with including additional JS files and the impact these have on load times,  I settled for a small JS script library by the name of <a rel="nofollow" href="http://css3pie.com/" target="_blank">CSS3 PIE</a>, whist searching for different JS solutions I found few to choose from, take a look:</p>
<h3><a rel="nofollow" href="http://css3pie.com/" target="_blank">CSS3Pie</a></h3>
<p><img class="alignnone size-medium wp-image-3881" title="CSS3 PIE- CSS3 decorations for IE_1306145851941" src="http://designwoop.com/uploads/2011/05/CSS3-PIE-CSS3-decorations-for-IE_1306145851941-428x281.png" alt="" width="428" height="281" /></p>
<h3><a rel="nofollow" href="http://headjs.com/" target="_blank">Head JS</a></h3>
<p><img class="alignnone size-medium wp-image-3883" title="headJS" src="http://designwoop.com/uploads/2011/05/headJS-428x281.png" alt="" width="428" height="281" /></p>
<h3><a rel="nofollow" href="http://www.htmlremix.com/css/curved-corner-border-radius-cross-browser" target="_blank">Borderradius.htc</a></h3>
<p><img class="alignnone size-medium wp-image-3882" title="Curved corner (border-radius) cross browser - HTML Remix_1306145991130" src="http://designwoop.com/uploads/2011/05/Curved-corner-border-radius-cross-browser-HTML-Remix_1306145991130-428x281.png" alt="" width="428" height="281" /></p>
<h3><a rel="nofollow" href="http://www.modernizr.com/" target="_blank">Modernizr</a></h3>
<p><img class="alignnone size-medium wp-image-3885" title="Modernizr_1306146031895" src="http://designwoop.com/uploads/2011/05/Modernizr_1306146031895-428x281.png" alt="" width="428" height="281" /></p>
<h3><a rel="nofollow" href="http://selectivizr.com/" target="_blank">Selectivizr</a></h3>
<p><img class="alignnone size-medium wp-image-3886" title="Selectivizr - CSS3 pseudo-class and attribute selectors for IE 6-8_1306146039612" src="http://designwoop.com/uploads/2011/05/Selectivizr-CSS3-pseudo-class-and-attribute-selectors-for-IE-6-8_1306146039612-428x281.png" alt="" width="428" height="281" /></p>
<h3><a rel="nofollow" href="http://code.google.com/p/ie7-js/" target="_blank">ie7-js</a></h3>
<p><img class="alignnone size-medium wp-image-3884" title="ie7-js - A JavaScript library to make MSIE behave like a standards-compliant browser. - Google Project Hosting_1306146208586" src="http://designwoop.com/uploads/2011/05/ie7-js-A-JavaScript-library-to-make-MSIE-behave-like-a-standards-compliant-browser.-Google-Project-Hosting_1306146208586-428x281.png" alt="" width="428" height="281" /></p>
<h3>Questions:</h3>
<p><em>Do you add support for users in older browsers?</em></p>
<p><em>Should we add support?</em></p>
]]></content:encoded>
			<wfw:commentRss>http://designwoop.com/2011/05/do-you-support-non-standards-compliant-browsers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Make A Lomo Stye Photo Using Photoshop</title>
		<link>http://designwoop.com/2011/05/how-to-make-a-lomo-stye-photo-using-photoshop/</link>
		<comments>http://designwoop.com/2011/05/how-to-make-a-lomo-stye-photo-using-photoshop/#comments</comments>
		<pubDate>Mon, 16 May 2011 14:00:04 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[All Posts]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Lomo]]></category>
		<category><![CDATA[Lomography]]></category>

		<guid isPermaLink="false">http://designwoop.com/?p=3812</guid>
		<description><![CDATA[Follow this tutorial to see how I recreate the popular lomo style photography effect on a rather dull and dark photo. Photos taken with modern digital cameras lack the processing faults that older cheaper cameras would encounter when processing rolls of film. In this tutorial I will recreate some of the imperfections to create a cool lomo style photo.]]></description>
			<content:encoded><![CDATA[<p>Follow this tutorial to see how I recreate the popular lomo style photography effect on a rather dull and dark photo. Photos taken with modern digital cameras lack the processing faults that older cheaper cameras would encounter when processing rolls of film. In this tutorial I will recreate some of the imperfections to create a cool lomo style photo.</p>
<h3>Finished Product</h3>
<p><img class="alignnone size-medium wp-image-3815" title="How To Make A Lomo Stye Photo Using Photoshop" src="http://designwoop.com/uploads/2011/05/lomo-428x321.jpg" alt="" width="428" height="321" /></p>
<h3>Original Photo</h3>
<p><img class="alignnone size-medium wp-image-3818" title="How To Make A Lomo Stye Photo Using Photoshop" src="http://designwoop.com/uploads/2011/05/image-428x321.jpg" alt="" width="428" height="321" /></p>
<h3>Color Adjustments</h3>
<p>I first would like to adjust the colors in the photo, they look dull and dark. In Photoshop, select Image -&gt; Adjustments -&gt; Curves.</p>
<p>Select the Channel setting to &#8216;Blue&#8217; withing the Curves settings, I adjusted the input and output until I was happy with the colors.</p>
<p><img class="alignnone size-medium wp-image-3821" title="How To Make A Lomo Stye Photo Using Photoshop" src="http://designwoop.com/uploads/2011/05/Screen-shot-2011-05-15-at-17.49.00-428x267.png" alt="" width="428" height="267" /></p>
<h3>How To Create The Vignette</h3>
<p>Using the Elliptical Marquee tool in Photoshop, draw out an oval shape selection, I set the feather to 50px and draw the oval to cover a majority of the photo.</p>
<p>Choose Select -&gt; Inverse. With the oval and image still selected, select Image -&gt; Adjustments levels.</p>
<p>This will create a masked layer, allowing you to add a vignette effect around the edges of the oval shape. You can adjust how subtle or how intense you  want the effect using the sliders, sliding right will make a lighter subtle effect and sliding left will create a harsh dark shade around the photo.</p>
<p><img class="alignnone size-medium wp-image-3820" title="How To Make A Lomo Stye Photo Using Photoshop" src="http://designwoop.com/uploads/2011/05/Screen-shot-2011-05-15-at-17.22.58-428x267.png" alt="" width="428" height="267" /></p>
<h3>Additional Effects</h3>
<p>I will duplicate the original image layer and add a blur to it. Select the layer and choose Filter -&gt; Blur -&gt; Gaussian Blur. Set the blur radius to 8.0.</p>
<p>Place the layer with the blur effect above all other images so the blur is on top and visible, select the Elliptical Marquee tool and cut out an area roughly similar to the Vignette, set the opacity of the layer to 60%, this will result in subtle blurred edges.</p>
<p><img class="alignnone size-medium wp-image-3824" title="How To Make A Lomo Stye Photo Using Photoshop" src="http://designwoop.com/uploads/2011/05/Screen-shot-2011-05-15-at-18.13.53-428x267.png" alt="" width="428" height="267" /></p>
<p>To complete the image, I again duplicated the first image layer, with this I then wanted to add some subtle noise. Select the layer and choose Filter -&gt; Noise -&gt; Add Noise. Set the noise level to 60% and set the layer opacity to 20%. The will add a subtle amount of distortion to the image.</p>
<h3>End Result</h3>
<p>(<a rel="nofollow" href="http://designwoop.com/uploads/2011/05/lomo1.jpg" target="_blank">View Large</a>)</p>
<p><img class="alignnone size-medium wp-image-3815" title="How To Make A Lomo Stye Photo Using Photoshop" src="http://designwoop.com/uploads/2011/05/lomo-428x321.jpg" alt="" width="428" height="321" /></p>
<h3>Lomo Inspiration</h3>
<p>If you have never explored lomography, here is a few great examples of lomo photography:</p>
<h3><a rel="nofollow" href="http://www.lomography.com/homes/jennson" target="_blank">Cattlefarm</a></h3>
<p><img class="alignnone size-medium wp-image-3833" title="How To Make A Lomo Stye Photo Using Photoshop" src="http://designwoop.com/uploads/2011/05/ce8c7cd5647e83cf5d75c4938c5646e6a4e851-428x287.jpg" alt="" width="428" height="287" /></p>
<h3><a rel="nofollow" href="http://www.lomography.com/homes/warning" target="_blank">Warning</a></h3>
<p><img class="alignnone size-medium wp-image-3831" title="How To Make A Lomo Stye Photo Using Photoshop" src="http://designwoop.com/uploads/2011/05/4bc8463299c720ac03207eeeba0cce0c9bde00-428x186.jpg" alt="" width="428" height="186" /></p>
<h3><a rel="nofollow" href="http://www.lomography.com/homes/anelfandhiszippo" target="_blank">Converse</a></h3>
<p><img class="alignnone size-medium wp-image-3834" title="How To Make A Lomo Stye Photo Using Photoshop" src="http://designwoop.com/uploads/2011/05/d8377ebb13bb545aba2103f4981184683be96e-428x195.jpg" alt="" width="428" height="195" /></p>
<h3 id="title_div3650600124"><a rel="nofollow" href="http://www.flickr.com/photos/12836528@N00/3650600124" target="_blank">Planet Sunset</a></h3>
<p><img class="alignnone size-medium wp-image-3832" title="How To Make A Lomo Stye Photo Using Photoshop" src="http://designwoop.com/uploads/2011/05/3650600124_81e014cb78-428x344.jpg" alt="" width="428" height="344" /></p>
<h3 id="title_div2700886008"><a rel="nofollow" href="http://www.flickr.com/photos/photo-life/2700886008/" target="_blank">Cosmos</a></h3>
<h3><img class="alignnone size-full wp-image-3842" title="lomo5" src="http://designwoop.com/uploads/2011/05/lomo5.jpg" alt="" width="402" height="600" /></h3>
<h3><a rel="nofollow" href="http://www.flickr.com/photos/xjimmyleungx/4853060372/in/pool-40732537997@N01/" target="_blank">Mt Kilimanjaro</a></h3>
<p><img class="alignnone size-medium wp-image-3843" title="lomo6" src="http://designwoop.com/uploads/2011/05/lomo6-428x286.jpg" alt="" width="428" height="286" /></p>
<h3 id="title_div5700934559"><a rel="nofollow" href="http://www.flickr.com/photos/sianeye/5700934559/in/pool-40732537997@N01/" target="_blank">Chuck&#8217;s Bar</a></h3>
<p><img class="alignnone size-medium wp-image-3844" title="lomo7" src="http://designwoop.com/uploads/2011/05/lomo7-428x423.jpg" alt="" width="428" height="423" /></p>
]]></content:encoded>
			<wfw:commentRss>http://designwoop.com/2011/05/how-to-make-a-lomo-stye-photo-using-photoshop/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic (Feed is rejected)
Page Caching using disk: enhanced
Database Caching using disk: basic
Object Caching 752/813 objects using disk: basic

Served from: designwoop.com @ 2012-02-04 13:49:20 -->
