<?xml version='1.0'?>
<feed xmlns:opensearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:s='http://jadedpixel.com/-/spec/shopify' xmlns='http://www.w3.org/2005/Atom'>
  <id>http://www.patternhead.com/blogs/patternhead_news.xml</id>
  <title>PatternHead</title>
  <author>
    <name>PatternHead</name>
  </author>
  <link href='http://www.patternhead.com/blogs/patternhead_news.xml' rel='self'/>
  <link href='http://www.patternhead.com/blogs/patternhead_news' rel='alternate'/>
  <updated>2007-08-13T15:37:24Z</updated>
  <entry>
    <id>tag:db1@shopify.com,2007:articles/85011</id>
    <title>Go Patternhead</title>
    <summary type='html'><![CDATA[<p>Welcome to Patternhead. Your one stop shop for royalty free, vector and raster, seamless repeat patterns. Now there&#8217;s a catchy tagline!</p>


	<p>All items are delivered digitally. When you purchase an item, you&#8217;ll receive an email with a download link. Click the link, enter the supplied user name and password and you&#8217;ll have instant access to the item. There are no delivery charges and you don&#8217;t have to wait for items. You can download them instantly.</p>


	<p>There&#8217;s only a small selection of patterns available at the moment but we&#8217;ll be adding lots more over the next few weeks so please come back soon and take a look.</p>]]></summary>
    <updated>2007-08-13T15:37:24Z</updated>
    <published>2007-08-13T15:37:24Z</published>
    <author>
      <name>john rawsterne</name>
    </author>
    <link href='http://www.patternhead.com/blogs/patternhead_news/85011-go-patternhead' rel='alternate'/>
  </entry>
  <entry>
    <id>tag:db1@shopify.com,2007:articles/85001</id>
    <title>Using Repeat Patterns in Photoshop</title>
    <summary type='html'><![CDATA[<p>Adobe Photoshop loves repeat patterns and repeat patterns love Adobe Photoshop. Love is a wonderful thing :)</p>


	<p>This tutorial is going to show you how easy it is to fill custom shapes with repeating patterns in Adobe Photoshop <span class="caps">CS2</span>.</p>


	<h4>1.  <span class="caps">OPEN YOUR PATTERN FILE</span></h4>


	<p>For this tutorial I&#8217;m using one of these <a href="http://www.rawsterne.co.uk/free_wallpaper">free patterns</a> but you can use any pattern as long as it repeats on all sides.</p>


	<p>In Photoshop, Click the <em>File</em> menu and choose <em>Open</em>.</p>


	<p>Find the pattern file you want to use and open it.</p>


	<h4>2.  <span class="caps">DEFINE A CUSTOM PATTERN</span></h4>


	<p>Click the <em>Edit</em> menu and choose <em>Define Pattern</em></p>


	<p>Give your pattern a name and click <em>ok</em></p>


	<p>You&#8217;ve now defined a pattern that you can open and use in any image you create. How cool is that?</p>


	<h4>3. <span class="caps">CREATE A SHAPE TO FILL</span></h4>


	<p>Click the <em>File</em> menu and choose <em>New</em></p>


	<p>Choose a file size (I&#8217;m using 400px by 200px but you can choose any size.)</p>


	<p>Use the elliptical marquee tool to drag a circular selection like this&#8230;</p>



<p><img src="/files/1/0003/0911/assets/tutorial_ps_1.png" alt="Tutorial using repeat patterns in photoshop 1" /></p>


	<h4>4.  <span class="caps">FILL THE SHAPE WITH THE PATTERN</span></h4>


	<p>Click the <em>Edit</em> menu and choose <em>Fill</em></p>


	<p>In the first dropdown box choose <em>Pattern</em></p>


	<p>In the second dropdown box select the pattern you want to use. It will probably be right at the bottom of the list. When you&#8217;re done, the option window should look like this&#8230;</p>



<p><img src="/files/1/0003/0911/assets/tutorial_ps_2.jpg" alt="Tutorial using repeat patterns in photoshop 2" /></p>


	<p>Click the <em>Ok</em> button and your shape will fill with the pattern.  I repeated the selection a couple of times and here&#8217;s mine&#8230;</p>



<p><img src="/files/1/0003/0911/assets/tutorial_ps_3.png" alt="Tutorial using repeat patterns in photoshop 3" /></p>


	<h4>CONCLUSION</h4>


	<p>This tutorial has only just scratched the surface. You can do so many things with patterns in Photoshop. For maximum effect I use the pen tool to create custom shapes then use layers, masks and blend modes to get impressive effects. Have fun.</p>]]></summary>
    <updated>2007-08-13T15:26:02Z</updated>
    <published>2007-08-13T15:26:02Z</published>
    <author>
      <name>john rawsterne</name>
    </author>
    <link href='http://www.patternhead.com/blogs/patternhead_news/85001-using-repeat-patterns-in-photoshop' rel='alternate'/>
  </entry>
  <entry>
    <id>tag:db1@shopify.com,2007:articles/84961</id>
    <title>Using Wallpaper Patterns in CSS</title>
    <summary type='html'><![CDATA[<p>Seamless patterns and <span class="caps">CSS</span>. It&#8217;s a match made in heaven.</p>


	<p>This article is going to show you how easy it is to add repeat patterns to your <span class="caps">CSS</span> based web designs.</p>


	<p>Ok, the first thing we need is some <span class="caps">HTML</span>.</p>


	<p>Copy this code, paste it into your favorite text editor and save it as <strong>index.html</strong> :</p>


	<h4>HTML</h4>



<pre><code>&#60;html&#62;
&#60;head&#62;
&#60;title&#62;Fun and games with wallpaper&#60;/title&#62;

&#60;link rel=&#34;stylesheet&#34; type=&#34;text/css&#34; media=&#34;screen&#34; href=&#34;stylesheet.css&#34; /&#62;
&#60;/head&#62;
&#60;body&#62;

    &#60;div id=&#34;container&#34;&#62;         
    &#60;p&#62;Dontcha just love those seamless patterns :)&#60;/p&#62;
    &#60;/div&#62;
&#60;/body&#62;
&#60;/html&#62; 
</code></pre><br />

	<p>Then we need a bit of <span class="caps">CSS</span>.</p>


	<p>Copy this code, paste it into your favorite text editor and save it as <strong>stylesheet.css</strong>. Make sure you save it to the same folder as the <span class="caps">HTML</span> file you saved above:</p>


	<h4>CSS</h4>



<pre><code>body {
font: small Verdana, Arial, sans-serif;
background: url(wallpaper1.jpg);
color:#333;
text-align:center;
}
</code><br /><code>#container {
background:#fff;
width:700px;
margin:0 auto;
padding:5em 0;
}
</code></pre><br />

	<p>Now, right click the image below and save it to the same folder as <strong>index.html</strong> and <strong>stylesheet.css</strong>. Make sure you save the file as <strong>wallpaper1.jpg</strong></p>



<p><img src="/files/1/0003/0911/assets/wallpaper1.jpg" alt="sample seamless repeat wallpaper patter" /></p>


	<p>Now just open <strong>index.html</strong> in your browser and you should be able to see that the seamless pattern has filled the whole of the background. That&#8217;s all there is to it!</p>


	<p>For those that don&#8217;t like to cut and paste, here&#8217;s a <a href="/files/1/0003/0911/assets/tutorial_repeat_pattern_css.zip">zip file</a> that you can download. It contains all the files in this tutorial. Just unzip it to a folder on your hard drive and open <strong>index.html</strong> in your browser.</p>]]></summary>
    <updated>2007-08-13T14:28:44Z</updated>
    <published>2007-08-13T14:28:44Z</published>
    <author>
      <name>john rawsterne</name>
    </author>
    <link href='http://www.patternhead.com/blogs/patternhead_news/84961-using-wallpaper-patterns-in-css' rel='alternate'/>
  </entry>
</feed>