<?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>Resources for Web Development Students @ Robin's Blog &#187; CSS</title>
	<atom:link href="http://www.robinsblog.com/category/web-design-sites/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.robinsblog.com</link>
	<description>Resources for Web Development Students</description>
	<lastBuildDate>Fri, 05 Mar 2010 17:13:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Transparent PNG 24 Images with Internet Explorer 6 for Beginners</title>
		<link>http://www.robinsblog.com/12232009/transparent-png-24-images-with-internet-explorer-6-for-beginners/</link>
		<comments>http://www.robinsblog.com/12232009/transparent-png-24-images-with-internet-explorer-6-for-beginners/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 00:32:08 +0000</pubDate>
		<dc:creator>Robin Wood</dc:creator>
				<category><![CDATA[Browser Issues]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Class Notes]]></category>
		<category><![CDATA[PHP/MySQL & JavaScript]]></category>

		<guid isPermaLink="false">http://www.robinsblog.com/?p=1692</guid>
		<description><![CDATA[<a href="http://www.robinsblog.com/12232009/transparent-png-24-images-with-internet-explorer-6-for-beginners/"><img align="left" hspace="5" width="150" src="http://www.robinsblog.com/wp-content/uploads/2009/12/badpng.gif" class="alignleft wp-post-image tfe" alt="PNG 24 display problem" title="PNG 24 display problem" /></a>
A common question in class is &#8220;how do I overlap images and still see the background?&#8221; The answer, you use some type of transparent image. Traditionally we used a transparent GIF, but the quality isn&#8217;t so great. PNG has really become the preferred image format for transparency. PNG 8 gives you a transparent image, but you may see some white [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.robinsblog.com/wp-content/uploads/2009/12/badpng.gif" alt="PNG 24 display problem" title="PNG 24 display problem" width="352" height="96" class="center" /></p>
<p>A common question in class is &#8220;how do I overlap images and still see the background?&#8221; The answer, you use some type of transparent image. Traditionally we used a transparent GIF, but the quality isn&#8217;t so great. PNG has really become the preferred image format for transparency. PNG 8 gives you a transparent image, but you may see some white pixels around the edges of the image. PNG 24 transparent images are crisp and clean, but sometimes a bit bloated. Still PNG 24 now being widely used.</p>
<p>Unfortunately, it is well documented that transparent PNG 24 images will not display properly in Internet Explorer 6 without applying some type of fix. Instead of getting a truly transparent image you will see a blue background around the image like the image above.  I&#8217;m not going to go into the technical reasoning for this problem, this is an article for beginners and there are numerous fixes and articles for this issue, <a href="http://perishablepress.com/press/2008/05/28/css-hackz-series-png-fix-for-internet-explorer/">Perishable Press has a great write up on the subject</a>. </p>
<p>I&#8217;ve prepared a page that shows both of these problems; this page was created from the Six Revisions&#8217; tutorials <a href="http://sixrevisions.com/tutorials/photoshop-tutorials/how-to-create-a-grunge-web-design-using-photoshop/">How to Create a Grunge Web Design Using Photoshop</a> and <a href="http://sixrevisions.com/tutorials/web-development-tutorials/how-to-code-a-grunge-web-design-from-scratch/">How to Code a Grunge Web Design from Scratch</a> &#8211; great tutorials, but I&#8217;ll write about that later. If you <a href="http://theplacetoplay.com/grunge/indexbadpng.html">open my PNG transparency example page</a> in Internet Explorer 6 you should see that the header image &#8220;Get Your Hands Dirty&#8221; has a blue background &#8211; not good. If you look at the heading &#8220;Featured Work&#8221;, a PNG 8 image, you should notice, albeit subtle, little white dots around the edges of the image &#8211; not good either. If you look at the heading &#8220;About this Website&#8221;, a transparent GIF, you will also see the little white dots around the edges of the image. </p>
<p>Now if you look at my <a href="http://theplacetoplay.com/grunge/">example with PNG 24 images and a JavaScript fix</a> applied in Internet Explorer 6 you will see that all of the images look great.</p>
<p>So how did I fix this? If you read the article <a href="http://perishablepress.com/press/2008/05/28/css-hackz-series-png-fix-for-internet-explorer/">PNG Fix for Internet Explorer</a> from Perishable Press you will see that there is a general method for fixing PNG 24 images in IE 6. You&#8217;re going to need to create an IE specific CSS file, this file is linked in the head section of your HTML document after your regular CSS link within conditional comments.</p>
<pre><code>&lt;link href="styles.css" rel="stylesheet" type="text/css" /&gt;

&lt;!--[if lt IE 7]&gt; 

&lt;link rel="stylesheet" type="text/css" href="ie-specific.css" /&gt; 

&lt; ![endif]--&gt;</code></pre>
<p>The conditional comment starts with
<pre><code>&lt;!--[if lt IE 7]&gt;</code></pre>
<p>This tells the browser that if the visitor is using a browser version older than IE 7 then use this special CSS file in addition to the styles.css file. It doesn&#8217;t replace the styles.css file, it just allows you to send specific CSS rules to IE 6. </p>
<p>In the ie-specific.css file you will need one declaration for the transparency fix.</p>
<pre><code>
.png { behavior: url(png.htc); }
</code></pre>
<p>You created a class called png. Behavior is a CSS property that allows you to attach a script to an element, class, or id. The png.htc file contains a JavaScript that will fix the PNG 24 display issues in IE 6 and earlier versions. You can learn more about this property and htc files in the <a href="http://reference.sitepoint.com/css/behavior#">SitePoint Reference</a>.</p>
<p>You also need a special JavaScript file, the htc file. You will find this file all over the Internet, but here is a <a href="http://www.robinsblog.com/png.zip">zip of the png.htc</a> file that I used. You will also need a <a href="http://www.robinsblog.com/transparent.zip">transparent GIF file</a>, this is a 1px x 1px transparent GIF that the HTC file uses.</p>
<p>To make this fix easier to use, the files ie-specific.css, png.htc, and transparent.gif should be placed in the same folder. If you place them in different folders you will need to edit the paths in the CSS file and the HTC file. This isn&#8217;t really a big deal, but sometimes it can cause problems for the beginner.</p>
<p>Ok, you have got your CSS file created and linked using conditional comments, your HTC file and transparent GIF files are in the same folder as your CSS and you preview your page in IE 6 and it still looks like crap, oh I mean bad. We&#8217;ve got a little more editing to do &#8211; remember that class we created in the ie-specific.css file? Ok, in case you forgot, this one</p>
<pre><code>
.png { behavior: url(png.htc); }
</code></pre>
<p>You now have to apply this class in your HTML file whenever you use a PNG 24 image. For example the <a href="http://theplacetoplay.com/grunge/">&#8220;Get Your Hands Dirty&#8221; PNG 24 logo</a> was applied as a background image in the main styles.css file with this code</p>
<pre><code>h1 a {
display: block;
background: url(images/title.png) no-repeat left top;
float: left;
height: 92px;
width: 426px;
}</code></pre>
<p>so the png class from the ie-specific.css file needed to be added to the HTML</p>
<pre><code>&lt;h1&gt;&lt;a href="#" class="png"&gt;Get Your Hands Dirty&lt;/a&gt;&lt;/h1&gt;</code></pre>
<p>Here is another example of how it was added to the featured work image</p>
<pre><code>&lt;h2 class="featured-work png"&gt;Featured Work&lt;/h2&gt;</code></pre>
<p>In the above example two classes have been applied &#8211; featured-work is from the main styles.css file and png is from the ie-specific.css file.</p>
<p>The ie-specific.css file can also contain other declarations that are for Internet Explorer 6 only; you are not limited to using this file just for fixing transparent PNG files. Anytime you think about putting <strong>* html</strong> in your regular CSS file to fix an IE 6 issue you can put the declaration in the ie-specific.css file instead. </p>
<p>Again, there are numerous fixes for this issue and this may not be the perfect fix for you. Check out the great article at <a href="http://perishablepress.com/press/2008/05/28/css-hackz-series-png-fix-for-internet-explorer/">Perishable Press on the subject</a> or remember that Google is your friend. </p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.robinsblog.com/10292009/css-comments-for-beginners/" rel="bookmark">CSS Comments for Beginners</a></li><li><a href="http://www.robinsblog.com/01132010/easy-to-follow-photoshop-tutorials-for-creating-portfolio-layouts/" rel="bookmark">Easy to Follow Photoshop Tutorials for Creating Portfolio Layouts</a></li><li><a href="http://www.robinsblog.com/12192007/creating-simple-striped-background-images/" rel="bookmark">Creating Simple Striped Background Images</a></li><li><a href="http://www.robinsblog.com/03112005/changing-file-associations/" rel="bookmark">Changing File Associations</a></li><li><a href="http://www.robinsblog.com/03242005/basic-steps-to-create-the-site-in-an-hour/" rel="bookmark">Basic Steps to Create the Site-in-an-Hour</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.robinsblog.com/12232009/transparent-png-24-images-with-internet-explorer-6-for-beginners/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firebug Lite for Internet Explorer, Safari, Opera and the Rest</title>
		<link>http://www.robinsblog.com/11242009/firebug-lite-for-internet-explorer-safari-opera-and-the-rest/</link>
		<comments>http://www.robinsblog.com/11242009/firebug-lite-for-internet-explorer-safari-opera-and-the-rest/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 18:20:53 +0000</pubDate>
		<dc:creator>Robin Wood</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Firefox Extensions]]></category>
		<category><![CDATA[XHTML & Coding]]></category>

		<guid isPermaLink="false">http://www.robinsblog.com/?p=1628</guid>
		<description><![CDATA[<a href="http://www.robinsblog.com/11242009/firebug-lite-for-internet-explorer-safari-opera-and-the-rest/"><img align="left" hspace="5" width="150" height="150" src="http://www.robinsblog.com/wp-content/uploads/2009/11/firebuglite-150x150.png" class="alignleft wp-post-image tfe" alt="Firebug Lite Screen" title="firebuglite" /></a>
Firebug is one of the most popular Firefox extensions for troubleshooting CSS problems. Firebug Lite is a JavaScript file that simulates some of Firebug&#8217;s features in Internet Explorer, Opera, Safari and other browsers. 
You can use the Firebug Lite bookmarklet in class. Due to our security settings you won&#8217;t be able to drag the bookmarklet to the Favorites/Bookmarks bar as [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.robinsblog.com/wp-content/uploads/2009/11/firebuglite.png" alt="Firebug Lite Screen" title="firebuglite" width="352" height="323" class="aligncenter" /><br />
<a href="http://getfirebug.com/">Firebug</a> is one of the most popular Firefox extensions for troubleshooting CSS problems. <a href="http://getfirebug.com/lite.html">Firebug Lite</a> is a JavaScript file that simulates <strong>some</strong> of Firebug&#8217;s features in Internet Explorer, Opera, Safari and other browsers. </p>
<p>You can use the Firebug Lite bookmarklet in class. Due to our security settings you won&#8217;t be able to drag the bookmarklet to the Favorites/Bookmarks bar as described on the Firebug Lite Web page. Instead use the following instructions to add Firebug lite to your Favorites.</p>
<ol>
<li>Visit <a href="http://getfirebug.com/lite.html">http://getfirebug.com/lite.html</a></li>
<li>Scroll down the page until you see the link that says Firebug Lite</li>
<li>Right click the Firebug Lite link and select Add to Favorites&#8230; from the menu</li>
<li>Click yes to the security alert</li>
<li>Select the Favorites folder and click OK</li>
</ol>
<p><strong>To start Firebug Lite in Internet Explorer</strong></p>
<ol>
<li>Open the Web page you want to analyze</li>
<li>Click Favorites > Firebug Lite</li>
</ol>
<p><strong>Firebug Tutorials</strong></p>
<ul>
<li><a href="http://www.webmonkey.com/tutorial/Build_Better_Pages_With_Firebug">Build Better Pages With Firebug</a></li>
<li><a href="http://www.thetruetribe.com/javascript/30-javascript-design-patterns/81-firebug-tutorial-getting-started">Firebug Tutorial: Getting Started</a></li>
<li><a href="http://courses.csail.mit.edu/6.831/handouts/ps4/tutorial/index.html">HTML/CSS/Javascript in Firefox</a></li>
<li><a href="http://net.tutsplus.com/articles/general/voting-begins-the-first-5-screencast-contestants/">How to Test CSS Rules with Firebug</a></li>
<li><a href="http://www.kristarella.com/2009/02/how-to-use-firebug-for-css/">How to use Firebug for CSS</a></li>
<li><a href="http://showmedo.com/videotutorials/video?fromSeriesID=51&amp;name=webdevNewlandFirebug">Live CSS Editing and Debugging with Firebug</a></li>
</ul>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.robinsblog.com/11202008/using-firebug-to-debug-code/" rel="bookmark">Using Firebug to Debug Code</a></li><li><a href="http://www.robinsblog.com/02052009/26-essential-firefox-add-ons-for-web-designers/" rel="bookmark">26 Essential Firefox Add-ons for Web Designers</a></li><li><a href="http://www.robinsblog.com/03242006/firefox-extensions-for-web-developers/" rel="bookmark">Firefox Extensions for Web Developers</a></li><li><a href="http://www.robinsblog.com/04122005/cheatsheets-and-other-resources-for-new-students/" rel="bookmark">Cheatsheets and Other Resources for New Students</a></li><li><a href="http://www.robinsblog.com/03112005/changing-file-associations/" rel="bookmark">Changing File Associations</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.robinsblog.com/11242009/firebug-lite-for-internet-explorer-safari-opera-and-the-rest/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CSS Comments for Beginners</title>
		<link>http://www.robinsblog.com/10292009/css-comments-for-beginners/</link>
		<comments>http://www.robinsblog.com/10292009/css-comments-for-beginners/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 20:40:27 +0000</pubDate>
		<dc:creator>Robin Wood</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.robinsblog.com/?p=1597</guid>
		<description><![CDATA[<a href="http://www.robinsblog.com/10292009/css-comments-for-beginners/"><img align="left" hspace="5" width="150" height="150" src="http://www.robinsblog.com/wp-content/uploads/2009/10/floatcollapse-150x150.png" class="alignleft wp-post-image tfe" alt="CSS collapsed parent element" title="CSS collapsed parent element" /></a>So you’re working on your first simple HTML and CSS site. You’ve got a gorgeous layout in your head and hopefully sketched out on paper and you’re ready to fire up the HTML editor. The first HTML page starts to take shape, the doctype is set and divs for the wrapper, header, sidebar, content, and footer are added to the [...]]]></description>
			<content:encoded><![CDATA[<p>So you’re working on your first simple HTML and CSS site. You’ve got a gorgeous layout in your head and hopefully sketched out on paper and you’re ready to fire up the HTML editor. The first HTML page starts to take shape, the doctype is set and divs for the wrapper, header, sidebar, content, and footer are added to the code. The CSS file is created and you add a link to it from the HTML page. CSS declarations are written &#8211; floats, margins, padding, fonts, colors, and images are applied. You preview the page in IE 6, 7 and 8, Firefox, Safari, and Opera too and the page is beautiful AND looks <strong>EXACTLY</strong> the same in all of the browsers! </p>
<h3>Well, it would in a perfect browser world</h3>
<p>The truth is it probably won’t, especially when you’re first learning to code. Unfortunately, each browser interprets and displays HTML &#038; CSS code differently. Sometimes these differences can be slight, an image may be a few pixels further to the right in Opera or a font may appear slightly smaller in Safari. Sometimes these inconsistencies can be MAJOR, you may find that entire div is positioned in the wrong place or an absolutely positioned image doesn’t even appear in Internet Explorer 6.</p>
<p>In addition to interpretation differences between browsers there are also numerous browser bugs that can be triggered by a simple property/value addition or even a minor change to a pixel value in the CSS. Browser bugs can cause entire layouts to break; floats can drop to the bottom of the page, containing elements with background images and/or colors can collapse around their contents, and elements may just disappear!</p>
<p>The browser bugs and workarounds are well documented; <a href="http://www.robinsblog.com/10192009/great-css-resources-and-articles-for-students/">Great CSS Resources and Articles for Students</a>  has links to terrific resources around the Web for learning more about these issues and how to fix them. I know that all of the articles may seem overwhelming at first, but taking the time to start to learn about browser issues will save you time and headaches in the future. When you encounter a layout issue remember that Google is your friend.  Searching for the browser name and version, display issue, and the word “bug” should give you a lot of resources.  </p>
<h3>Comments and CSS Code</h3>
<p>In a perfect world, we would all have a photographic memory. I know that I don’t &#8211; I rely on bookmarks, printed articles, notes, overly highlighted books, and search engines.</p>
<p>When I develop or edit CSS and HTML documents I include notes or comments in my code. I use comments to set reminders or to “talk to myself” as I’m developing or as I’m troubleshooting student code.  Developers frequently use comments to explain code snippets to other developers. </p>
<p>Comments begin with a forward slash and an asterisk <strong><em>/*</em></strong> and end with an asterisk and a forward slash <strong><em>*/</em></strong></p>
<p>So here is the format of a typical comment:</p>
<p><em><strong>/*</strong>      comment text goes here – comments can be single line or multiple lines      <strong>*/</strong></em></p>
<h3>CSS Design Notes</h3>
<p>You may find it helpful to include design notes such as colors and fonts, and frameworks that may have been used at the top of the CSS file within a comment.  It’s also helpful to include a table of contents that lists each section of code.</p>
<p><em><strong>/*</strong> Design Notes<br />
Author/Designer: Debb Designer</p>
<p>Color palette<br />
#<a href="http://search.twitter.com/search?q=%23D4EEF7" rel="nofollow" target="_blank" title="Search Twitter for &quot;D4EEF7&quot;">D4EEF7</a> Sidebar/Header background –Color Name<br />
#<a href="http://search.twitter.com/search?q=%232DCA0C" rel="nofollow" target="_blank" title="Search Twitter for &quot;2DCA0C&quot;">2DCA0C</a> Menu background–Color Name<br />
#<a href="http://search.twitter.com/search?q=%23026FFF" rel="nofollow" target="_blank" title="Search Twitter for &quot;026FFF&quot;">026FFF</a> Hyperlinks–Color Name<br />
Continue color palette</p>
<p>Fonts<br />
Font names and their usage</p>
<p>Is the design based on a framework? If so, which one?</p>
<p>Additional design notes – Things you may forget down the road</p>
<p>Table of contents<br />
Wrapper – Container to set width, center page, and define background color<br />
Header – logo and name of site<br />
Sidebar – navigation menu<br />
Content – content area<br />
Footer – contact information and copyright<br />
<strong>*/</strong></em></p>
<p>By putting this information at the top of the CSS file you can quickly see the hex values (colors), fonts, etc. for the site instead of having to scroll through the entire CSS document.</p>
<h3>Structural CSS Comments</h3>
<p>As you are building the CSS file you should include simple comments about each section of code. This makes for better organization and easier editing.  </p>
<p><em>/*&#8212;&#8211; Wrapper &#8212;&#8211;*/</em></p>
<p>CSS declarations</p>
<p><em>/*&#8212;&#8212; Header &#8212;&#8211; */</em></p>
<p>CSS declarations</p>
<p><em>/* &#8212;&#8211;Sidebar&#8212;&#8211; */</em></p>
<p>CSS declarations</p>
<p><em>/* &#8212;&#8211;Content&#8212;&#8211; */</em></p>
<p>CSS declarations</p>
<p><em>/* &#8212;&#8211;Footer&#8212;&#8211; */</em></p>
<h3>Before you edit!</h3>
<p>Before you make major changes to the CSS file be sure to save a backup. You can always revert to this copy if the layout breaks during editing. You can also use this copy to compare to the edited file.</p>
<h3>Comment as you edit</h3>
<p>Once you have the basic layout done you may need to tweak pixel values. Unfortunately, sometimes an increase of just a few pixels to a margin, padding, or width value can cause a layout to break. As you increase or decrease the original values comment the CSS.</p>
<p>#sidebar {<br />
float: 		left;<br />
width: 		200px;		<strong><em>/* increased sidebar width from 175px */</em></strong><br />
padding: 	5px;<br />
}</p>
<p>When you make a value change, preview the code in multiple browsers before you make additional changes. This makes it easy to see if the change caused a problem to the layout. If you make numerous changes to different selectors without previewing and a problem with the layout occurs it will be more difficult to trace the error. This may seem like overkill to experienced developers, but when you’re learning it’s very helpful to see how each change affects the layout of the page. Once the layout is complete you can remove these comments.</p>
<h3>Comment instead of delete</h3>
<p>If you think you don’t need certain CSS code snippets or you think a piece of code may be causing problems, comment the code out rather than deleting it. Once you’re done developing you can delete these comments and code snippets.</p>
<p><em>/*     this code is no longer needed<br />
.alignright {<br />
float:		right;<br />
margin-left: 	5px;<br />
border:		1px solid #<a href="http://search.twitter.com/search?q=%23000" rel="nofollow" target="_blank" title="Search Twitter for &quot;000&quot;">000</a>;<br />
}<br />
*/</em></p>
<h3>Comment CSS Workarounds</h3>
<p>You will probably encounter some browser specific bugs and layout issues, especially in Internet Explorer 6. If a workaround is added for a specific browser issue, add a comment.</p>
<p>For example if you use a layout that has many floats you may encounter a “collapsed” parent element. This is common when you have a wrapper that has a background color and/or image that you want to appear behind all of the nested floats. Instead of the background wrapper expanding to surround all of the floated elements it collapses as demonstrated in the image below.</p>
<p><img src="http://www.robinsblog.com/wp-content/uploads/2009/10/floatcollapse.png" alt="CSS collapsed parent element" title="CSS collapsed parent element" width="467" height="192" class="center" /></p>
<p>So you do some searching around the Internet and find some solutions. You decide to apply the overflow fix to #<a href="http://search.twitter.com/search?q=%23wrapper" rel="nofollow" target="_blank" title="Search Twitter for &quot;wrapper&quot;">wrapper</a> like this:</p>
<p>#wrapper {<br />
width:			720px;<br />
background-color: 	#<a href="http://search.twitter.com/search?q=%234F81BD" rel="nofollow" target="_blank" title="Search Twitter for &quot;4F81BD&quot;">4F81BD</a>;<br />
overflow:		auto;		<em><strong>/* fixes the collapsed wrapper */</strong></em><br />
}</p>
<p>Today you may remember why you added overflow: visible to the declaration, but in a few months or even days you may not. It’s a good idea to comment and workaround, fixes, and any other unusual code that may be needed. </p>
<p>What are you waiting for, I&#8217;m sure you have a few CSS files that need some comments.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.robinsblog.com/10192009/great-css-resources-and-articles-for-students/" rel="bookmark">Great CSS Resources and Articles for Students</a></li><li><a href="http://www.robinsblog.com/12232009/transparent-png-24-images-with-internet-explorer-6-for-beginners/" rel="bookmark">Transparent PNG 24 Images with Internet Explorer 6 for Beginners</a></li><li><a href="http://www.robinsblog.com/03242005/basic-steps-to-create-the-site-in-an-hour/" rel="bookmark">Basic Steps to Create the Site-in-an-Hour</a></li><li><a href="http://www.robinsblog.com/03162005/common-css-hacks/" rel="bookmark">Common CSS Hacks</a></li><li><a href="http://www.robinsblog.com/05072005/before-dreamweaver/" rel="bookmark">Before Dreamweaver</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.robinsblog.com/10292009/css-comments-for-beginners/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Great CSS Resources and Articles for Students</title>
		<link>http://www.robinsblog.com/10192009/great-css-resources-and-articles-for-students/</link>
		<comments>http://www.robinsblog.com/10192009/great-css-resources-and-articles-for-students/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 21:11:05 +0000</pubDate>
		<dc:creator>Robin Wood</dc:creator>
				<category><![CDATA[Browser Issues]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.robinsblog.com/?p=1547</guid>
		<description><![CDATA[<a href="http://www.robinsblog.com/10192009/great-css-resources-and-articles-for-students/"><img align="left" hspace="5" width="150" height="150" src="http://www.robinsblog.com/wp-content/uploads/2009/10/cssphoto-150x150.jpg" class="alignleft wp-post-image tfe" alt="CSS Code" title="CSS Code" /></a>
As you start to build your own Web sites you will more than likely come across a few CSS browser bugs. You ma y encounter the &#8220;float drop bug&#8221;, the &#8220;3 pixel jog&#8221;, or the &#8220;IE double margin float bug&#8221; to name a few. Before you pull your hair out with frustration, read the articles below which contain many of [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.robinsblog.com/wp-content/uploads/2009/10/cssphoto.jpg" alt="CSS Code" title="CSS Code" width="375" height="500" class="centered" /><br style="clear:both;" /></p>
<p>As you start to build your own Web sites you will more than likely come across a few CSS browser bugs. You ma y encounter the &#8220;float drop bug&#8221;, the &#8220;3 pixel jog&#8221;, or the &#8220;IE double margin float bug&#8221; to name a few. Before you pull your hair out with frustration, read the articles below which contain many of the common CSS issues and solutions.</p>
<p>If you print any of these articles in the classroom <strong>do not print the comments</strong>. You can view the article in Print Preview mode by selecting <strong>File</strong> > <strong>Print Preview</strong>, scroll down the page until you see the last page of the article and the first page of comments and <strong>note the page number</strong>. Click the <strong>Print</strong> button and set the <strong>Print Range</strong> to <strong>Pages</strong> and enter the <strong>specific ending page</strong>. Select the <strong>HP LaserJect 2420 PCL 6</strong> as the Printer and click the <strong>Properties</strong> button. Click the <strong>Finishing tab</strong> and select <strong>Print on both sides</strong>. Click <strong>OK twice</strong>.</p>
<p><a href="http://www.smashingmagazine.com/2009/10/05/mastering-css-coding-getting-started/">Mastering CSS Coding: Getting Started</a> &#8211;  Great beginners article that covers the following:   Padding vs. margin, Floats, Center alignment, Ordered vs. unordered lists, Styling headings, Overflow, Position, Background images, Image enhancement, PSD to XHTML. This article also includes tips on how to fix bugs and how to avoid them all together.</p>
<p><a href="http://www.noupe.com/css/using-css-to-fix-anything-20-common-bugs-and-fixes.html">Using CSS to Fix Anything: 20+ Common Bugs and Fixes</a> &#8211; Includes IE 6 bugs and fixes, column issues, centering horizontally and vertically, CSS positioning, floats, CSS forms, and CSS tricks.</p>
<p><a href="http://www.smashingmagazine.com/2009/10/19/the-mystery-of-css-float-property/">The Mystery Of The CSS Float Property</a> &#8211; An overview of CSS floats, bugs and solutions, sample layouts, and working with lists and form elements.</p>
<p><a href="http://www.smashingmagazine.com/2007/05/01/css-float-theory-things-you-should-know/">CSS Float Theory: Things You Should Know</a> &#8211;   A detailed introduction to using floats. This articles also covers issues, bugs you may encounter when you are working with floats and &#8220;fixes&#8221;. </p>
<p><a href="http://css-tricks.com/all-about-floats/">All About Floats</a> &#8211; Detailed information about floats, common issues, and fixes. There is also a screencast about float concepts at the end of this article.</p>
<p><a href="http://css.maxdesign.com.au/floatutorial/tutorial0916.htm">Liquid three column layout tutorial</a> &#8211; If you need a starting point for a three column design this is a good tutorial.</p>
<p><a href="http://css-tricks.com/the-css-overflow-property/">The CSS Overflow Property</a> &#8211; Discusses the overflow property and its uses.</p>
<p><a href="http://www.virtuosimedia.com/tutorials/ultimate-ie6-cheatsheet-how-to-fix-25-internet-explorer-6-bugs">Ultimate IE6 Cheatsheet: How To Fix 25+ Internet Explorer 6 Bugs</a></p>
<p><a href="http://net.tutsplus.com/tutorials/html-css-techniques/9-most-common-ie-bugs-and-how-to-fix-them/?utm_source=feedburner&#038;utm_medium=feed&#038;utm_campaign=Feed%3A+nettuts+%28NETTUTS%29">9 Most Common IE Bugs and How to Fix Them</a></p>
<p><a href="http://www.smashingmagazine.com/2009/10/14/css-differences-in-internet-explorer-6-7-and-8/">CSS Differences in Internet Explorer 6, 7 and 8</a> &#8211;  &#8211; This article describes the differences in CSS support IE6, IE7, and IE8. This article also covers any known bugs. This article may also introduce students to some properties they haven&#8217;t used before.</p>
<p><a href="http://www.smashingmagazine.com/2009/09/02/backgrounds-in-css-everything-you-need-to-know/">Backgrounds In CSS: Everything You Need To Know</a> -Detailed information on how to use backgrounds in CSS.</p>
<p><a href="http://line25.com/articles/create-sidebars-of-equal-height-with-faux-columns">Create Sidebars of Equal Height with Faux Columns</a></p>
<p><a href="http://www.zachgraeve.com/2006/10/01/center-abosulte-position-div/">Center Absolute Positioned DIV</a></p>
<p><a href="http://www.instantshift.com/2009/11/16/css-box-model-the-foundation-for-improving-your-css/">CSS Box Model: The Foundation For Improving Your CSS</a></p>
<p><strong>Additional CSS Resource Sites</strong></p>
<p><a href="http://css-tricks.com/the-difference-between-id-and-class/">The Difference Between ID and Class</a> &#8211; IDs vs. classes confuse many people who are new to CSS. This is a great article that explains the difference.</p>
<p><a href="http://reference.sitepoint.com/css">SitePoint CSS Reference</a> &#8211; A great, searchable CSS reference site.</p>
<p><a href="http://css.maxdesign.com.au/index.htm">Max Design</a> &#8211; Tutorials for CSS floats, lists, and selectors.</p>
<p><a href="http://www.positioniseverything.net/">Position is Everything</a> &#8211; CSS bugs found in Web browsers and advanced CSS techniques.</p>
<p><a href="http://css-tricks.com/">CSS-Tricks</a> &#8211; CSS Articles, freebies, code snippets, and forums.</p>
<p><a href="http://www.quirksmode.org/css/contents.html">quirksmode.org</a> &#8211; CSS browser compatibility, information on conditional comments and information on quirks mode and strict mode.</p>
<p><a href="http://blog.html.it/layoutgala/">Layout Gala</a> &#8211; 40 HTML and CSS Layouts</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.robinsblog.com/10292009/css-comments-for-beginners/" rel="bookmark">CSS Comments for Beginners</a></li><li><a href="http://www.robinsblog.com/10132008/using-css-to-fix-anything-20-common-bugs-and-fixes/" rel="bookmark">Using CSS to Fix Anything: 20+ Common Bugs and Fixes</a></li><li><a href="http://www.robinsblog.com/03082005/3-column-layouts/" rel="bookmark">3 Column Layouts</a></li><li><a href="http://www.robinsblog.com/03162005/common-css-hacks/" rel="bookmark">Common CSS Hacks</a></li><li><a href="http://www.robinsblog.com/01182008/ie6-css-bugs-and-fixes-explained/" rel="bookmark">IE6 - CSS Bugs and Fixes Explained</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.robinsblog.com/10192009/great-css-resources-and-articles-for-students/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress Theme Development Resources from @piervix</title>
		<link>http://www.robinsblog.com/10132009/wordpress-theme-development-resources-from-piervix/</link>
		<comments>http://www.robinsblog.com/10132009/wordpress-theme-development-resources-from-piervix/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 19:32:31 +0000</pubDate>
		<dc:creator>Robin Wood</dc:creator>
				<category><![CDATA[Blogs, Content Management Systems & WordPress]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Graphics (Photoshop, Illustrator, Fireworks, etc.)]]></category>
		<category><![CDATA[XHTML & Coding]]></category>

		<guid isPermaLink="false">http://www.robinsblog.com/?p=1526</guid>
		<description><![CDATA[<a href="http://www.robinsblog.com/10132009/wordpress-theme-development-resources-from-piervix/"><img align="left" hspace="5" width="150" src="http://www.robinsblog.com/wp-content/uploads/2009/10/pvmgarage.png" class="alignleft wp-post-image tfe" alt="PV.M Garage Blogzine" title="PV.M Garage Blogzine" /></a>Pievincenzo Madeo, aka @piervix, of PV.M Garage has collected a great set of resources for people who want to learn how to create themes for WordPress. 
In his post, Become A WordPress Theme Developer Who Rocks In Four Steps (and 50+ readings), Pievincenzo outlines his four step process for developing WordPress themes and includes links to tutorials for developing themes [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.robinsblog.com/wp-content/uploads/2009/10/pvmgarage.png" alt="PV.M Garage Blogzine" title="PV.M Garage Blogzine" width="243" height="123" class="alignleft" />Pievincenzo Madeo, aka @<a href="http://twitter.com/piervix" rel="nofollow" target="_blank" title="View piervix's Twitter Profile">piervix</a>, of <a href="http://www.pvmgarage.com/en/" title="PV.M Garage">PV.M Garage</a> has collected a great set of resources for people who want to learn how to create themes for WordPress. </p>
<p>In his post, <a href="http://www.pvmgarage.com/en/2009/10/become-a-wordpress-theme-developer-who-rocks-in-four-steps-and-50-readings/" title="Become A WordPress Theme Developer Who Rocks In Four Steps (and 50+ readings)">Become A WordPress Theme Developer Who Rocks In Four Steps (and 50+ readings)</a>, Pievincenzo outlines his four step process for developing WordPress themes and includes links to tutorials for developing themes in Photoshop, converting Photoshop (PSD) files to a HTML/CSS layouts, coding specifically for WordPress, and finally hacks (suggestions) to improve your themes.</p>
<p>This is a great roundup of resources, so be sure to check it out along with the other great tutorials and resources at <a href="http://www.pvmgarage.com/en/" title="PV.M Garage">PV.M Garage</a>.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.robinsblog.com/06202009/wordpress-resource-roundup/" rel="bookmark">WordPress Resource Roundup</a></li><li><a href="http://www.robinsblog.com/03062009/joomla-and-wordpress-units-now-available/" rel="bookmark">Joomla and WordPress Units Now Available</a></li><li><a href="http://www.robinsblog.com/03142005/scriptygoddess-and-other-wordpress-goodies/" rel="bookmark">ScriptyGoddess & Other WordPress Goodies</a></li><li><a href="http://www.robinsblog.com/02022006/diy-searching-engine-optimization/" rel="bookmark">DIY Searching Engine Optimization</a></li><li><a href="http://www.robinsblog.com/04282009/converting-a-photoshop-psd-file-to-and-xhtml-css-web-site/" rel="bookmark">Converting a Photoshop PSD File to an XHTML & CSS Web Site - Creating Mockups</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.robinsblog.com/10132009/wordpress-theme-development-resources-from-piervix/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Tripwire Magazine&#8217;s Mega CSS Resource Roundup</title>
		<link>http://www.robinsblog.com/07262009/tripwire-magazines-mega-css-resource-roundup/</link>
		<comments>http://www.robinsblog.com/07262009/tripwire-magazines-mega-css-resource-roundup/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 02:01:53 +0000</pubDate>
		<dc:creator>Robin Wood</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design and Layout]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[XHTML & Coding]]></category>

		<guid isPermaLink="false">http://www.robinsblog.com/?p=1334</guid>
		<description><![CDATA[<a href="http://www.robinsblog.com/07262009/tripwire-magazines-mega-css-resource-roundup/"><img align="left" hspace="5" width="150" height="150" src="http://www.robinsblog.com/wp-content/uploads/2009/07/tripwiremegacss2-150x150.png" class="alignleft wp-post-image tfe" alt="Tripwire Magazines Mega CSS Resource Roundup" title="Tripwire Magazines Mega CSS Resource Roundup" /></a>Tripwire Magazine has compiled a terrific Mega CSS Resources Roundup that is a must bookmark for student. It includes cheatsheets (CSS HTML/XHTML, and color), excellent CSS resource sites and articles for beginners, free templates, positioning articles, articles on styling forms, typography articles and resources, graphing techniques, frameworks, numerous menu options, and tools to optimize your CSS and enhance your workflow. [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.robinsblog.com/wp-content/uploads/2009/07/tripwiremegacss2.png" alt="Tripwire Magazines Mega CSS Resource Roundup" title="Tripwire Magazines Mega CSS Resource Roundup" width="209" height="208" class="alignleft" /><a href="http://www.tripwiremagazine.com/">Tripwire Magazine</a> has compiled a terrific <a href="http://www.tripwiremagazine.com/tutorials/tools/mega-css-resource-roundup.html">Mega CSS Resources Roundup</a> that is a must bookmark for student. It includes cheatsheets (CSS HTML/XHTML, and color), excellent CSS resource sites and articles for beginners, free templates, positioning articles, articles on styling forms, typography articles and resources, graphing techniques, frameworks, numerous menu options, and tools to optimize your CSS and enhance your workflow.  </p>
<p>While you are over at Tripwire, check out <a href="http://www.tripwiremagazine.com/tools/design/45-css-grid-systems-layout-generators-and-tutorials-that-every-designer-should-know.html">45+ CSS Grid Systems, Layout Generators and Tutorials that every Designer should know</a>, <a href="http://www.tripwiremagazine.com/tools/css-techniques/7-new-essential-css-3-techniques-revealed.html">7 New Essential CSS 3 Techniques Revealed</a>, <a href="http://www.tripwiremagazine.com/design/css-techniques/160-mega-web-design-tutorial-roundup.html">160+ Mega Web Design Tutorial Roundup</a>, and <a href="http://www.tripwiremagazine.com/tools/tools/150-worth-knowing-web-developer-tools-and-techniques.html">150 Worth Knowing Web Developer Tools and Techniques</a> too.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.robinsblog.com/03202009/35-very-useful-and-powerful-css-techniques/" rel="bookmark">35+ very Useful And Powerful CSS techniques</a></li><li><a href="http://www.robinsblog.com/12182007/web-site-frameworks-grids/" rel="bookmark">Web Site Frameworks & Grids</a></li><li><a href="http://www.robinsblog.com/10142008/15-tools-for-monitoring-a-website%e2%80%99s-popularity/" rel="bookmark">15 Tools for Monitoring a Website’s Popularity</a></li><li><a href="http://www.robinsblog.com/11012008/15-free-tools-for-web-based-collaboration/" rel="bookmark">15 Free Tools for Web-based Collaboration</a></li><li><a href="http://www.robinsblog.com/05112009/500-illustrator-and-photoshop-logo-tutorials-resources-and-inspiration/" rel="bookmark">500+ Illustrator and Photoshop Logo Tutorials, Resources, and Inspiration</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.robinsblog.com/07262009/tripwire-magazines-mega-css-resource-roundup/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HTML &amp; CSS Coding Resources</title>
		<link>http://www.robinsblog.com/06242009/html-css-coding-resources/</link>
		<comments>http://www.robinsblog.com/06242009/html-css-coding-resources/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 16:58:27 +0000</pubDate>
		<dc:creator>Robin Wood</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[PHP/MySQL & JavaScript]]></category>
		<category><![CDATA[XHTML & Coding]]></category>

		<guid isPermaLink="false">http://www.robinsblog.com/?p=1216</guid>
		<description><![CDATA[<a href="http://www.robinsblog.com/06242009/html-css-coding-resources/"><img align="left" hspace="5" width="150" height="150" src="http://www.robinsblog.com/wp-content/uploads/2009/06/redlight800-150x150.jpg" class="alignleft wp-post-image tfe" alt="Red Light" title="Red Light" /></a>
This is a roundup of wonderful articles that deal with coding Web pages. Most are tips on HTML &#38; CSS, but there are also a few JavaScript and PHP resources.
Remember, these are articles I &#8220;tweet&#8221; on Twitter. Click the @username to see the posts of some of the people who I respect and love to &#8220;follow&#8221; on Twitter, the #hashtags [...]]]></description>
			<content:encoded><![CDATA[<p><img class="centered" title="Red Light" src="http://www.robinsblog.com/wp-content/uploads/2009/06/redlight800.jpg" alt="Red Light" width="500" height="375" /></p>
<p>This is a roundup of wonderful articles that deal with coding Web pages. Most are tips on HTML &amp; CSS, but there are also a few JavaScript and PHP resources.</p>
<p>Remember, these are articles I &#8220;tweet&#8221; on <a title="Aren't you on Twitter Yet?" href="http://www.twitter.com">Twitter</a>. Click the @<a href="http://twitter.com/username" rel="nofollow" target="_blank" title="View username's Twitter Profile">username</a> to see the posts of some of the people who I respect and love to &#8220;follow&#8221; on Twitter, the #<a href="http://search.twitter.com/search?q=%23hashtags" rel="nofollow" target="_blank" title="Search Twitter for &quot;hashtags&quot;">hashtags</a> to search the related topics, and of course the actual links to read the awesome articles.</p>
<p><strong>HTML &amp; CSS Coding Resources</strong></p>
<ol>
<li>Handy Tips for Creating a Print #<a href="http://search.twitter.com/search?q=%23CSS" rel="nofollow" target="_blank" title="Search Twitter for &quot;CSS&quot;">CSS</a> Stylesheet <a href="http://bit.ly/XRk08">http://bit.ly/XRk08</a></li>
<li>In the Woods &#8211; HTML, CSS, PHP and jQuery Killer Tutorials <a href="http://tr.im/kif7">http://tr.im/kif7</a> (via @<a href="http://twitter.com/del_javascript" rel="nofollow" target="_blank" title="View del_javascript's Twitter Profile">del_javascript</a> @<a href="http://twitter.com/IsaacVanName" rel="nofollow" target="_blank" title="View IsaacVanName's Twitter Profile">IsaacVanName</a>)</li>
<li>RT @<a href="http://twitter.com/mlane" rel="nofollow" target="_blank" title="View mlane's Twitter Profile">mlane</a>: 13 Must-Have Add-ons To Strengthen Firebug &#8211; <a href="http://bit.ly/14KZQ0">http://bit.ly/14KZQ0</a></li>
<li>Adaptive #<a href="http://search.twitter.com/search?q=%23CSS" rel="nofollow" target="_blank" title="Search Twitter for &quot;CSS&quot;">CSS</a> Layouts: New Era In Fluid Layouts? <a href="http://bit.ly/13gUdJ">http://bit.ly/13gUdJ</a></li>
<li>RT @<a href="http://twitter.com/nishanjoomun" rel="nofollow" target="_blank" title="View nishanjoomun's Twitter Profile">nishanjoomun</a>: Experimental #<a href="http://search.twitter.com/search?q=%23CSS" rel="nofollow" target="_blank" title="Search Twitter for &quot;CSS&quot;">CSS</a> compatibility table <a href="http://tinyurl.com/qre2cb">http://tinyurl.com/qre2cb</a></li>
<li>6 Reasons Why Designers Should Code <a href="http://bit.ly/n7IXQ">http://bit.ly/n7IXQ</a> great article and discussion</li>
<li>6 Free PSD/(X)HTML-Templates <a href="http://bit.ly/g96kg">http://bit.ly/g96kg</a></li>
<li>RT @<a href="http://twitter.com/Koufie" rel="nofollow" target="_blank" title="View Koufie's Twitter Profile">Koufie</a>: 16+ Easy #<a href="http://search.twitter.com/search?q=%23CSS" rel="nofollow" target="_blank" title="Search Twitter for &quot;CSS&quot;">CSS</a> Techniques that Simplify the Webdesigner’s Life <a href="http://is.gd/O9wB">http://is.gd/O9wB</a></li>
<li>Fixed vs. Fluid vs. Elastic #<a href="http://search.twitter.com/search?q=%23Website" rel="nofollow" target="_blank" title="Search Twitter for &quot;Website&quot;">Website</a> Layout: What&#8217;s The Right One For You? <a href="http://bit.ly/OqF1M">http://bit.ly/OqF1M</a> (via @<a href="http://twitter.com/phaoloo" rel="nofollow" target="_blank" title="View phaoloo's Twitter Profile">phaoloo</a>)</li>
<li>RT @<a href="http://twitter.com/mlane" rel="nofollow" target="_blank" title="View mlane's Twitter Profile">mlane</a>: Everything You Need to Know About the !important #<a href="http://search.twitter.com/search?q=%23CSS" rel="nofollow" target="_blank" title="Search Twitter for &quot;CSS&quot;">CSS</a> Declaration &#8211; <a href="http://bit.ly/V69B7">http://bit.ly/V69B7</a></li>
<li>RT @<a href="http://twitter.com/pairadocsdesign" rel="nofollow" target="_blank" title="View pairadocsdesign's Twitter Profile">pairadocsdesign</a> @<a href="http://twitter.com/giographix" rel="nofollow" target="_blank" title="View giographix's Twitter Profile">giographix</a>: 10 #<a href="http://search.twitter.com/search?q=%23HTML" rel="nofollow" target="_blank" title="Search Twitter for &quot;HTML&quot;">HTML</a> Tag Crimes You Really Shouldn’t Commit <a href="http://bit.ly/DPYcg">http://bit.ly/DPYcg</a></li>
<li>Best of TutorialFeed <a href="http://bit.ly/17yCrI">http://bit.ly/17yCrI</a> <a href="http://ff.im/3t1EM">http://ff.im/3t1EM</a> (via @<a href="http://twitter.com/mytutorialfeed" rel="nofollow" target="_blank" title="View mytutorialfeed's Twitter Profile">mytutorialfeed</a>) #<a href="http://search.twitter.com/search?q=%23css" rel="nofollow" target="_blank" title="Search Twitter for &quot;css&quot;">css</a> and more</li>
<li>10 Professional Looking Free #<a href="http://search.twitter.com/search?q=%23CSS" rel="nofollow" target="_blank" title="Search Twitter for &quot;CSS&quot;">CSS</a> Menu’s &#8211; <a href="http://bit.ly/VgZ3j">http://bit.ly/VgZ3j</a> (via @<a href="http://twitter.com/Minervity" rel="nofollow" target="_blank" title="View Minervity's Twitter Profile">Minervity</a>)</li>
<li>14 Free Tools To Validate Your #<a href="http://search.twitter.com/search?q=%23HTML" rel="nofollow" target="_blank" title="Search Twitter for &quot;HTML&quot;">HTML</a>, #<a href="http://search.twitter.com/search?q=%23CSS" rel="nofollow" target="_blank" title="Search Twitter for &quot;CSS&quot;">CSS</a> &amp; #<a href="http://search.twitter.com/search?q=%23RSS" rel="nofollow" target="_blank" title="Search Twitter for &quot;RSS&quot;">RSS</a> Feeds <a href="http://is.gd/Ika9">http://is.gd/Ika9</a> (via @<a href="http://twitter.com/briancray" rel="nofollow" target="_blank" title="View briancray's Twitter Profile">briancray</a>)</li>
<li>RT @<a href="http://twitter.com/ronicadesign" rel="nofollow" target="_blank" title="View ronicadesign's Twitter Profile">ronicadesign</a>: 30 Tutorials On Converting A PSD To #<a href="http://search.twitter.com/search?q=%23XHTML" rel="nofollow" target="_blank" title="Search Twitter for &quot;XHTML&quot;">XHTML</a> And #<a href="http://search.twitter.com/search?q=%23CSS" rel="nofollow" target="_blank" title="Search Twitter for &quot;CSS&quot;">CSS</a> &gt; <a href="http://bit.ly/qJEJJ">http://bit.ly/qJEJJ</a> #<a href="http://search.twitter.com/search?q=%23photoshop" rel="nofollow" target="_blank" title="Search Twitter for &quot;photoshop&quot;">photoshop</a></li>
<li>RT @<a href="http://twitter.com/ruhanirabin" rel="nofollow" target="_blank" title="View ruhanirabin's Twitter Profile">ruhanirabin</a> @<a href="http://twitter.com/IsaacVanName" rel="nofollow" target="_blank" title="View IsaacVanName's Twitter Profile">IsaacVanName</a> @<a href="http://twitter.com/designresources" rel="nofollow" target="_blank" title="View designresources's Twitter Profile">designresources</a> #<a href="http://search.twitter.com/search?q=%23CSS" rel="nofollow" target="_blank" title="Search Twitter for &quot;CSS&quot;">CSS</a> Tip: Create effective headline typography &#8211; <a href="http://bit.ly/OiHfc">http://bit.ly/OiHfc</a></li>
<li>How AJAX Works: 10 Practical Uses For #<a href="http://search.twitter.com/search?q=%23AJAX" rel="nofollow" target="_blank" title="Search Twitter for &quot;AJAX&quot;">AJAX</a> <a href="http://bit.ly/6qpw2">http://bit.ly/6qpw2</a> (via @<a href="http://twitter.com/webdesign_news" rel="nofollow" target="_blank" title="View webdesign_news's Twitter Profile">webdesign_news</a>) great for students!</li>
<li>RT @<a href="http://twitter.com/paviles" rel="nofollow" target="_blank" title="View paviles's Twitter Profile">paviles</a> @<a href="http://twitter.com/justdesign" rel="nofollow" target="_blank" title="View justdesign's Twitter Profile">justdesign</a> @<a href="http://twitter.com/RobStajo" rel="nofollow" target="_blank" title="View RobStajo's Twitter Profile">RobStajo</a>: #<a href="http://search.twitter.com/search?q=%23jQuery" rel="nofollow" target="_blank" title="Search Twitter for &quot;jQuery&quot;">jQuery</a> for Absolute Beginners: The Complete Series: <a href="http://is.gd/qNYE">http://is.gd/qNYE</a></li>
</ol>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.robinsblog.com/06222009/oodles-of-web-design-resources/" rel="bookmark">Oodles of Web Design Resources</a></li><li><a href="http://www.robinsblog.com/06202009/wordpress-resource-roundup/" rel="bookmark">WordPress Resource Roundup</a></li><li><a href="http://www.robinsblog.com/06192009/beautiful-photos-and-photography-resources/" rel="bookmark">Beautiful Photos and Photography Resources</a></li><li><a href="http://www.robinsblog.com/01112010/twitter-web-design-and-development-updates-for-june-2009-part-1/" rel="bookmark">Twitter Web Design and Development Updates for June 2009 - Part 1</a></li><li><a href="http://www.robinsblog.com/06182009/great-resources-around-the-web-freelance-edition/" rel="bookmark">Great Resources Around The Web: Freelance Edition</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.robinsblog.com/06242009/html-css-coding-resources/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Converting a Photoshop PSD File to an XHTML &amp; CSS Web Site &#8211; Creating Mockups</title>
		<link>http://www.robinsblog.com/04282009/converting-a-photoshop-psd-file-to-and-xhtml-css-web-site/</link>
		<comments>http://www.robinsblog.com/04282009/converting-a-photoshop-psd-file-to-and-xhtml-css-web-site/#comments</comments>
		<pubDate>Tue, 28 Apr 2009 16:45:56 +0000</pubDate>
		<dc:creator>Robin Wood</dc:creator>
				<category><![CDATA[Blogs, Content Management Systems & WordPress]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design and Layout]]></category>
		<category><![CDATA[Graphics (Photoshop, Illustrator, Fireworks, etc.)]]></category>
		<category><![CDATA[Planning & Organization]]></category>
		<category><![CDATA[XHTML & Coding]]></category>

		<guid isPermaLink="false">http://www.robinsblog.com/?p=571</guid>
		<description><![CDATA[I am republishing this article because so many new resources have been added since the original publishing date. If you know of additional resources that should be added please leave a comment below.
Part of the Photoshop class project is to create a Web site mockup.  I have recently found several tutorials that may help you to complete this project. [...]]]></description>
			<content:encoded><![CDATA[<p>I am republishing this article because so many new resources have been added since the original publishing date. If you know of additional resources that should be added please leave a comment below.</p>
<p>Part of the Photoshop class project is to create a Web site mockup.  I have recently found several tutorials that may help you to complete this project. This post is updated as new tutorials are found. I would recommend that you read <a href="http://www.webdesignerdepot.com/2009/08/how-to-effectively-organize-your-photoshop-layers/">How to Effectively Organize your Photoshop Layers</a> before you begin these tutorials so you understand how to properly organize your layers for easy XHTML and CSS development.</p>
<p><a href="http://psdtuts.com/interface-tutorials/create-a-sleek-high-end-web-design-from-scratch/">Create a Sleek, High-End Web Design from Scratch</a> &#8211; put together a high-end Web design using a crisp, thin font, gorgeous background images, and clever use of space and layout. You can easily use the technique to create your own unique designs.</p>
<p><a href="http://nettuts.com/site-builds/build-a-sleek-portfolio-site-from-scratch/">Build a Sleek Portfolio Site from Scratch</a> &#8211; take a PSD file and build it with some nice clean HTML and CSS.</p>
<p><a href="http://nettuts.com/videos/screencasts/how-to-convert-a-psd-to-xhtml/">How to Convert a PSD to XHTML</a> &#8211; a screencast that shows you exactly how to convert a PSD into perfect XHTML/CSS.</p>
<p><a href="http://csshowto.com/layout/psd-to-csshtml-in-easy-steps-part-1/">From PSD to CSS/HTML in Easy Steps &#8211; Part 1</a> &#8211; how to take a PSD file and convert it into a fully CSS based html page. Be sure to check out parts <a href="http://csshowto.com/layout/from-psd-to-csshtml-in-easy-steps-part-2/">2</a>, <a href="http://csshowto.com/layout/from-psd-to-css-xhtml-in-easy-steps-part-3/">3</a>, and <a href="http://csshowto.com/layout/from-psd-to-css-html-in-easy-steps-part-4/">4</a>.</p>
<p><a href="http://www.partdigital.com/tutorials/convert-web/">From PSD to HTML</a> &#8211; how to take the design created for the <a href="http://www.partdigital.com/tutorials/interface/">Fundamentals of Interface Design</a> tutorial and turn that into a usable web interface.</p>
<p><a href="http://nettuts.com/site-builds/from-psd-to-html-building-a-set-of-website-designs-step-by-step/">From PSD to HTML, Building a Set of Website Designs Step by Step</a> &#8211; entire process of getting from Photoshop to completed HTML. Build out a set of 4 PSD mockups of a website that eventually will become a WordPress theme.</p>
<p><a href="http://acomment.net/creating-css-layouts-the-best-tutorials-on-converting-psd-to-xhtml/76">Creating CSS Layouts: The Best Tutorials on Converting PSD to XHTML</a> &#8211; a collection of tutorials to help you to convert PSD files to CSS based layouts.</p>
<p><a href="http://www.photoshop-pack.com/photoshop-packs/pack-004-20-wonderful-photoshop-tutorials-for-designing-professional-navigation-menu/103">20 Wonderful Photoshop Tutorials for Designing Professional Navigation Menu</a> &#8211; a collection of 20 Photoshop Tutorials on creating professional, clean and stylish navigation/menu bars.</p>
<p>For those of you who prefer to use Illustrator, check out <a href="http://vectortuts.com/tutorials/web-design/use-adobe-illustrator-to-create-a-clean-website-layout/">Use Adobe Illustrator to Create a Clean Website Layout</a>.</p>
<p>For Fireworks users check out <a href="http://www.adobe.com/devnet/fireworks/articles/web_standards_layouts_pt1.html">Taking a Fireworks comp to a CSS-based layout in Dreamweaver – Part 1: Initial design</a>, <a href="http://www.adobe.com/devnet/fireworks/articles/web_standards_layouts_pt2.html">Taking a Fireworks comp to a CSS-based layout in Dreamweaver – Part 2: Markup preparation</a>, and <a href="http://www.adobe.com/devnet/fireworks/articles/web_standards_layouts_pt3.html">Taking a Fireworks comp to a CSS-based layout in Dreamweaver – Part 3: Layout and CSS</a></p>
<p><strong>Edit 11/17/08</strong> &#8211; DesignMag has come out with a list of <a href="http://designm.ag/resources/converting-psd-to-html/">Top 10 Tutorials for Converting PSDs to HTML/CSS</a></p>
<p><strong>Edit 11/21/08</strong> &#8211; <a href="http://css-tricks.com/">CSSTricks</a> has numerous videos/podcasts on creating and converting Photoshop Mockups.  You can find all of these tutorials and more on their <a href="http://css-tricks.com/videos/">video page</a>.</p>
<p><strong>Edit 12/4/08</strong> &#8211; New tutorial, <a href="http://psdtuts.com/tutorials/interface-tutorials/photoshop-paper-texture-from-scratch-then-create-a-grungy-web-design-with-it/">Photoshop Paper Texture from Scratch then Create a Grungy Web Design with it!</a>, released at <a href="http://psdtuts.com/">PSDTuts</a>.</p>
<p><strong>Edit 12/15/08</strong> &#8211; <a href="http://nettuts.com/videos/screencasts/converting-a-design-from-psd-to-html/">New tutorial, Converting a Design From PSD to HTML</a> from NetTuts</p>
<p><strong>Edit 2/3/09</strong> &#8211; <a href="http://sixrevisions.com/web_design/40-useful-photoshop-web-layout-tutorials/">40 Useful Photoshop Web Layout Tutorials</a> from Six Revisions</p>
<p><strong>Edit 3/17/09</strong> &#8211; <a href="http://www.area1.info/2009/03/12/60-best-layout-design-tutorials/">60 Layout design tutorials</a> &#8211; 60 layout design tutorials, from which you can learn how to make your own website design.</p>
<p><strong>Edit 3/17/09</strong> &#8211; <a href="http://www.1stwebdesigner.com/tutorials/43-psd-to-xhtml-css-tutorials-creating-web-layouts-and-navigation/">43 PSD to XHTML, CSS Tutorials Creating Web Layouts And Navigation</a> &#8211; More resources for create Web mockups in Photoshop and converting them to XHTML and CSS based sites.</p>
<p><strong>Edit 3/17/09</strong> &#8211; <a href="http://psd2cssonline.com/">psd2css Online</a> &#8211; An online service that allows you to upload your Photoshop PSD file and convert it automatically to an XHTML and CSS based layout. Be sure to read the <a href="http://psd2cssonline.com/node/128">documentation</a> and <a href="http://psd2cssonline.com/node/3">tutorials</a> for this service before you begin you begin your project. There is also a <a href="http://psd2cssonline.com/forum">forum for support</a>.</p>
<p><strong>Edit 3/24/09</strong> &#8211; <a href="http://www.2expertsdesign.com/2009/03/13/150-adobe-photoshp-web-design-layout-tutorials/">150 Useful Adobe Photoshp Web Design Layout Tutorials and Techniques</a></p>
<p><strong>Edit 3/25/09</strong> &#8211; <a href="http://www.webdesignerhelp.co.uk/index.php/2009/03/converting-a-psd-to-xhtmlcss/">Converting a PSD to XHTML/CSS</a></p>
<p><strong>Edit 3/31/09</strong> &#8211; <a href="http://naldzgraphics.net/tutorials/44-must-learn-web-design-layout-tutorials-in-photoshop/">44 Must Learn Web Design Layout Tutorials in Photoshop</a> &#8211; Here is a collection of  44 Web Design Layout Tutorials in Photoshop to teach you create your own layout for your website.</p>
<p><strong>Edit 4/1/09</strong> &#8211; 80+ <a href="http://www.tripwiremagazine.com/Tutorials/Photoshop-Tutorials/80-photoshop-tutorials-practical-web-interface-design.html">Photoshop Tutorials: Practical Web Interface Design</a></p>
<p><strong>Edit 4/2/09</strong> &#8211; <a href="http://guidesigner.com/25-photoshop-tutorials-for-creating-that-perfect-web-page-design/">25 Photoshop Tutorials for Creating that Perfect Web Page Design</a> &#8211; Includes some WordPress Mockup tutorials</p>
<p><strong>Edit 4/2/09</strong> &#8211; <a href="http://www.photoshoplady.com/the-100-most-popular-photoshop-tutorials-2008/">The 100 Most Popular Photoshop Tutorials 2008</a></p>
<p><strong>Edit 4/2/09</strong> &#8211; <a href="http://www.2expertsdesign.com/2009/03/13/150-adobe-photoshp-web-design-layout-tutorials/">150 Useful Adobe Photoshp Web Design Layout Tutorials and Techniques</a></p>
<p><strong>Edit 4/2/09</strong> &#8211; <a href="http://www.problogdesign.com/resources/35-awesome-user-interface-design-tutorials/">35 Awesome User Interface Design Tutorials</a></p>
<p><strong>Edit 4/28/09</strong> &#8211; <a href="http://designm.ag/resources/layout-toolbox/">Website Layout Toolbox</a></p>
<p><strong>Edit 4/28/09</strong> &#8211; <a href="http://sixrevisions.com/tutorials/photoshop-tutorials/how-to-create-a-sleek-and-textured-web-layout-in-photoshop/">How to Create a Sleek and Textured Web Layout in Photoshop</a></p>
<p><strong>Edit 4/29/09</strong> &#8211; <a href="http://dzineblog.com/2009/04/20-best-tutorials-to-convert-psd-to-htmlcss.html">20+ Best Tutorials to Convert Psd to Html/CSS<br />
</a></p>
<p><strong>Edit 4/30/09</strong> &#8211; <a href="http://www.webdesigndev.com/photoshop/make-a-professional-business-website-template-using-photoshop">Make a Professional Business Website Template Using Photoshop</a></p>
<p><strong>Edit 4/30/09</strong> &#8211; <a href="http://desizntech.info/2009/04/how-to-create-a-simple-dark-yet-stylish-portfolio-design/">How to Create a Simple, Dark Yet Stylish Portfolio Design</a></p>
<p><strong>Edit 4/30/09</strong> &#8211; <a href="http://www.minervity.com/?p=3198">52 Professional Website User Interface Photoshop Tutorials</a></p>
<p><strong>Edit 5/4/09</strong> &#8211; <a href="http://www.blog.spoongraphics.co.uk/tutorials/how-to-build-your-own-single-page-portfolio-website">How To Build Your Own Single Page Portfolio Website</a></p>
<p><strong>Edit 5/4/09</strong> &#8211; <a href="http://line25.com/tutorials/create-a-clean-modern-website-design-in-photoshop">Create a Clean Modern Website Design in Photoshop</a></p>
<p><strong>Edit 5/5/09</strong> &#8211;  <a href="http://www.webdesigndev.com/roundups/top-30-photoshop-web-design-layout-tutorials">Top 30 Photoshop Web Design Layout Tutorials</a></p>
<p><strong>Edit 5/11/09</strong> &#8211;  <a href="http://line25.com/tutorials/how-to-convert-a-photoshop-mockup-to-xhtml-css">How to Convert a Photoshop Mockup to XHTML/CSS</a> &#8211; A walkthrough of coding up a graphical website layout into valid, standards compliant XHTML and CSS. Starting with the initial process of exporting the individual images from the Photoshop document through to building the complete page.</p>
<p><strong>Edit 5/11/09</strong> &#8211;  <a href="http://visionwidget.com/inspiration/web/61-16-psd-to-html-css-tutorials.html">16 PSD To HTML/CSS Tutorials For Creating Website Layouts</a>.</p>
<p><strong>Edit 5/12/09</strong> &#8211;  <a href="http://sixrevisions.com/tutorials/photoshop-tutorials/how-to-create-a-worn-paper-web-layout-using-photoshop/">How to Create a “Worn Paper” Web Layout Using Photoshop</a></p>
<p><strong>Edit 5/12/09</strong> &#8211;  <a href="http://www.grafpedia.com/tutorials/create-sleek-web-20-hosting-layout">Create a sleek web 2.0 hosting layout</a></p>
<p><strong>Edit 5/13/09</strong> &#8211; <a href="http://net.tutsplus.com/tutorials/html-css-techniques/design-a-beautiful-website-from-scratch/">Design a Beautiful Website From Scratch</a> &amp;  <a href="http://net.tutsplus.com/articles/news/coding-a-beautiful-website-from-scratch-plus-tutorial/">Coding a Beautiful Website From Scratch: Plus Tutorial</a></p>
<p><strong>Edit 5/15/09</strong> &#8211; <a href="http://www.antsmagazine.com/ultimate-round-ups-of-photoshop-interface-design-tutorials/">Ultimate Round Ups Of Photoshop Interface Design Tutorials</a></p>
<p><strong>Edit 5/16/09</strong> &#8211; <a href="http://www.dzinepress.com/2009/05/2-designs-from-psd-to-html/#more-1443">2 Designs From PSD to HTML</a></p>
<p><strong>Edit 5/16/09</strong> &#8211; <a href="http://www.grafpedia.com/tutorials/create-dark-portfolio-pixel-layout">Create a dark portfolio pixel layout</a></p>
<p><strong>Edit 5/17/09</strong> &#8211; <a href="http://psd.tutsplus.com/tutorials/interface-tutorials/how-to-elevate-your-website-design-process-and-results/">How to Elevate Your Website Design Process and Results</a></p>
<p><strong>Edit 5/20/09</strong> &#8211; <a href="http://sixrevisions.com/tutorials/photoshop-tutorials/how-to-create-a-clean-web-20-style-web-design-in-photoshop/">How to Create a Clean Web 2.0 Style Web Design in Photoshop</a></p>
<p><strong>Edit 5/21/09</strong> &#8211; <a href="http://www.queness.com/post/155/44-must-learn-web-design-layout-tutorials-in-photoshop">44 Must Learn Web Design Layout Tutorials in Photoshop</a></p>
<p><strong>Edit 5/26/09</strong> &#8211; <a href="http://www.tutoriallounge.com/2009/05/5-page-website-design-in-photoshop-with-source/">5 Page Website Design in Photoshop with Source</a></p>
<p><strong>Edit 5/26/09</strong> &#8211; <a href="http://desizntech.info/2009/05/how-to-create-a-stunning-grunge-portfolio/">How to Create a Stunning Grunge Portfolio</a></p>
<p><strong>Edit 5/26/09</strong> &#8211; <a href="http://psdvibe.com/2009/05/19/design-studio-layout-2/">How To Design Studio Header</a></p>
<p><strong>Edit 5/26/09</strong> &#8211; <a href="http://psdvibe.com/2009/05/19/design-studio-layout-2/">Design Studio Layout #<a href="http://search.twitter.com/search?q=%232" rel="nofollow" target="_blank" title="Search Twitter for &quot;2&quot;">2</a></a></p>
<p><strong>Edit 5/26/09</strong> &#8211; <a href="http://psdvibe.com/2009/04/28/clean-photo-gallery-website-layout/">Clean Photo Gallery Website Layout</a></p>
<p><strong>Edit 5/26/09</strong> &#8211; <a href="http://psdvibe.com/2009/04/20/coding-design-lab-tv-styled-layout/">Coding: Design Lab TV Styled Layout</a></p>
<p><strong>Edit 5/26/09</strong> &#8211; <a href="http://psdvibe.com/2009/04/12/watercolored-design-studio-blog-layout/">Watercolored Design Studio Blog Layout</a></p>
<p><strong>Edit 5/26/09</strong> &#8211; <a href="http://psdvibe.com/2009/04/09/coding-corporate-wordpress-style-layout/">Coding: Corporate WordPress Style Layout</a></p>
<p><strong>Edit 5/26/09</strong> &#8211; <a href="http://psdvibe.com/2009/03/22/myblues-wordpress-style-layout/">MyBlues WordPress Style Layout</a></p>
<p><strong>Edit 5/26/09</strong> &#8211; <a href="http://psdthemes.com/tutorial-content-927-elune-tutorial.html">Awesome Tutorial Portfolio Design</a></p>
<p><strong>Edit 5/26/09</strong> &#8211; <a href="http://www.csstea.com/css-gallery-news-and-resources/824-33-excellent-web-layout-photoshop-tutorials.html">33 Excellent Web Layout Photoshop Tutorials</a></p>
<p><strong>Edit 5/26/09</strong> &#8211; <a href="http://creativenerds.co.uk/tutorials/30-tutorials-on-converting-a-psd-to-xhtml-and-css/">30 Tutorials On Converting A PSD To XHTML And CSS</a></p>
<p><strong>Edit 5/27/09</strong> &#8211; <a href="http://theroxor.com/2009/05/21/18-photoshop-header-tutorials/">18 Photoshop Header Tutorials</a></p>
<p><strong>Edit 5/28/09</strong> &#8211; <a href="http://psd.tutsplus.com/articles/web/45-step-by-step-tutorials-on-web-design-with-photoshop/">45 Step-by-Step Tutorials on Web Design with Photoshop</a></p>
<p><strong>Edit 5/29/09</strong> &#8211; <a href="http://net.tutsplus.com/tutorials/design-tutorials/design-and-code-a-slick-website-from-scratch-%E2%80%93-part-i/">Design and Code a Slick Website from Scratch – Part I</a> and <a href="http://net.tutsplus.com/tutorials/html-css-techniques/design-and-code-a-slick-website-from-scratch-%E2%80%93-part-ii/">Design and Code a Slick Website From Scratch – Part II</a></p>
<p><strong>Edit 5/29/09</strong> &#8211; <a href="http://sixrevisions.com/tutorials/web-development-tutorials/coding-a-clean-web-20-style-web-design-from-photoshop/">Coding a Clean Web 2.0 Style Web Design from Photoshop</a> &#8211; you may want to complete <a href="http://sixrevisions.com/tutorials/photoshop-tutorials/how-to-create-a-clean-web-20-style-web-design-in-photoshop/">How to Create a Clean Web 2.0 Style Web Design in Photoshop</a> before beginning this tutorial.</p>
<p><strong>Edit 5/29/09</strong> &#8211; <a href="http://www.grafpedia.com/tutorials/2073">Create an awesome portfolio layout</a></p>
<p><strong>Edit 5/30/09</strong> &#8211; <a href="http://www.grafpedia.com/tutorials/design-and-code-a-layout-withouth-using-slice-tool">Design and code a layout without using slice tool</a></p>
<p><strong>Edit 6/1/09</strong> &#8211; <a href="http://psdvibe.com/2009/06/01/create-a-modern-blog-layout/">Create a modern blog layout</a></p>
<p><strong>Edit 6/2/09</strong> &#8211; <a href="http://sixrevisions.com/tutorials/photoshop-tutorials/create-a-dark-and-sleek-web-layout-using-photoshop/">Create a Dark and Sleek Web Layout Using Photoshop</a></p>
<p><strong>Edit 6/3/09</strong> &#8211; <a href="http://mogdesign.eu/blog/24-top-sources-for-photoshop-website-layout-tutorials/">24 Top Sources for Photoshop Website Layout Tutorials</a></p>
<p><strong>Edit 6/4/09</strong> &#8211; <a href="http://www.smashingmagazine.com/2009/06/04/6-free-psdxhtml-templates/">6 Free PSD/(X)HTML-Templates @ Smashing Magazine</a> &#8211; Very nice!</p>
<p><strong>Edit 6/4/09</strong> &#8211; <a href="http://www.pvmgarage.com/en/2009/06/how-to-create-a-large-header-with-a-simple-western-scene/">How to Create a Large Header with a Simple Western Scene</a></p>
<p><strong>Edit 6/5/09</strong> &#8211; <a href="http://www.tripwiremagazine.com/Tutorials/Photoshop-Tutorials/tutorials-on-photoshop-website-design-and-psd-to-html.html">40+ Tutorials on Photoshop Website Design and PSD to HTML</a></p>
<p><strong>Edit 6/5/09</strong> &#8211; <a href="http://designm.ag/tutorials/non-profit-photoshop-layout/">Design a Layout for a Non-Profit Organization in Photoshop</a></p>
<p><strong>Edit 6/6/09</strong> &#8211; <a href="http://www.ourtuts.com/design-a-clear-website-layout-in-photoshop/">Design a clear website layout in Photoshop</a></p>
<p><strong>Edit 6/6/09</strong> &#8211; <a href="http://design-notes.info/tutorial/photoshop-resources/layout-design/quality-web-layout-tutorials-roundup/">Quality Web Layout Tutorials Roundup</a></p>
<p><strong>Edit 6/6/09</strong> &#8211; <a href="http://randaclay.com/how-to/photoshop-to-wordpress-a-basic-guide/">Photoshop to WordPress: A Basic Guide</a></p>
<p><strong>Edit 6/7/09</strong> &#8211; <a href="http://www.catswhocode.com/blog/10-excellent-website-layout-tutorials-courtesy-of-psdvibecom">10 excellent website layout tutorials courtesy of psdvibe.com</a></p>
<p><strong>Edit 6/9/09</strong> &#8211; <a href="http://www.noupe.com/photoshop/photoshop-brushes-and-how-to.html">18 Absolutely Stylish Designs Using Photoshop Brushes and How to’s</a></p>
<p><strong>Edit 6/9/09</strong> &#8211; <a href="http://www.smashingmagazine.com/2009/06/04/6-free-psdxhtml-templates/">6 Free PSD/(X)HTML-Templates</a></p>
<p><strong>Edit 6/9/09</strong> &#8211; <a href="http://psdvibe.com/2009/06/08/create-a-web-20-layout-in-photoshop/">Create a web 2.0 layout in Photoshop</a></p>
<p><strong>Edit 6/9/09</strong> &#8211; <a href="http://www.grafpedia.com/tutorials/design-creative-unusual-layout">Design a creative unusual layout</a></p>
<p><strong>Edit 6/9/09</strong> &#8211; <a href="http://www.thedesigncubicle.com/2009/05/25-beautiful-one-page-portfolio-websites-of-designers-on-twitter/">25 Beautiful One Page Portfolio Websites of Designers on Twitter</a> &#8211; This is really more for inspiration than a tutorial.</p>
<p><strong>Edit 6/10/09</strong> &#8211; <a href="http://dzineblog.com/2009/06/30-best-photoshop-web-layout-design-tutorials.html">30 Best Photoshop Web Layout Design Tutorials to Design Decent Websites</a></p>
<p><strong>Edit 6/10/09</strong> &#8211; <a href="http://www.reencoded.com/2009/06/10/45-awesome-photoshop-website-templatelayout-tutorials/">45 awesome Photoshop website template/layout tutorials</a></p>
<p><strong>Edit 6/10/09</strong> &#8211; <a href="http://sixrevisions.com/tutorials/web-development-tutorials/how-to-code-a-dark-and-sleek-web-design/">How to Create a Dark and Sleek Web Design from Photoshop</a></p>
<p><strong>Edit 6/11/09</strong> &#8211; <a href="http://www.photoshopstar.com/web-design/original-clean-style-for-your-website/">Original Clean Style for Your Website</a></p>
<p><strong>Edit 6/11/09</strong> &#8211; <a href="http://www.grafpedia.com/tutorials/design-a-clean-blog-theme-in-photoshop">Design a creative clean blog theme in Photoshop</a></p>
<p><strong>Edit 6/15/09</strong> &#8211; <a href="http://webdesignledger.com/tutorials/16-best-photoshop-tutorials-for-creating-web-designs">16 Best Photoshop Tutorials for Creating Web Designs</a></p>
<p><strong>Edit 6/15/09</strong> &#8211; <a href="http://www.webdesigndev.com/photoshop/top-30-photoshop-button-and-interface-tutorials">Top 30 Photoshop Button And Interface Tutorials</a></p>
<p><strong>Edit 6/15/09</strong> &#8211; <a href="http://www.grafpedia.com/tutorials/design-a-two-color-website-layout">Design a two color website layout in Photoshop</a></p>
<p><strong>Edit 6/15/09</strong> &#8211; <a href="http://sixrevisions.com/tutorials/photoshop-tutorials/how-to-create-a-grunge-web-design-using-photoshop/">How to Create a Grunge Web Design Using Photoshop</a> and <a href="http://sixrevisions.com/tutorials/web-development-tutorials/how-to-code-a-grunge-web-design-from-scratch/">How to Code a Grunge Web Design from Scratch</a></p>
<p><strong>Edit 6/15/09</strong> &#8211; <a href="http://www.dzinepress.com/2009/06/website-design-for-shopping-cart-with-source-psd/">Website Design Tutorial for Shopping Cart with Source PSD</a></p>
<p><strong>Edit 6/16/09</strong> &#8211; <a href="http://www.tutorial9.net/photoshop/create-a-clean-and-colorful-web-layout-in-photoshop/">Create a Clean and Colorful Web Layout in Photoshop</a></p>
<p><strong>Edit 6/16/09</strong> &#8211; <a href="http://www.reencoded.com/2009/06/16/20-great-tutorials-on-psd-to-xhtml-conversion/">20 great tutorials on PSD to XHTML Conversion</a></p>
<p><strong>Edit 6/19/09</strong> &#8211; <a href="http://hiddenpixels.com/tutorials/psd-to-html-slicing-tutorials/">PSD to HTML Slicing Tutorials</a></p>
<p><strong>Edit 6/21/09</strong> &#8211; <a href="http://www.pvmgarage.com/en/2009/06/create-a-nice-web-portfolio-design-with-a-watercolored-background-in-photoshop/">Create a Nice Web Portfolio Design with a Watercolored Background in Photoshop</a></p>
<p><strong>Edit 6/30/09</strong> &#8211; <a href="http://www.pvmgarage.com/en/2009/06/watercolored-portfolio-coded-free-css-template-with-psd-to-html-tutorial/#content">WaterColored Portfolio Coded, Free CSS Template With PSD to HTML Tutorial</a></p>
<p><strong>Edit 6/21/09</strong> &#8211; <a href="http://www.grafpedia.com/tutorials/design-premium-wordpress-blog-photoshop">Design a premium WordPress blog with Photoshop</a></p>
<p><strong>Edit 6/22/09</strong> &#8211; <a href="http://psdvibe.com/2009/06/22/creating-a-tech-blog-layout-in-adobe-photoshop/">Creating a tech blog layout in Adobe Photoshop</a></p>
<p><strong>Edit 6/22/09</strong> &#8211; <a href="http://www.problogdesign.com/design/26-complete-wordpress-blog-design-tutorials/">26 Complete WordPress Blog Design Tutorials</a></p>
<p><strong>Edit 6/23/09</strong> &#8211; <a href="http://www.psdvault.com/resources/7-highly-practical-photoshop-site-mockups-1-amazingly-detailed-tutorial-to-get-them-into-working-pages/">7 Highly Practical Photoshop Site Mockups + 1 Amazingly Detailed Tutorial About Converting Them into Working Web Pages</a></p>
<p><strong>Edit 6/24/09</strong> &#8211; <a href="http://sixrevisions.com/tutorials/photoshop-tutorials/how-to-create-an-illustrative-web-design-in-photoshop/">How to Create an Illustrative Web Design in Photoshop</a> and <a href="http://sixrevisions.com/tutorials/web-development-tutorials/coding-a-clean-illustrative-web-design-from-scratch/">Coding a Clean &#038; Illustrative Web Design from Scratch</a></p>
<p><strong>Edit 6/28/09</strong> &#8211; <a href="http://www.grafpedia.com/tutorials/photoshop-tutorial-to-design-a-clean-business-layout">Photoshop tutorial to design a clean business layout</a></p>
<p><strong>Edit 7/01/09</strong> &#8211; <a href="http://hiddenpixels.com/tutorials/wordpress-design-and-theme-tutorials/">Wordpress Design and Theme Tutorials</a></p>
<p><strong>Edit 7/02/09</strong> &#8211; <a href="http://www.grafpedia.com/tutorials/design-wordpress-theme-photoshop">How to Design a WordPress Theme in Photoshop</a></p>
<p><strong>Edit 7/05/09</strong> &#8211; <a href="http://www.grafpedia.com/tutorials/creating-amazing-layout-textures">Creating an Amazing Layout Using Textures</a></p>
<p><strong>Edit 7/07/09</strong> &#8211; <a href="http://hv-designs.co.uk/2009/07/02/wordpress-layout-5/">Wordpress Layout #<a href="http://search.twitter.com/search?q=%235" rel="nofollow" target="_blank" title="Search Twitter for &quot;5&quot;">5</a></a></p>
<p><strong>Edit 7/07/09</strong> &#8211; <a href="http://hv-designs.co.uk/2009/07/06/web-design-layout-10/">Web Design Layout #<a href="http://search.twitter.com/search?q=%2310" rel="nofollow" target="_blank" title="Search Twitter for &quot;10&quot;">10</a></a></p>
<p><strong>Edit 7/08/09</strong> &#8211; <a href="http://psdvibe.com/2009/07/07/create-a-webdesign-company-layout-in-photoshop/">Create a webdesign company layout in Photoshop</a></p>
<p><strong>Edit 7/08/09</strong> &#8211; <a href="http://creativenerds.co.uk/tutorials/70-tutorials-using-photoshop-to-design-a-website/">70 Tutorials Using Photoshop To Design A Website</a></p>
<p><strong>Edit 7/08/09</strong> &#8211; <a href="http://www.dzinepress.com/2009/07/lets-design-rocknrolla-website-design-tutorials/">Let’s Design Rock’n&#8217;Rolla Website Design Tutorials</a></p>
<p><strong>Edit 7/09/09</strong> &#8211; <a href="http://www.hongkiat.com/blog/web-design-tutorials-the-ultimate-roundup/">Web Design Tutorials: The Ultimate Roundup</a> </p>
<p><strong>Edit 7/09/09</strong> &#8211; <a href="http://abduzeedo.com/web-site-design-tutorial-wellknownas-case">Web Site Design Tutorial: Wellknown.as Case</a></p>
<p><strong>Edit 7/10/09</strong> &#8211; <a href="http://sixrevisions.com/tutorials/web-development-tutorials/coding-a-clean-illustrative-web-design-from-scratch/">Coding a Clean &#038; Illustrative Web Design from Scratch</a></p>
<p><strong>Edit 7/10/09</strong> &#8211; <a href="http://www.grafpedia.com/tutorials/create-stylish-business-layout-photoshop">Create a Stylish Business Layout in Photoshop</a></p>
<p><strong>Edit 7/12/09</strong> &#8211; <a href="http://www.pvmgarage.com/en/2009/07/sportnewspvm-coded-how-to-plan-a-web-layout-for-a-wordpress-theme/">SportNewsPvm Coded, How To Plan A Web Layout For A WordPress Theme</a></p>
<p><strong>Edit 7/13/09</strong> &#8211; <a href="http://www.photoshoplady.com/top-20-user-interface-design-in-photoshop/">Top 20 User Interface Design in Photoshop</a></p>
<p><strong>Edit 7/13/09</strong> &#8211; <a href="http://carsonified.com/blog/design/how-to-design-a-portfolio-site/">How to Design a Portfolio Site</a></p>
<p><strong>Edit 7/13/09</strong> &#8211; <a href="http://www.webdesignbooth.com/30-easy-to-follow-photoshop-layout-design-tutorials/">30+ Easy To Follow Photoshop Layout Design Tutorials</a></p>
<p><strong>Edit 7/13/09</strong> &#8211; <a href="http://hv-designs.co.uk/2009/07/13/web-design-layout-10-sitebuild/">Web Design Layout #<a href="http://search.twitter.com/search?q=%2310" rel="nofollow" target="_blank" title="Search Twitter for &quot;10&quot;">10</a>: Sitebuild</a></p>
<p><strong>Edit 7/14/09</strong> &#8211; <a href="http://www.grafpedia.com/tutorials/create-communication-layout-photoshop">Create a communication layout in Photoshop</a></p>
<p><strong>Edit 7/14/09</strong> &#8211; <a href="http://webdeveloperplus.com/design/23-inspirational-photoshop-tutorials-for-creating-impressive-web-layouts/">23 Inspirational Photoshop Tutorials For Creating Impressive Web Layouts</a></p>
<p><strong>Edit 7/15/09</strong> &#8211; <a href="http://wpcrowd.com/tutorials/8-tutorials-about-how-to-create-a-wordpress-theme/">8 Tutorials about How to create a WordPress theme</a> </p>
<p><strong>Edit 7/15/09</strong> &#8211; <a href="http://www.tripwiremagazine.com/design/tutorials/essential-web-designers-guide-on-psd-to-htmlcss.html">Essential Web Designers Guide on PSD to HTML/CSS</a> &#8211; Scroll down the page to see the tutorials</p>
<p><strong>Edit 7/15/09</strong> &#8211; <a href="http://sixrevisions.com/tutorials/photoshop-tutorials/how-to-design-a-space-futuristic-gallery-layout-in-photoshop/">How to Design a Space Futuristic Gallery Layout in Photoshop</a></p>
<p><strong>Edit 7/19/09</strong> &#8211; <a href="http://www.grafpedia.com/tutorials/design-travel-psd-layout-adobe-photoshop">Design a travel PSD layout with Adobe Photoshop</a></p>
<p><strong>Edit 7/19/09</strong> &#8211; <a href="http://max.designwalker.com/webdesign/30-web-design-tutorials-from-scratch-in-photoshop/">30 Web Design Tutorials from Scratch in Photoshop</a></p>
<p><strong>Edit 7/20/09</strong> &#8211; <a href="http://sixrevisions.com/tutorials/photoshop-tutorials/how-to-make-a-green-sleek-web-layout-in-photoshop/">How to Make a Green &#038; Sleek Web Layout in Photoshop</a></p>
<p><strong>Edit 7/21/09</strong> &#8211; <a href="http://hv-designs.co.uk/2009/07/21/software-layout-4/">Software Layout #<a href="http://search.twitter.com/search?q=%234" rel="nofollow" target="_blank" title="Search Twitter for &quot;4&quot;">4</a></a></p>
<p><strong>Edit 7/24/09</strong> &#8211; <a href="http://psdvibe.com/2009/07/21/10-awesome-psd-to-xhtml-tutorials/">10 awesome PSD to XHTML tutorials</a></p>
<p><strong>Edit 7/24/09</strong> &#8211; <a href="http://www.grafpedia.com/tutorials/design-a-creative-wordpress-theme">Design a creative wordpress theme</a></p>
<p><strong>Edit 7/26/09</strong> &#8211; <a href="http://www.tripwiremagazine.com/design/css-techniques/160-mega-web-design-tutorial-roundup.html">160+ Mega Web Design Tutorial Roundup</a></p>
<p><strong>Edit 8/04/09</strong> &#8211; <a href="http://www.psdburn.com/2009/07/create-a-portfolio-layout-with-wooden-background-in-photoshop/">Create a Portfolio Layout with Wooden Background in Photoshop</a></p>
<p><strong>Edit 8/04/09</strong> &#8211; <a href="http://www.webdesigndev.com/photoshop/create-a-forum-layout-using-photoshop">Create A Forum Layout Using Photoshop</a></p>
<p><strong>Edit 8/08/09</strong> &#8211; <a href="http://naldzgraphics.net/tutorials/33-newly-fresh-web-design-layout-tutorials/">33 Newly Fresh Web Design Layout Tutorials</a></p>
<p><strong>Edit 8/08/09</strong> &#8211; <a href="http://www.psdburn.com/2009/08/create-a-nature-inspired-wordpress-layout/">Create a Nature Inspired WordPress Layout</a></p>
<p><strong>Edit 8/09/09</strong> &#8211; <a href="http://www.grafpedia.com/tutorials/design-web-20-wordpress-themes">Design web 2.0 wordpress themes</a></p>
<p><strong>Edit 8/09/09</strong> &#8211; <a href="http://wpcrowd.com/portfolio-themes/portfolio-themes-in-wordpress-examples-and-tutorials/">Portfolio Themes in WordPress, Examples and Tutorials</a></p>
<p><strong>Edit 8/10/09</strong> &#8211; <a href="http://www.webdesigndev.com/photoshop/how-to-create-a-green-grunge-web-layout">How To Create a Green Grunge Web Layout</a></p>
<p><strong>Edit 8/10/09</strong> &#8211; <a href="http://www.1stwebdesigner.com/tutorials/50-really-high-quality-photoshop-navigation-menu-tutorials/">50 Really High Quality Photoshop Navigation Menu Tutorials</a></p>
<p><strong>Edit 8/10/09</strong> &#8211; <a href="http://line25.com/tutorials/25-detailed-tutorials-for-coding-up-your-web-designs">25 Detailed Tutorials for Coding Up Your Web Designs</a></p>
<p><strong>Edit 8/10/09</strong> &#8211; <a href="http://design-notes.info/tutorial/photoshop-resources/layout-design/11-excellent-clean-corporate-style-layout-tutorials/">11 Excellent Clean Corporate Style Layout Tutorials</a></p>
<p><strong>Edit 8/10/09</strong> &#8211; <a href="http://sixrevisions.com/tutorials/photoshop-tutorials/how-to-create-a-clean-blog-design-with-photoshop/">How to Create a Clean Blog Design with Photoshop</a></p>
<p><strong>Edit 8/16/09</strong> &#8211; <a href="http://www.1stwebdesigner.com/tutorials/90-new-and-high-quality-photoshop-web-layout-tutorials/">90 New And High Quality Photoshop Web Layout Tutorials</a></p>
<p><strong>Edit 8/16/09</strong> &#8211; <a href="http://www.webdesigndev.com/photoshop/create-an-orange-web-layout-using-photoshop">Create An Orange Web Layout Using Photoshop</a></p>
<p><strong>Edit 8/17/09</strong> &#8211; <a href="http://www.webdesignerdepot.com/2009/08/how-to-effectively-organize-your-photoshop-layers/">How to Effectively Organize your Photoshop Layers</a></p>
<p><strong>Edit 8/19/09</strong> &#8211; <a href="http://www.grafpedia.com/tutorials/create-amazing-consulting-layout">Create an amazing consulting layout</a></p>
<p><strong>Edit 8/19/09</strong> &#8211;  <a href="http://www.grafpedia.com/tutorials/design-corporate-wordpress-layout">Design a corporate WordPress layout</a></p>
<p><strong>Edit 8/20/09</strong> &#8211;  <a href="http://www.1stwebdesigner.com/tutorials/22-photoshop-web-design-interface-tutorial-sites/">22 Photoshop Web Design Interface Tutorial Sites</a></p>
<p><strong>Edit 8/23/09</strong> &#8211;  <a href="http://hv-designs.co.uk/2009/08/22/business-layout-6/">Business Layout #<a href="http://search.twitter.com/search?q=%236" rel="nofollow" target="_blank" title="Search Twitter for &quot;6&quot;">6</a></a></p>
<p><strong>Edit 8/26/09</strong> &#8211; <a href="http://sixrevisions.com/web-development/how-to-design-the-web-in-a-high-def-world/">How to Design the Web in a High-Def World</a></p>
<p><strong>Edit 8/26/09</strong> &#8211; <a href="http://www.grafpedia.com/tutorials/design-creative-cosmetics-layout-photoshop">Design a creative cosmetics layout with Photoshop</a></p>
<p><strong>Edit 8/30/09</strong> &#8211; <a href="http://www.grafpedia.com/tutorials/design-impressive-web-hosting-layout">Design an impressive web hosting layout</a></p>
<p><strong>Edit 8/30/09</strong> &#8211; <a href="http://www.area1.info/tutorials/over-500-layout-design-tutorials/">Over 500 Layout Design Tutorials</a></p>
<p><strong>Edit 9/1/09</strong> &#8211; <a href="http://net.tutsplus.com/tutorials/html-css-techniques/how-to-design-and-code-a-flexible-website/">How to Design and Code a Flexible Website</a></p>
<p><strong>Edit 9/1/09</strong> &#8211; <a href="http://www.dezinerfolio.com/2009/08/28/yodaa-the-design-process">YoDaa &#8211; The Design Process</a></p>
<p><strong>Edit 9/1/09</strong> &#8211; <a href="http://www.grafpedia.com/tutorials/design-a-breath-taking-portfolio-layout">Design a breath-taking portfolio layout</a></p>
<p><strong>Edit 9/1/09</strong> &#8211; <a href="http://www.webappers.com/2009/09/01/design-a-transparent-website-layout-in-photoshop/">Design a Transparent Website Layout in Photoshop</a></p>
<p><strong>Edit 9/8/09</strong> &#8211; <a href="http://sixrevisions.com/tutorials/photoshop-tutorials/how-to-create-a-dark-and-sleek-blog-design-in-photoshop/">How to Create a Dark and Sleek Blog Design in Photoshop</a></p>
<p><strong>Edit 9/8/09</strong> &#8211; <a href="http://sixrevisions.com/photoshop/create-a-web-layout-with-3d-elements-using-photoshop/">Create a Web Layout with 3D Elements using Photoshop</a></p>
<p><strong>Edit 9/15/09</strong> &#8211; <a href="http://www.pvmgarage.com/en/2009/09/design-a-clean-and-fresh-company-website-in-photoshop/">Design A Clean And Fresh Company Website In Photoshop</a></p>
<p><strong>Edit 9/15/09</strong> &#8211; <a href="http://sixrevisions.com/photoshop/how-to-make-a-light-and-sleek-web-layout-in-photoshop/">How to Make a Light and Sleek Web Layout in Photoshop</a></p>
<p><strong>Edit 9/15/09</strong> &#8211; <a href="http://psdfan.com/tutorials/designing/making-the-clean-grunge-blog-design/">Making the ‘Clean Grunge’ Blog Design</a></p>
<p><strong>Edit 9/15/09</strong> &#8211; <a href="http://www.grafpedia.com/tutorials/create-web-20-business-layout">Create a web 2.0 business layout</a></p>
<p><strong>Edit 9/15/09</strong> &#8211; <a href="http://psdtemplate.com/psd-tutorials/create-a-business-psd-layout-in-less-than-10-minutes.html">Create a Business PSD Layout in less than 10 minutes*</a></p>
<p><strong>Edit 9/15/09</strong> &#8211; <a href="http://www.grafpedia.com/tutorials/wordpress-portfolio-layout">Wordpress portfolio layout</a></p>
<p><strong>Edit 9/16/09</strong> &#8211; <a href="http://designreviver.com/tutorials/photoshop-101-working-with-slices/">Photoshop 101 – Working with Slices</a></p>
<p><strong>Edit 9/16/09</strong> &#8211; <a href="http://www.webdesigndev.com/photoshop/create-an-orange-web-layout-using-photoshop">Create An Orange Web Layout Using Photoshop</a></p>
<p><strong>Edit 9/16/09</strong> &#8211; <a href="http://www.webdesigndev.com/photoshop/how-to-create-a-green-grunge-web-layout">How To Create a Green Grunge Web Layout</a></p>
<p><strong>Edit 9/16/09</strong> &#8211; <a href="http://net.tutsplus.com/tutorials/html-css-techniques/design-a-beautiful-website-from-scratch/">Design a Beautiful Website From Scratch</a></p>
<p><strong>Edit 9/16/09</strong> &#8211; <a href="http://vector.tutsplus.com/tutorials/web-design/learn-a-professional-workflow-for-illustrating-a-comic-style-header-image/">Learn a Professional Workflow for Illustrating a Comic-Style Header Image</a></p>
<p><strong>Edit 9/16/09</strong> &#8211; <a href="http://psdfan.com/tutorials/designing/create-a-professional-portfolio-design-in-17-easy-steps/">Create a Professional Portfolio Design in 17 Easy Steps</a></p>
<p><strong>Edit 9/16/09</strong> &#8211; <a href="http://www.grafpedia.com/tutorials/design-wordpress-theme-photoshop">How to Design a WordPress Theme in Photoshop</a></p>
<p><strong>Edit 9/16/09</strong> &#8211; <a href="http://www.grafpedia.com/tutorials/create-grunge-personal-portfolio">Create a grunge personal portfolio layout</a></p>
<p><strong>Edit 9/16/09</strong> &#8211; <a href="http://www.grafpedia.com/tutorials/create-unique-wordpress-theme">How to Create a Unique Wordpress Theme</a></p>
<p><strong>Edit 9/16/09</strong> &#8211; <a href="http://www.grafpedia.com/tutorials/design-furniture-layout-manufacturer-layout">Design a Furniture layout or a Manufacturer layout</a></p>
<p><strong>Edit 9/16/09</strong> &#8211; <a href="http://www.grafpedia.com/tutorials/design-creative-design-studio-layout">Design a creative design studio layout</a></p>
<p><strong>Edit 9/16/09</strong> &#8211; <a href="http://www.instantshift.com/2009/09/17/70-ultimate-round-up-of-free-psd-website-templates/">70+ Ultimate Round-Up of Free PSD Website Templates</a></p>
<p><strong>Edit 9/17/09</strong> &#8211; <a href="http://www.1stwebdesigner.com/tutorials/how-to-create-a-minimalist-and-typographic-blog-layout-from-scratch/">How to Create a Minimalist and Typographic Blog Layout From Scratch</a></p>
<p><strong>Edit 9/17/09</strong> &#8211; <a href="http://www.grafpedia.com/tutorials/design-amazing-3d-hosting-layout">Design an amazing 3d hosting layout</a></p>
<p><strong>Edit 9/17/09</strong> &#8211; <a href="http://hv-designs.co.uk/2009/09/16/software-layout-5/">Software Layout #<a href="http://search.twitter.com/search?q=%235" rel="nofollow" target="_blank" title="Search Twitter for &quot;5&quot;">5</a></a></p>
<p><strong>Edit 9/21/09</strong> &#8211; <a href="http://www.reencoded.com/2009/09/21/how-to-create-professional-looking-website-layout-with-photoshop/">How To Create Professional Looking Website Layout With Photoshop</a></p>
<p><strong>Edit 9/22/09</strong> &#8211; <a href="http://www.grafpedia.com/tutorials/create-a-wordpress-interface-in-photoshop">Create a wordpress interface in Photoshop</a></p>
<p><strong>Edit 9/23/09</strong> &#8211; <a href="http://psd.tutsplus.com/tutorials/interface-tutorials/how-to-create-a-unique-colorful-site-layout/">How to Create a Unique Colorful Site Layout</a></p>
<p><strong>Edit 9/25/09</strong> &#8211; <a href="http://www.grafpedia.com/tutorials/create-photorealistic-web-layout">Create a photorealistic web layout &#8211; CSS/XHTML available</a></p>
<p><strong>Edit 9/28/09</strong> &#8211; <a href="http://vector.tutsplus.com/tutorials/web-design/build-a-promotional-iphone-app-website-wireframe-in-fireworks/">Build a Promotional iPhone App Website Wireframe in Fireworks</a></p>
<p><strong>Edit 9/28/09</strong> &#8211; <a href="http://www.pvmgarage.com/en/2009/09/makingseo-coded-free-css-template-with-psd-to-html-tips/">MakingSEO coded, Free CSS Template with PSD-to-HTML tips</a> and  <a href="http://www.pvmgarage.com/en/2009/09/design-a-clean-and-fresh-company-website-in-photoshop/">Design A Clean And Fresh Company Website In Photoshop</a></p>
<p><strong>Edit 9/29/09</strong> &#8211; <a href="http://sixrevisions.com/tutorials/photoshop-tutorials/how-to-make-an-impressive-blog-layout-in-photoshop/">How to Make an Impressive Blog Layout in Photoshop</a></p>
<p><strong>Edit 9/30/09</strong> &#8211; <a href="http://psd.tutsplus.com/tutorials/interface-tutorials/create-a-promotional-iphone-app-site-in-photoshop/">Create a Promotional iPhone App Site in Photoshop</a></p>
<p><strong>Edit 10/2/09</strong> &#8211; <a href="http://www.grafpedia.com/tutorials/design-simple-sleek-web-portfolio">How to design a simple and sleek web Portfolio</a></p>
<p><strong>Edit 10/5/09</strong> &#8211; <a href="http://sixrevisions.com/tutorials/photoshop-tutorials/create-a-very-simple-portfolio-web-layout-with-photoshop/">Create a Very Simple Portfolio Web Layout with Photoshop</a></p>
<p><strong>Edit 10/6/09</strong> &#8211; <a href="http://www.grafpedia.com/tutorials/design-a-car-dealer-website-layout-with-photoshop">Design a car dealer website layout with Photoshop</a></p>
<p><strong>Edit 10/13/09</strong> &#8211; <a href="http://designm.ag/tutorials/clean-portfolio/">Design a Clean Portfolio Site in Photoshop</a> and <a href="http://designm.ag/tutorials/psd-to-html-clean-folio/">How to Code a Clean Portfolio Design (Plus Free Five-Page Template)</a></p>
<p><strong>Edit 10/13/09</strong> &#8211; <a href="http://blog.boxedart.com/network-updates/boxedart/how-it-was-made-boxedart-website-design-tutorial/">BoxedArt Website Design Tutorial</a></p>
<p><strong>Edit 10/13/09</strong> &#8211; <a href="http://www.evolus.vn/Pencil/">The Pencil Project</a> &#8211; The Pencil Project&#8217;s unique mission is to build a free and opensource tool for making diagrams and GUI prototyping that everyone can use. </p>
<p><strong>Edit 10/13/09</strong> &#8211; <a href="http://hv-designs.co.uk/2009/10/02/hosting-layout-2/">Create a Hosting Layout #<a href="http://search.twitter.com/search?q=%232" rel="nofollow" target="_blank" title="Search Twitter for &quot;2&quot;">2</a> in Photoshop</a>,  <a href="http://hv-designs.co.uk/2009/10/12/hosting-layout-2-sitebuild-pt1/">Hosting Layout #<a href="http://search.twitter.com/search?q=%232" rel="nofollow" target="_blank" title="Search Twitter for &quot;2&quot;">2</a>: Sitebuild Pt.1</a>, and <a href="http://hv-designs.co.uk/2009/10/14/hosting-layout-2-sitebuild-pt2/">Hosting Layout #<a href="http://search.twitter.com/search?q=%232" rel="nofollow" target="_blank" title="Search Twitter for &quot;2&quot;">2</a>: Sitebuild Pt.2</a></p>
<p><strong>Edit 10/13/09</strong> &#8211; <a href="http://hv-designs.co.uk/2009/10/08/wordpress-layout-6/">Create a Wordpress Layout #<a href="http://search.twitter.com/search?q=%236" rel="nofollow" target="_blank" title="Search Twitter for &quot;6&quot;">6</a> in Photoshop</a></p>
<p><strong>Edit 10/13/09</strong> &#8211; <a href="http://www.pvmgarage.com/en/2009/10/become-a-wordpress-theme-developer-who-rocks-in-four-steps-and-50-readings/">Become A WordPress Theme Developer Who Rocks In Four Steps (and 50+ readings)</a></p>
<p><strong>Edit 10/15/09</strong> &#8211; <a href="http://css-tricks.com/designing-for-wordpress-complete-series-downloads/">Designing for WordPress: Complete Series &#038; Downloads</a></p>
<p><strong>Edit 10/15/09</strong> &#8211; Screencasts &#8211; <a href="http://css-tricks.com/video-screencasts/71-building-a-website-photoshop-mockup/">Building a Website (1 of 3): Photoshop Mockup</a>, <a href="http://css-tricks.com/video-screencasts/72-building-a-website-2-of-3-htmlcss-conversion/">Building a Website (2 of 3): HTML/CSS Conversion</a>, and <a href="http://css-tricks.com/new-screencast/">Building a Website (3 of 3): WordPress Theme</a></p>
<p><strong>Edit 10/20/09</strong> &#8211; <a href="http://psd.tutsplus.com/tutorials/interface-tutorials/how-to-make-a-creative-blog-layout/">How to Make a Creative Blog Layout</a></p>
<p><strong>Edit 10/21/09</strong> &#8211; <a href="http://www.thewebsqueeze.com/web-design-tutorials/from-photoshop-to-wordpress-part-i-design.html">From Photoshop to Wordpress – Part I – Design</a> and <a href="http://www.thewebsqueeze.com/web-design-tutorials/from-photoshop-to-wordpress-part-ii-coding.html">From Photoshop to Wordpress – Part II – Coding</a>. Watch the Web Squeeze for Part III</p>
<p><strong>Edit 10/21/09</strong> &#8211; <a href="http://hv-designs.co.uk/2009/10/20/web-design-layout-11/">Web Design Layout #<a href="http://search.twitter.com/search?q=%2311" rel="nofollow" target="_blank" title="Search Twitter for &quot;11&quot;">11</a></a></p>
<p><strong>Edit 10/21/09</strong> &#8211; <a href="http://www.thewebsqueeze.com/web-design-tutorials/30-photoshop-tutorials-for-creating-web-layouts-and-uis.html">30 Photoshop Tutorials for Creating Web Layouts and UIs</a></p>
<p><strong>Edit 10/21/09</strong> &#8211; <a href="http://line25.com/tutorials/how-to-create-a-pure-css-polaroid-photo-gallery">How To Create a Pure CSS Polaroid Photo Gallery</a></p>
<p><strong>Edit 10/23/09</strong> &#8211; <a href="http://www.threestyles.com/tutorials/20-mind-blowing-website-layout-tutorials-in-photoshop/">20 Mind Blowing Website Layout Tutorials in Photoshop</a></p>
<p><strong>Edit 10/23/09</strong> &#8211; <a href="http://sixrevisions.com/tutorials/photoshop-tutorials/create-a-clean-business-web-template-design-in-photoshop/">Create a Clean Business Web Template Design in Photoshop</a></p>
<p><strong>Edit 10/26/09</strong> &#8211; <a href="http://net.tutsplus.com/videos/screencasts/the-ultimate-guide-to-creating-a-design-and-converting-it-to-html-and-css/">The Ultimate Guide to Creating a Design and Converting it to HTML and CSS</a></p>
<p><strong>Edit 10/26/09</strong> &#8211; <a href="http://vandelaydesign.com/blog/design-process/psd-to-html-resources/">75 PSD to HTML Resources for Web Designers</a></p>
<p><strong>Edit 10/30/09</strong> &#8211; <a href="http://www.problogdesign.com/design/26-complete-wordpress-blog-design-tutorials/">26 Complete WordPress Blog Design Tutorials</a></p>
<p><strong>Edit 10/30/09</strong> &#8211; <a href="http://sixrevisions.com/tutorials/photoshop-tutorials/design-a-minimal-and-modern-portfolio-layout-with-photoshop/">Design a Minimal and Modern Portfolio Layout with Photoshop</a> and <a href="http://sixrevisions.com/tutorials/web-development-tutorials/minimal-and-modern-layout-psd-to-xhtmlcss-conversion/">Minimal and Modern Layout: PSD to XHTML/CSS Conversion</a></p>
<p><strong>Edit 10/30/09</strong> &#8211; <a href="http://psd.tutsplus.com/articles/web/40-quality-photoshop-ui-design-tutorials/">40 Quality Photoshop UI Design Tutorials</a></p>
<p><strong>Edit 11/19/09</strong> &#8211; <a href="http://sixrevisions.com/tutorials/photoshop-tutorials/how-to-design-a-band-website-layout-in-photoshop/?utm_source=feedburner&#038;utm_medium=feed&#038;utm_campaign=Feed%3A+SixRevisions+%28Six+Revisions%29">How to Design a Band Website Layout in Photoshop</a></p>
<p><strong>Edit 11/24/09</strong> &#8211; <a href="http://www.grafpedia.com/tutorials/create-clean-colorful-web-layout-photoshop">Create a Clean and Colorful Web Layout in Photoshop</a></p>
<p><strong>Edit 11/24/09</strong> &#8211; <a href="http://www.grafpedia.com/tutorials/create-gritty-website-layout?utm_source=feedburner&#038;utm_medium=feed&#038;utm_campaign=Feed%3A+Grafpedia+%28Grafpedia%29">Create a gritty website layout</a></p>
<p><strong>Edit 11/24/09</strong> &#8211;  <a href="http://www.grafpedia.com/tutorials/create-advanced-game-clan-layout?utm_source=feedburner&#038;utm_medium=feed&#038;utm_campaign=Feed%3A+Grafpedia+%28Grafpedia%29">Create an advanced game or clan layout</a></p>
<p><strong>Edit 11/24/09</strong> &#8211;  <a href="http://www.grafpedia.com/tutorials/create-clean-hosting-layout">Create a clean hosting layout</a></p>
<p><strong>Edit 11/24/09</strong> &#8211;  <a href="http://www.grafpedia.com/tutorials/design-colorful-theme-wordpress">Design a colorful theme for wordpress</a></p>
<p><strong>Edit 11/24/09</strong> &#8211;  <a href="http://www.grafpedia.com/tutorials/create-nature-inspired-layout-photoshop">Create a nature inspired layout in photoshop</a></p>
<p><strong>Edit 11/24/09</strong> &#8211;  <a href="http://www.grafpedia.com/tutorials/create-apple-inpired-website-layout-photoshop">Create an Apple inspired website layout in Photoshop</a></p>
<p><strong>Edit 11/24/09</strong> &#8211;  <a href="http://www.grafpedia.com/tutorials/design-simple-sleek-web-portfolio">How to design a simple and sleek web Portfolio</a></p>
<p><strong>Edit 11/24/09</strong> &#8211;  <a href="http://www.webdesigndev.com/photoshop/top-10-tutorials-to-learn-psd-to-html-conversion">Top 10 Tutorials To Learn PSD To HTML Conversion</a></p>
<p><strong>Edit 11/25/09</strong> &#8211;  <a href="http://hv-designs.co.uk/2009/11/19/business-layout-7/">Business Layout #<a href="http://search.twitter.com/search?q=%237" rel="nofollow" target="_blank" title="Search Twitter for &quot;7&quot;">7</a></a></p>
<p><strong>Edit 11/25/09</strong> &#8211;  <a href="http://hv-designs.co.uk/2009/11/11/the-design-lab-2/">The Design Lab #<a href="http://search.twitter.com/search?q=%232" rel="nofollow" target="_blank" title="Search Twitter for &quot;2&quot;">2</a></a></p>
<p><strong>Edit 11/25/09</strong> &#8211;  <a href="http://hv-designs.co.uk/2009/10/24/windows-7-inspired-navigation/">Windows 7 Inspired Navigation</a></p>
<p><strong>Edit 11/30/09</strong> &#8211;  <a href="http://abduzeedo.com/web-design-process-zee-site">Web Design Process: Zee Site</a></p>
<p><strong>Edit 11/30/09</strong> &#8211;  <a href="http://www.grafpedia.com/tutorials/design-wordpress-theme-scratch-theme">Design a wordpress theme from scratch &#8211; Theme available</a></p>
<p><strong>Edit 12/3/09</strong> &#8211;  <a href="http://hv-designs.co.uk/2009/11/30/cloud9-web-design-layout/">Cloud9 Web Design Layout</a></p>
<p><strong>Edit 12/8/09</strong> &#8211; <a href="http://psd.tutsplus.com/tutorials/interface-tutorials/create-a-watercolor-themed-website-design-with-photoshop/">Create a Watercolor-Themed Website Design with Photoshop</a>  </p>
<p><strong>Edit 12/8/09</strong> &#8211; <a href="http://vandelaydesign.com/blog/design/photoshop-tutorials-portfolio-design/">25 Photoshop Tutorials for Designing Portfolio Sites</a></p>
<p><strong>Edit 12/9/09</strong> &#8211; <a href="http://designm.ag/resources/converting-psd-to-html/">Top 10 Tutorials for Converting PSDs to HTML/CSS</a></p>
<p><strong>Edit 12/14/09</strong> &#8211; <a href="http://psd.tutsplus.com/tutorials/interface-tutorials/how-to-make-a-highly-textured-site-layout-in-photoshop/">How to Make a Highly-Textured Site Layout in Photoshop</a></p>
<p><strong>Edit 3/1/10</strong> &#8211; <a href="http://sixrevisions.com/tutorials/photoshop-tutorials/create-a-clean-and-professional-web-design-in-photoshop/">Create a Clean and Professional Web Design in Photoshop</a></p>
<p><strong>Edit 3/1/10</strong> &#8211; <a href="http://psd.tutsplus.com/tutorials/interface-tutorials/create-a-professional-web-2-0-layout/">Create a Professional Web 2.0 Layout</a> &#8211; This is a very extensive tutorial, 121 pages.</p>
<p><strong>Edit 3/1/10</strong> &#8211; <a href="http://www.noupe.com/tutorial/the-ultimate-collection-of-brilliant-web-design-tutorials.html">The Ultimate Collection Of Brilliant Web Design Tutorials</a></p>
<p>This post is updated as new resources are found on the Web.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.robinsblog.com/01152009/building-your-own-portfolio-site/" rel="bookmark">Building Your Own Portfolio Site</a></li><li><a href="http://www.robinsblog.com/01132010/easy-to-follow-photoshop-tutorials-for-creating-portfolio-layouts/" rel="bookmark">Easy to Follow Photoshop Tutorials for Creating Portfolio Layouts</a></li><li><a href="http://www.robinsblog.com/10152008/information-on-pricing-web-design-projects-and-creating-contracts-and-other-forms/" rel="bookmark">Information on Pricing Web Design Projects and Creating Contracts and Other Forms</a></li><li><a href="http://www.robinsblog.com/03162006/resources-to-make-xhtml-and-css-coding-easier/" rel="bookmark">Resources to Make XHTML and CSS Coding Easier</a></li><li><a href="http://www.robinsblog.com/11052008/use-adobe-illustrator-to-create-a-clean-website-layout/" rel="bookmark">Use Adobe Illustrator to Create a Clean Website Layout</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.robinsblog.com/04282009/converting-a-photoshop-psd-file-to-and-xhtml-css-web-site/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>100 Web Design Cheat Sheets that Will Save you Time, Money &amp; Mistakes</title>
		<link>http://www.robinsblog.com/03262009/100-web-design-cheat-sheets-that-will-save-you-time-money-mistakes/</link>
		<comments>http://www.robinsblog.com/03262009/100-web-design-cheat-sheets-that-will-save-you-time-money-mistakes/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 17:06:25 +0000</pubDate>
		<dc:creator>Robin Wood</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Graphics (Photoshop, Illustrator, Fireworks, etc.)]]></category>
		<category><![CDATA[PHP/MySQL & JavaScript]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[XHTML & Coding]]></category>

		<guid isPermaLink="false">http://www.robinsblog.com/?p=908</guid>
		<description><![CDATA[Web Design Schools Guide has compiled a list of 100 Terrific Web Design Cheat Sheets that Will Save you Time, Money and Mistakes.

Most web designers know that cheat sheets are incredibly useful. You can use them for quick reference, easy learning, and more. In this list, we’ve compiled an incredible collection of the 100 best and most useful cheat sheets [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.webdesignschoolsguide.com">Web Design Schools Guide</a> has compiled a list of <a href="http://www.webdesignschoolsguide.com/uncategorized/100-terrific-web-design-cheat-sheets-that-will-save-you-time-money-and-mistakes.html">100 Terrific Web Design Cheat Sheets that Will Save you Time, Money and Mistakes</a>.</p>
<blockquote><p>
Most web designers know that cheat sheets are incredibly useful. You can use them for quick reference, easy learning, and more. In this list, we’ve compiled an incredible collection of the 100 best and most useful cheat sheets out there.</p></blockquote>
<p>Topics include:</p>
<ul>
<li>Color</li>
<li>Adobe</li>
<li>HTML</li>
<li>CSS</li>
<li>Ajax</li>
<li>PHP</li>
<li>JavaScript</li>
<li>MySQL</li>
<li>Action Script</li>
<li>Miscellaneous</li>
</ul>
<p>Check out <a href="http://www.webdesignschoolsguide.com/uncategorized/100-terrific-web-design-cheat-sheets-that-will-save-you-time-money-and-mistakes.html">100 Terrific Web Design Cheat Sheets that Will Save you Time, Money and Mistakes</a>.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.robinsblog.com/11052008/the-best-cheat-sheets-for-web-developers/" rel="bookmark">The Best Cheat Sheets for Web Developers</a></li><li><a href="http://www.robinsblog.com/12012008/40-useful-cheat-sheets-for-designers/" rel="bookmark">40+ Useful Cheat Sheets for Designers</a></li><li><a href="http://www.robinsblog.com/11142008/cheat-sheets-for-front-end-web-developers/" rel="bookmark">Cheat Sheets for Front-end Web Developers</a></li><li><a href="http://www.robinsblog.com/03162006/resources-to-make-xhtml-and-css-coding-easier/" rel="bookmark">Resources to Make XHTML and CSS Coding Easier</a></li><li><a href="http://www.robinsblog.com/09232005/css-cheat-sheets-and-reference/" rel="bookmark">CSS Cheat Sheets and Reference</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.robinsblog.com/03262009/100-web-design-cheat-sheets-that-will-save-you-time-money-mistakes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>35+ very Useful And Powerful CSS techniques</title>
		<link>http://www.robinsblog.com/03202009/35-very-useful-and-powerful-css-techniques/</link>
		<comments>http://www.robinsblog.com/03202009/35-very-useful-and-powerful-css-techniques/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 16:39:54 +0000</pubDate>
		<dc:creator>Robin Wood</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.robinsblog.com/?p=891</guid>
		<description><![CDATA[Tripwire Magazine has compiled 35+ very Useful And Powerful CSS techniques. In addition to the 35+ CSS techniques there is also a nice introduction to CSS.
Here are ten CSS techniques that students frequently ask &#8220;how do I&#8230;?&#8221; in class:

CSS Tabs
Create Resizable Images With CSS
Making web pages extend to the bottom of the window 
Prettier Accessible Forms
Multi-Column Lists
Optimizing Your Website Structure [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.tripwiremagazine.com/">Tripwire Magazine</a> has compiled <a href="http://www.tripwiremagazine.com/Tools/CSS-Techniques/35-very-useful-and-powerful-css-techniques.html">35+ very Useful And Powerful CSS techniques</a>. In addition to the 35+ CSS techniques there is also a nice introduction to CSS.</p>
<p>Here are ten CSS techniques that students frequently ask &#8220;how do I&#8230;?&#8221; in class:</p>
<ol>
<li>CSS Tabs</li>
<li>Create Resizable Images With CSS</li>
<li>Making web pages extend to the bottom of the window </li>
<li>Prettier Accessible Forms</li>
<li>Multi-Column Lists</li>
<li>Optimizing Your Website Structure For Print Using CSS</li>
<li>Optimizing Your Website Content For Print Using CSS</li>
<li>Improving Link Display for Print</li>
<li>PDF Link Labeling Example</li>
<li>CSS tricks for custom bullets</li>
</ol>
<p>This is a <a href="http://www.tripwiremagazine.com/Tools/CSS-Techniques/35-very-useful-and-powerful-css-techniques.html">CSS resource worth bookmarking</a> for future reference.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.robinsblog.com/07262009/tripwire-magazines-mega-css-resource-roundup/" rel="bookmark">Tripwire Magazine's Mega CSS Resource Roundup</a></li><li><a href="http://www.robinsblog.com/11242008/a-comprehensive-introduction-to-photoshop-selection-techniques/" rel="bookmark">A Comprehensive Introduction to Photoshop Selection Techniques</a></li><li><a href="http://www.robinsblog.com/10192009/great-css-resources-and-articles-for-students/" rel="bookmark">Great CSS Resources and Articles for Students</a></li><li><a href="http://www.robinsblog.com/06072005/getting-to-know-macromedia-homesite/" rel="bookmark">Getting to Know Macromedia HomeSite</a></li><li><a href="http://www.robinsblog.com/11142008/are-you-making-these-10-css-mistakes/" rel="bookmark">Are You Making These 10 CSS Mistakes?</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.robinsblog.com/03202009/35-very-useful-and-powerful-css-techniques/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
