<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Pressplaymedia's Blog</title>
	
	<link>http://pressplaymedia.wordpress.com</link>
	<description>A blog about user-friendly web design techniques, SEO and general website optimization and other tips and tutorials.</description>
	<lastBuildDate>Mon, 19 Nov 2007 04:18:39 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<image><link>http://pressplaymedia.wordpress.com</link><url>http://www.feedburner.com/fb/images/pub/fb_pwrd.gif</url><title>http://pressplaymedia.wordpress.com</title></image>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/pressplaymedia" type="application/rss+xml" /><feedburner:emailServiceId>pressplaymedia</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>Speed Up Your Site: The Basics</title>
		<link>http://feedproxy.google.com/~r/pressplaymedia/~3/c83UcF_dAgA/</link>
		<comments>http://pressplaymedia.wordpress.com/2007/11/18/speed-up-your-site-the-basics/#comments</comments>
		<pubDate>Sun, 18 Nov 2007 18:38:53 +0000</pubDate>
		<dc:creator>pressplaymedia</dc:creator>
				<category><![CDATA[Website Optimization]]></category>
		<category><![CDATA[Website tips]]></category>
		<category><![CDATA[optimize page loading time]]></category>
		<category><![CDATA[website performance]]></category>

		<guid isPermaLink="false">http://pressplaymedia.wordpress.com/2007/11/18/speed-up-your-site-the-basics/</guid>
		<description><![CDATA[A page's loading speed is affected by 4 major things, server-side processing, client to server communication, size of data to be downloaded and rendering time.
This article will focus on the latter two - minimizing the data to be loaded and reducing browser rendering time. Here are some great tips and tricks:<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pressplaymedia.wordpress.com&blog=1706538&post=47&subd=pressplaymedia&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>A page&#8217;s loading speed is affected by 4 major things, server-side processing, client to server communication, size of data to be downloaded and rendering time.<br />
This article will focus on the latter two &#8211; minimizing the data to be loaded and reducing browser rendering time. Here are some great tips and tricks:</p>
<h2>1. Analyze your site&#8217;s performance</h2>
<p>First of all use this free online tool to analyze the performance of your page. It will provide you with some performance analytics and offer advice on how to improve your page&#8217;s loading time.</p>
<p><a href="http://www.websiteoptimization.com/services/analyze/" target="_blank"><strong>Web Page Analyzer</strong></a> at WebsiteOptimization.com</p>
<h2>2. Some obvious performance optimizations</h2>
<p>These solutions are so old or obvious they are becoming overlooked by newcomers, so I thought I&#8217;d mention them upfront:</p>
<p><strong>Remove anything you don&#8217;t necessarily need</strong><br />
The mother of all optimization &#8211; remove those silly widgets , backgrounds, cursors, scripts and content you do not actually need from your website. Observe miraculous improvement!</p>
<p><strong>Use external files for reusable code</strong><br />
If you are using any JavaScript or CSS code on more than one page, pack that into a separate external file and include it in all of the pages that depend on them. These external files can then be cached by your browser instead of read each time for each different page that uses it.</p>
<p><strong>Do not rely on public web hosts for content hosting</strong><br />
Public web hosts can get really bogged down, especially during high-traffic hours and can add to loading time significantly. Avoid using external hosting services for images, scripts and widgets, instead try to host as much content on your own dedicated server. If you absolutely need those, you can use source ordering to position the source code of those items further to the bottom of the page&#8217;s source code. Some widget providers (like Google) openly endorse this for better user experience.</p>
<h2>3. Use CSS and produce valid XHTML code</h2>
<p><strong>Avoid nested and full-page tables</strong><br />
This is probably the tip that will give you the most significant boost in browser rendering time. In order to render a table correctly, browsers must usually read the complete data of the table from start to end, thus large tables with lots of data will increase the perceived loading time of a page. The biggest bottleneck is if your whole web page layout in a single full-page table, which is forcing the browser to read through your complete page before it is able to render it correctly. You can eliminate the use of tables by designing <a href="http://en.wikipedia.org/wiki/Tableless_web_design" target="_blank">tableless layouts</a> with CSS, or at least eliminating full-page tables and breaking up large tables into smaller ones. This will not only optimize the page loading time for web visitors, but for mobile devices and other readers as well.</p>
<p><strong>Source ordered content<br />
</strong>Source ordering the content (or SOC for short) is a very useful and at the same time simple technique involving placing more important content to the top and less important content to the bottom of the source code and then laying it out using CSS. This will ensure that useful content (e.g. text and navigation) will load and display first, leaving the less important content (ads, footers) for last. Another benefit of this technique is that pages are more accessible to non-conventional readers and it is also reported that this technique adds to a page being more optimized for search bots and even producing better rankings.</p>
<p><strong>Write valid code<br />
</strong>Having all of your HTML code valid by W3C standards will eliminate the need for browser error-correction and thus speed up rendering time. You can use the <a href="http://validator.w3.org/" target="_blank">W3C validator</a> to check your site for any code formatting errors. No need to get obsessed with this though, there will always remain a few errors (external scripts, etc), however do try to keep your code as clean and valid as possible.</p>
<h2>4. Speed up image loading time</h2>
<p><strong>1. Minimize the number of images on your pages</strong><br />
- First of all, try to exclude from your page any images you don&#8217;t necessarily need. This is a pretty obvious tip, but many times the hardest thing to do <img src='http://s.wordpress.com/wp-includes/images/smilies/face-smile.png' alt=':)' class='wp-smiley' /><br />
- Using CSS techniques like <a href="http://css-tricks.com/css-sprites-what-they-are-why-theyre-cool-and-how-to-use-them/" target="_blank">CSS sprites</a> enables you to use only one big image which contains all of your navigation&#8217;s icons and backgrounds <a href="http://www.websiteoptimization.com/speed/tweak/css-sprites/" target="_blank">for example</a>. This means only one request call must be made to the server to load a dozen of images!</p>
<p><strong>2. Reduce the size of images on your pages<br />
</strong>The most obvious ways to reduce the size of images is to reduce the actual width and height of the image files and use image compression, both methods producing smaller files for the client to download.</p>
<p><strong>3. Use Height and Width tags<br />
</strong>Specifying the width and height attributes of each image used on your page is vital in helping the browser render images faster (no need for the browser to read each image&#8217;s data and determine its size). Another benefit is that the page&#8217;s layout won&#8217;t change as the images load.</p>
<h2>5. Compress Your Code</h2>
<p>Just like any other data, CSS stylesheets and JavaScript code can eat up your bandwidth, especially on complex sites. Compressing and optimizing code will reduce it&#8217;s size by up to around 75%, which can be a great performance boost. However, make sure you always keep the original files archived and intact, because most compression tools are one-way solutions. These online tools will do the job in a simple and effective manner:</p>
<ul>
<li><a href="http://compressor.ebiene.de/" target="_blank"><strong>CSS and JavaScript Compressor</strong></a> by Sergej Müller<br />
This compressor will reduce the size of both your CSS and JavaScript code down to 60%. It&#8217;s also extremely simple to use, just paste the code and select &#8220;basic&#8221; or &#8220;powerful&#8221; compression and it will output the optimized code, copy-paste ready.</li>
<li><a href="http://www.cssdrive.com/index.php/main/csscompressor/" target="_blank"><strong>CSS Compressor</strong></a> by CSS Drive<br />
This nifty little utility is very simple to use and can compress your CSS files by around 30%. It gives you a bit more control on how it compresses the code.</li>
<li><a href="http://teenage.cz/acidofil/tools/cssformat.php" target="_blank"><strong>CSS Formatter</strong></a> by teenage.cz<br />
Similar tool to CSS Compressor, however it provides additional compression options, optimizing CSS code by up to 40%.</li>
<li><a href="http://www.ibloomstudios.com/articles/php_css_compressor/" target="_blank"><strong>PHP CSS Compressor</strong></a> by iBloomStudios<br />
If you would like to keep your CSS files untouched and compress them on the fly at server-side, this little script will do just that.</li>
<li><a href="http://alex.dojotoolkit.org/shrinksafe/" target="_blank"><strong>ShrinkSafe</strong></a> by DojoToolkit<br />
This tool provides a safe way to compress your JavaScript code, based on Mozilla&#8217;s Rhino interpreter. Compresses the size by around one third of original.</li>
<li><a href="http://www.creativyst.com/Prod/3/" target="_blank"><strong>JavaScript Compressor</strong></a> by Creativyst</li>
<li><strong><a href="http://fmarcia.info/jsmin/test.html" target="_blank">JS Minifier</a></strong> by Franck Marcia<br />
Provides a <em>Minimal</em>, <em>Conservative </em>and <em>Agressive </em>option and compresses code by around 45%.</li>
</ul>
<h2>Further reading:</h2>
<ul>
<li><a href="http://webmonkey.wired.com/webmonkey/design/site_building/tutorials/tutorial2.html" target="_blank"><strong>Site optimization tutorial</strong></a> at WebMonkey<br />
A great tutorial covering most of the above and more, a must read!</li>
<li><strong><a href="http://www.codeproject.com/html/webspeed.asp" target="_blank">Ten ways to speed up the download time of your web pages</a></strong> at TheCodeProject<br />
A great tutorial expanding on the subjects in this article</li>
<li><strong><a href="http://paulstamatiou.com/2006/06/22/5-ways-to-speed-up-your-site/" target="_blank">5 Ways to speed up your site</a></strong> by Paul Stamatiou<br />
Another nice article on simple speed optimization</li>
</ul>
<p>Thanks for reading, please leave any questions or suggestions in the comments below!</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/pressplaymedia.wordpress.com/47/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/pressplaymedia.wordpress.com/47/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pressplaymedia.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pressplaymedia.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pressplaymedia.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pressplaymedia.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pressplaymedia.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pressplaymedia.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pressplaymedia.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pressplaymedia.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pressplaymedia.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pressplaymedia.wordpress.com/47/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pressplaymedia.wordpress.com&blog=1706538&post=47&subd=pressplaymedia&ref=&feed=1" /></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/pressplaymedia?a=c83UcF_dAgA:UngsojvVsj8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/pressplaymedia?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/pressplaymedia?a=c83UcF_dAgA:UngsojvVsj8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/pressplaymedia?i=c83UcF_dAgA:UngsojvVsj8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/pressplaymedia?a=c83UcF_dAgA:UngsojvVsj8:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/pressplaymedia?i=c83UcF_dAgA:UngsojvVsj8:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/pressplaymedia?a=c83UcF_dAgA:UngsojvVsj8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/pressplaymedia?i=c83UcF_dAgA:UngsojvVsj8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/pressplaymedia?a=c83UcF_dAgA:UngsojvVsj8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/pressplaymedia?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/pressplaymedia/~4/c83UcF_dAgA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://pressplaymedia.wordpress.com/2007/11/18/speed-up-your-site-the-basics/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c52f513832daae928b8f0d3da82ea24a?s=96&amp;d=identicon" medium="image">
			<media:title type="html">pressplaymedia</media:title>
		</media:content>
	<feedburner:origLink>http://pressplaymedia.wordpress.com/2007/11/18/speed-up-your-site-the-basics/</feedburner:origLink></item>
		<item>
		<title>Make your menus pretty with CSS</title>
		<link>http://feedproxy.google.com/~r/pressplaymedia/~3/ImYr_DMZFIs/</link>
		<comments>http://pressplaymedia.wordpress.com/2007/11/14/make-your-menus-pretty-with-css/#comments</comments>
		<pubDate>Wed, 14 Nov 2007 05:56:34 +0000</pubDate>
		<dc:creator>pressplaymedia</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Useful Links]]></category>
		<category><![CDATA[User friendly web design]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Website tips]]></category>

		<guid isPermaLink="false">http://pressplaymedia.wordpress.com/2007/11/14/make-your-menus-pretty-with-css/</guid>
		<description><![CDATA[Time to replace your boring text-only site navigation with something more pleasing to the eye?
How about beautiful CSS-based tab-like navigation? With free customizable source code?

Here are a few nice resources for CSS navigation as well as my selection of cool menus and tools:<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pressplaymedia.wordpress.com&blog=1706538&post=34&subd=pressplaymedia&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Time to replace your boring text-only site navigation with something more pleasing to the eye?<br />
How about beautiful CSS-based tab-like navigation? With free customizable source code?</p>
<p>Here are a few nice resources for CSS navigation as well as my selection of cool menus and tools:</p>
<h3><font color="#999999">1.</font><br />
A selection of ready-made CSS menus</h3>
<p>All of these come with functioning previews and downloadable source code.<br />
Click the preview image for a demo or the link to visit the download page.</p>
<p><a href="http://webdesigninfo.wordpress.com/2007/10/02/pure-css-horiontal-menus/" target="_blank"><img src="http://pressplaymedia.files.wordpress.com/2007/11/css-wdi.png?w=250&#038;h=50" border="0" height="50" width="250" /></a><br />
<strong><a href="http://webdesigninfo.wordpress.com/2007/10/02/pure-css-horiontal-menus/" target="_blank">Pure CSS Horizontal Menus with Images</a></strong> by WebDesignInfo &#8211; <a href="http://cssmenus.googlepages.com/ultimate_cssmenus.html" target="_blank">click here for preview</a></p>
<p><a href="http://cssmenus.googlepages.com/ultimate_cssmenus.html" target="_blank"></a><br />
<a href="http://www.exploding-boy.com/2005/12/21/more-free-css-navigation-menu-designs/" target="_blank"><img src="http://pressplaymedia.files.wordpress.com/2007/11/css-xboy1.png?w=250&#038;h=50" border="0" height="50" width="250" /></a><strong><a href="http://www.exploding-boy.com/2005/12/21/more-free-css-navigation-menu-designs/" target="_blank"><br />
12+ Free CSS Menus</a></strong> by Exploding-Boy  &#8211; <a href="http://exploding-boy.com/images/cssmenus2/menus.html" target="_blank">click here for preview</a></p>
<p><a href="http://exploding-boy.com/images/cssmenus2/menus.html" target="_blank"></a><br />
<a href="http://www.dynamicdrive.com/style/csslibrary/item/inverted-shift-down-menu-ii/" target="_blank"><img src="http://pressplaymedia.files.wordpress.com/2007/11/css-inverted.png" border="0" /><strong><br />
Inverted Tabs</strong></a> @ DynamicDrive</p>
<p><a href="http://www.13styles.com/css-menus/dolphin/" target="_blank"><img src="http://pressplaymedia.files.wordpress.com/2007/11/css-dolphin.png" border="0" /><br />
<strong>Dolphin Menu</strong></a> @ 13Styles</p>
<p><a href="http://www.13styles.com/css-menus/style4/" target="_blank"><img src="http://pressplaymedia.files.wordpress.com/2007/11/css-134.png" border="0" /><br />
Style #4</a> @ 13Styles</p>
<p><a href="http://www.simplebits.com/notebook/2003/08/14/minitab_shapes.html" target="_blank"><img src="http://pressplaymedia.files.wordpress.com/2007/11/css-simplebits.png" border="0" height="50" width="250" /></a><br />
<strong><a href="http://www.simplebits.com/notebook/2003/08/14/minitab_shapes.html" target="_blank">Mini Tab Shapes</a></strong> by SimpleBits &#8211; <a href="http://web-graphics.com/mtarchive/float-mini-tabs1.html" target="_blank">click here for preview</a></p>
<p><a href="http://web-graphics.com/mtarchive/float-mini-tabs1.html" target="_blank"></a><br />
<a href="http://web-graphics.com/mtarchive/001573.php" target="_blank"><img src="http://pressplaymedia.files.wordpress.com/2007/11/css-floatabs.png" border="0" /><br />
<strong>Float Mini Tabs</strong></a> by Alessandro &#8211; <a href="http://www.exploding-boy.com/images/EBmenus/menus.html" target="_blank">click here for preview</a></p>
<p><a href="http://www.exploding-boy.com/images/EBmenus/menus.html" target="_blank"></a><br />
<a href="http://www.exploding-boy.com/2005/12/29/14-free-vertical-css-menus/" target="_blank"><img src="http://pressplaymedia.files.wordpress.com/2007/11/css-xboy2.png" border="0" height="50" width="250" /></a><br />
<strong><a href="http://www.exploding-boy.com/2005/12/29/14-free-vertical-css-menus/" target="_blank">14 Free Vertical CSS Menus</a></strong> by Exploding-Boy &#8211; <a href="http://www.webdesignerwall.com/demo/advanced-css-menu/?TB_iframe=true&amp;height=270&amp;width=810" target="_blank">click here for preview</a></p>
<p><a href="http://www.webdesignerwall.com/demo/advanced-css-menu/?TB_iframe=true&amp;height=270&amp;width=810" target="_blank"></a><br />
<a href="http://www.webdesignerwall.com/tutorials/advanced-css-menu/" target="_blank"><img src="http://pressplaymedia.files.wordpress.com/2007/11/css-advimg.png" border="0" height="50" width="250" /></a><br />
<strong><a href="http://www.webdesignerwall.com/tutorials/advanced-css-menu/" target="_blank">Advanced CSS Menu</a></strong> by  WebDesignerWall &#8211; <a href="http://www.simplebits.com/bits/minitab_shapes.html" target="_blank">click here for preview</a></p>
<p><a href="http://veerle.duoh.com/index.php/blog/comments/2_level_horizontal_navigation_in_css_with_images/" target="_blank"><img src="http://pressplaymedia.files.wordpress.com/2007/11/css-duoh.png" border="0" height="50" width="250" /></a><br />
<strong><a href="http://veerle.duoh.com/index.php/blog/comments/2_level_horizontal_navigation_in_css_with_images/" target="_blank">2 level horizontal navigation with images</a></strong> by Veerle &#8211; <a href="http://www.ndesign-studio.com/demo/css-dock-menu/css-dock.html" target="_blank">click here for preview</a></p>
<p><a href="http://www.ndesign-studio.com/demo/css-dock-menu/css-dock.html" target="_blank"></a><br />
<a href="http://www.ndesign-studio.com/blog/design/css-dock-menu/" target="_blank"><img src="http://pressplaymedia.files.wordpress.com/2007/11/css-dock.png" border="0" /></a><br />
<strong><a href="http://www.ndesign-studio.com/blog/design/css-dock-menu/" target="_blank">CSS Dock Menu</a> </strong>(includes simple JavaScript) by NDesign-Studio &#8211; <a href="http://www.ndesign-studio.com/demo/css-dock-menu/css-dock.html" target="_blank">click here for preview</a></p>
<h3><font color="#999999">2.</font><br />
CSS Navigation Resources</h3>
<p>A collection of links to more CSS navigation:</p>
<p><a href="http://webdeveloper.econsultant.com/css-menus-navigation-tabs/" target="_blank">Top 71 CSS Menus Navigation Tabs</a> @ E-consultant</p>
<p><a href="http://cssjuice.com/30-free-css-based-navigation-menus/" target="_blank">30 Free CSS Based Navigation Menus</a> @ CSS Juice</p>
<p><a href="http://www.alvit.de/web-dev/tabs-and-pure-css-navigation-menus.html" target="_blank">Tabs and Pure CSS Menus</a> @ Alvit.de</p>
<p><a href="http://www.cssplay.co.uk/menus/" target="_blank">A Big Bunch of Various CSS Menus</a> @ CSS Play</p>
<h3><font color="#999999">3.</font><br />
CSS Menu Generators</h3>
<p>You can also create nice looking CSS navigation using online/software generators. Here are a few (<em>free!</em>) generators I like:</p>
<p><a href="http://www.highdots.com/css-tab-designer/" target="_blank">CSS Tab Designer</a> by Overzone</p>
<p><a href="http://www.webmaster-toolkit.com/css-menu-generator.shtml" target="_blank">CSS Menu Generator</a> @  Webmaster Toolkit</p>
<p><a href="http://cssmenumaker.com/" target="_blank">CSSMenuMaker.com</a> @ CSS Menu Maker</p>
<p><a href="http://www.accessify.com/tools-and-wizards/developer-tools/list-o-matic/" target="_blank">List-O-Matic</a> @ Accessify  (inspired by <a href="http://css.maxdesign.com.au/listamatic/" target="_blank">Listamatic</a>)</p>
<h3></h3>
<h3><font color="#999999">4.</font><br />
TUTORIALS</h3>
<p>These tutorials will provide you with an in-depth view of techniques used for creating CSS-based navigation and help you understand how it all functions:</p>
<p><a href="http://www.sitepoint.com/article/navigation-using-css" target="_blank">Nifty Navigation Using CSS</a> &#8211; @ SitePoint</p>
<p><a href="http://www.alistapart.com/articles/slidingdoors/" target="_blank">Sliding Door Technique</a> @ AListApart</p>
<p><a href="http://www.alistapart.com/articles/dropdowns/" target="_blank">SuckerFish Dropdowns</a> @ AListApart</p>
<p><a href="http://www.projectseven.com/tutorials/navigation/auto_hide/index.htm" target="_blank">CSS Express Dropdown Menus</a> @ PVII</p>
<p>If you have any suggestions, please let me know by posting comments. Enjoy <img src='http://s.wordpress.com/wp-includes/images/smilies/face-smile.png' alt=':)' class='wp-smiley' /> </p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/pressplaymedia.wordpress.com/34/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/pressplaymedia.wordpress.com/34/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pressplaymedia.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pressplaymedia.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pressplaymedia.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pressplaymedia.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pressplaymedia.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pressplaymedia.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pressplaymedia.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pressplaymedia.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pressplaymedia.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pressplaymedia.wordpress.com/34/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pressplaymedia.wordpress.com&blog=1706538&post=34&subd=pressplaymedia&ref=&feed=1" /></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/pressplaymedia?a=ImYr_DMZFIs:BpfXTpH7h5I:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/pressplaymedia?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/pressplaymedia?a=ImYr_DMZFIs:BpfXTpH7h5I:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/pressplaymedia?i=ImYr_DMZFIs:BpfXTpH7h5I:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/pressplaymedia?a=ImYr_DMZFIs:BpfXTpH7h5I:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/pressplaymedia?i=ImYr_DMZFIs:BpfXTpH7h5I:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/pressplaymedia?a=ImYr_DMZFIs:BpfXTpH7h5I:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/pressplaymedia?i=ImYr_DMZFIs:BpfXTpH7h5I:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/pressplaymedia?a=ImYr_DMZFIs:BpfXTpH7h5I:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/pressplaymedia?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/pressplaymedia/~4/ImYr_DMZFIs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://pressplaymedia.wordpress.com/2007/11/14/make-your-menus-pretty-with-css/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c52f513832daae928b8f0d3da82ea24a?s=96&amp;d=identicon" medium="image">
			<media:title type="html">pressplaymedia</media:title>
		</media:content>

		<media:content url="http://pressplaymedia.files.wordpress.com/2007/11/css-wdi.png" medium="image" />

		<media:content url="http://pressplaymedia.files.wordpress.com/2007/11/css-xboy1.png" medium="image" />

		<media:content url="http://pressplaymedia.files.wordpress.com/2007/11/css-inverted.png" medium="image" />

		<media:content url="http://pressplaymedia.files.wordpress.com/2007/11/css-dolphin.png" medium="image" />

		<media:content url="http://pressplaymedia.files.wordpress.com/2007/11/css-134.png" medium="image" />

		<media:content url="http://pressplaymedia.files.wordpress.com/2007/11/css-simplebits.png" medium="image" />

		<media:content url="http://pressplaymedia.files.wordpress.com/2007/11/css-floatabs.png" medium="image" />

		<media:content url="http://pressplaymedia.files.wordpress.com/2007/11/css-xboy2.png" medium="image" />

		<media:content url="http://pressplaymedia.files.wordpress.com/2007/11/css-advimg.png" medium="image" />

		<media:content url="http://pressplaymedia.files.wordpress.com/2007/11/css-duoh.png" medium="image" />

		<media:content url="http://pressplaymedia.files.wordpress.com/2007/11/css-dock.png" medium="image" />
	<feedburner:origLink>http://pressplaymedia.wordpress.com/2007/11/14/make-your-menus-pretty-with-css/</feedburner:origLink></item>
		<item>
		<title>Tips for making a good contact form</title>
		<link>http://feedproxy.google.com/~r/pressplaymedia/~3/y2XAHELe6sk/</link>
		<comments>http://pressplaymedia.wordpress.com/2007/11/09/tips-for-making-a-good-contact-form/#comments</comments>
		<pubDate>Fri, 09 Nov 2007 17:10:05 +0000</pubDate>
		<dc:creator>pressplaymedia</dc:creator>
				<category><![CDATA[User friendly web design]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Website tips]]></category>
		<category><![CDATA[contact forms]]></category>
		<category><![CDATA[user-friendly]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://pressplaymedia.wordpress.com/2007/11/09/tips-for-making-a-good-contact-form/</guid>
		<description><![CDATA[Contact forms are a must for practically any type of website. Most likely, the first contact you will have with a potential customer will be through the contact form on your site, thus it is one of the most important parts of the website. Here are a few tips and guidelines for making a good contact form.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pressplaymedia.wordpress.com&blog=1706538&post=16&subd=pressplaymedia&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Contact forms are a must for practically any type of website. Most likely, the first contact you will have with a potential customer will be through the contact form on your site, thus it is one of the most important parts of the website. Here are a few tips and guidelines for making a good contact form.</p>
<p><strong>1. Use as few input fields as possible</strong></p>
<p>The only fields you <em>really</em> need are for the visitor&#8217;s email address (so you can reply to them) and for the message body. Since it&#8217;s nice to reply to the visitor using their real name, you should also add the <em>name</em> field. However, do not have separate fields for first name, last name, middle name, etc.. Just use one simple field: Your Name. If you are logging each inquiry to your database you can separate their name into parts using server-side scripting. Use a description text to let them know the correct order (e.g. first name, middle name, last name). Discard all other fields like phone, fax, address, and any other details, unless you absolutely require them. And even in that case, make those fields optional. If you are gathering information about visitors and need other information about the user, please see the tips section below. Also avoid having a subject field, instead use a dropdown with preset options. See below for tips.</p>
<p><strong>2. Have the message field big enough</strong></p>
<p>Message body field should be big enough to fit a standard short inquiry. In my experience it counts to about 8-10 rows. This will enable most users to see their full message in one piece, which is desirable, and this also helps them spot any spelling errors and format their message into something readable.</p>
<p><strong>3. Newsletter signup should be off by default</strong></p>
<p>If you have a &#8220;sign up for the newsletter&#8221; checkbox, have it turned off by default. This is much less intrusive and in my experience much more effective. If they are really interested in your product or services, they will sign up. In the end, why would you want have random people on your list? Trust me on this one and save your server&#8217;s resources.</p>
<p>I have personally made tests on various websites with this checkbox on and off by default. I was quite surprised to find out that 60% of users that saw this checkbox <em>on </em>by default turned it off, while 80% of people that saw this checkbox <em>off </em>by default turned it on.</p>
<p><strong>4. Spam protection and security<br />
</strong></p>
<p>At first, I suggest you setup the contact form without any spam protection, and add that later if you get attacked by spam bots. You can use CAPTCHA protection or any other alternative, including adding a simple &#8220;Are you human?&#8221; checkbox. Be sure to add short instructions for your spam protection.</p>
<p>If you are saving any data to a database, make sure to protect your form from <em>sql-injection</em> and other malicious techniques like <em>cross site scripting</em>. Failure to do so might result in attacks to your site or database and data loss and data theft. If you google those terms you will find many tutorials on how to protect your form against those.</p>
<p><strong>5. Positioning the elements</strong></p>
<p>Field names should be above or left of the field and the &#8220;required&#8221; tag right of it. Field descriptions can be below the field name or right of the field if there is room. The submit button should be at the bottom of the form, aligned to the right. No need for a reset button as it is proved to be useless. Of course any other good design guidelines apply, like having visible borders around fields and avoiding small or hard to read fonts, etc.</p>
<p><strong>6. Provide other contact options</strong></p>
<p>Always try to provide your other contact options like phone numbers next to the form. Having a normal &#8220;mailto:&#8221; link is good for people who are more comfortable using their email program like Outlook, Thunderbird, etc. It is however a spam risk and is best done with javascript for example, so that a bot cannot collect your email address easily.</p>
<p><strong>TIPS</strong></p>
<p><strong>1. Collecting additional information</strong></p>
<p>If you want to gather additional information about the user such as age, gender, location, profession, etc, best way is to simply ask the user nicely upon submitting the inquiry. Have a second page with a form nicely asking the user for more information (e.g. &#8220;to better know your customer&#8221;), but I would suggest doing that only if the user has signed up for the newsletter. That is because in my experience signing up for the newsletter (if you have one) is a sign of interest and trust, besides, it is pretty useless to gather data about uninterested parties.</p>
<p><strong>2. Sending to different addresses based on the subject</strong></p>
<p>If you&#8217;d like to send product related questions to one address, site related questions to another for example, you can make a drop down field with these choices (labeled &#8220;Subject&#8221;) and then make a script which sends the message to the chosen department (information, sales, marketing, etc). Most common are: General Information, Website Feedback, Contact Request, Price Quote, etc.</p>
<p><strong>EXAMPLES</strong></p>
<p>A few examples of good contact forms. Source: <a href="http://www.free-css-templates.com/webdesign/contact-forms-showcase/" title="Contact Forms Showcase" target="_blank">CSS Contact Forms</a></p>
<p><a href="http://pressplaymedia.files.wordpress.com/2007/11/contact12.jpg" title="contact12.jpg"><img src="http://pressplaymedia.files.wordpress.com/2007/11/contact12.thumbnail.jpg" alt="contact12.jpg" /></a></p>
<p><a href="http://pressplaymedia.files.wordpress.com/2007/11/contact4.jpg" title="contact4.jpg"><img src="http://pressplaymedia.files.wordpress.com/2007/11/contact4.thumbnail.jpg" alt="contact4.jpg" /></a></p>
<p><a href="http://pressplaymedia.files.wordpress.com/2007/11/contact25.jpg" title="contact25.jpg"><img src="http://pressplaymedia.files.wordpress.com/2007/11/contact25.thumbnail.jpg" alt="contact25.jpg" /></a></p>
<p><a href="http://pressplaymedia.files.wordpress.com/2007/11/contact27.jpg" title="contact27.jpg"><img src="http://pressplaymedia.files.wordpress.com/2007/11/contact27.thumbnail.jpg" alt="contact27.jpg" /></a></p>
<h3>Further Reading:</h3>
<p><strong><a href="http://www.alistapart.com/articles/sensibleforms" target="_blank">Sensible Forms: A Form Usability Checklist<br />
</a></strong>A great article about designing forms for the end user by Brian Crescimanno at <a href="http://www.alistapart.com/articles/sensibleforms" target="_blank">AListApart</a><strong><a href="http://www.alistapart.com/articles/sensibleforms"><br />
</a></strong></p>
<p>Thanks for reading, any questions / comments are welcome!</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/pressplaymedia.wordpress.com/16/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/pressplaymedia.wordpress.com/16/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pressplaymedia.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pressplaymedia.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pressplaymedia.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pressplaymedia.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pressplaymedia.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pressplaymedia.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pressplaymedia.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pressplaymedia.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pressplaymedia.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pressplaymedia.wordpress.com/16/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pressplaymedia.wordpress.com&blog=1706538&post=16&subd=pressplaymedia&ref=&feed=1" /></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/pressplaymedia?a=y2XAHELe6sk:M8LUoAZsOKc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/pressplaymedia?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/pressplaymedia?a=y2XAHELe6sk:M8LUoAZsOKc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/pressplaymedia?i=y2XAHELe6sk:M8LUoAZsOKc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/pressplaymedia?a=y2XAHELe6sk:M8LUoAZsOKc:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/pressplaymedia?i=y2XAHELe6sk:M8LUoAZsOKc:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/pressplaymedia?a=y2XAHELe6sk:M8LUoAZsOKc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/pressplaymedia?i=y2XAHELe6sk:M8LUoAZsOKc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/pressplaymedia?a=y2XAHELe6sk:M8LUoAZsOKc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/pressplaymedia?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/pressplaymedia/~4/y2XAHELe6sk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://pressplaymedia.wordpress.com/2007/11/09/tips-for-making-a-good-contact-form/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c52f513832daae928b8f0d3da82ea24a?s=96&amp;d=identicon" medium="image">
			<media:title type="html">pressplaymedia</media:title>
		</media:content>

		<media:content url="http://pressplaymedia.files.wordpress.com/2007/11/contact12.thumbnail.jpg" medium="image">
			<media:title type="html">contact12.jpg</media:title>
		</media:content>

		<media:content url="http://pressplaymedia.files.wordpress.com/2007/11/contact4.thumbnail.jpg" medium="image">
			<media:title type="html">contact4.jpg</media:title>
		</media:content>

		<media:content url="http://pressplaymedia.files.wordpress.com/2007/11/contact25.thumbnail.jpg" medium="image">
			<media:title type="html">contact25.jpg</media:title>
		</media:content>

		<media:content url="http://pressplaymedia.files.wordpress.com/2007/11/contact27.thumbnail.jpg" medium="image">
			<media:title type="html">contact27.jpg</media:title>
		</media:content>
	<feedburner:origLink>http://pressplaymedia.wordpress.com/2007/11/09/tips-for-making-a-good-contact-form/</feedburner:origLink></item>
		<item>
		<title>Top 10 sites to check for design inspiration</title>
		<link>http://feedproxy.google.com/~r/pressplaymedia/~3/k9NM_Olo6Yo/</link>
		<comments>http://pressplaymedia.wordpress.com/2007/11/06/top-10-sites-to-check-for-design-inspiration/#comments</comments>
		<pubDate>Tue, 06 Nov 2007 04:08:59 +0000</pubDate>
		<dc:creator>pressplaymedia</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Starting a website]]></category>
		<category><![CDATA[Useful Links]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web design resources]]></category>
		<category><![CDATA[design inspiration]]></category>
		<category><![CDATA[useful webdesign links]]></category>
		<category><![CDATA[Website tips]]></category>

		<guid isPermaLink="false">http://pressplaymedia.wordpress.com/2007/11/06/top-10-sites-to-check-for-design-inspiration/</guid>
		<description><![CDATA[When I’m creating or redesigning a website, I usually take some time to crawl around the web and seek out sites that fit in the same category for ideas, or just check out the newest sites on various top-lists for innovative approaches. Besides checking out my favourite designers’ portfolios for latest creations, these are the bookmarks that never let me down..<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pressplaymedia.wordpress.com&blog=1706538&post=8&subd=pressplaymedia&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>When I&#8217;m creating or redesigning a website, I usually take some time to crawl around the web and seek out sites that fit in the same category for ideas, or just check out the newest sites on various top-lists for innovative approaches. Besides checking out my favourite designers&#8217; portfolios for latest creations, these are the bookmarks that never let me down:</p>
<h3>My top 10 sites for inspiration</h3>
<p>I&#8217;m pretty confident you&#8217;ll bookmark at least a few of these, as they are awesome resources for cool new websites:</p>
<p><strong>1. </strong><strong><a href="http://www.thefwa.com" title="TheFWA.com" target="_blank">TheFWA<br />
</a></strong><a href="http://www.thefwa.com" title="The Favourite Website Awards" target="_blank"><img src="http://pressplaymedia.files.wordpress.com/2007/11/logo-fwa1.jpg?w=250&#038;h=50" alt="TheFWA" align="middle" border="0" height="50" hspace="10" width="250" /></a><br />
The Favourite Website Awards (web awards at the cutting edge) is my primary source for finding new web design techniques, and modern / abstract design ideas.</p>
<p><strong>2. </strong><strong><a href="http://dopeawards.com/">DopeAwards</a></strong><a href="http://www.dopeawards.com" title="DopeAwards" target="_blank"><br />
<img src="http://pressplaymedia.files.wordpress.com/2007/11/logo-dope1.jpg?w=250&#038;h=50" alt="Dope Awards" align="middle" border="0" height="50" hspace="10" width="250" /></a><br />
A great resource for cool flash sites, which are sorted in four groups: Dynamic, Original, Professional and Effort.</p>
<p><strong>3. </strong><strong><a href="http://bestwebgallery.com/" target="_blank" title="BestWebGallery.com">BestWebGallery</a></strong><a href="http://bestwebgallery.com/" title="BestWebGallery" target="_blank"><br />
<img src="http://pressplaymedia.files.wordpress.com/2007/11/logo_bwg.jpg?w=250&#038;h=50" alt="BestWebGallery" align="middle" border="0" height="50" hspace="10" width="250" /></a><br />
A nicely designed site listing nice designs.. What more can you want?</p>
<p><strong>4.  <a href="http://www.thebestdesigns.com/" target="_blank" title="TheBestDesigns.com">TheBestDesigns</a></strong><a href="http://www.thebestdesigns.com" title="TheBestDesigns" target="_blank"><br />
<img src="http://pressplaymedia.files.wordpress.com/2007/11/logo-tbd.png?w=250&#038;h=50" alt="TheBestDesigns" align="middle" border="0" height="50" hspace="10" width="250" /></a><br />
A good resource for interesting CSS and Flash sites.</p>
<p><strong>5. <a href="http://www.websitedesignawards.com/" target="_blank">WebsiteDesignAwards</a></strong><a href="http://www.websitedesignawards.com/" title="WebsiteDesignAwards" target="_blank"><br />
<img src="http://pressplaymedia.files.wordpress.com/2007/11/logo_wda.jpg?w=250&#038;h=50" alt="WDA" align="middle" border="0" height="50" hspace="10" width="250" /></a><br />
Regularly updated site for progressive CSS and Flash designed websites.</p>
<p><strong>6. </strong><strong><a href="http://www.cssdesigned.com">CSS-Designed</a></strong><a href="http://www.cssartillery.com" title="CSS Artillery" target="_blank"><br />
<img src="http://pressplaymedia.files.wordpress.com/2007/11/logo-cssdesigned.png?w=250&#038;h=50" alt="CSS Designed" align="middle" border="0" height="50" hspace="10" width="250" /></a><br />
Daily updated gallery showcasing beautiful CSS designed websites.</p>
<p><strong>7. </strong><strong><a href="http://www.cssartillery.com">CSS Artillery</a></strong><a href="http://www.cssartillery.com" title="CSS Artillery" target="_blank"><br />
<img src="http://pressplaymedia.files.wordpress.com/2007/11/logo-artillery.jpg?w=250&#038;h=50" alt="CSS Artillery" align="middle" border="0" height="50" hspace="10" width="250" /></a><br />
Another showcase of inspirational CSS-based sites.</p>
<p><strong>8. </strong><strong><a href="http://www.lightondark.com" target="_blank">LightOnDark</a></strong><a href="http://www.lightondark.com" title="LightOnDark" target="_blank"><br />
<img src="http://pressplaymedia.files.wordpress.com/2007/11/logo-lod.jpg?w=250&#038;h=50" alt="LightOnDark" align="middle" border="0" height="50" hspace="10" width="250" /></a><br />
I love dark designs and this site is all about those! A feast for my darker side if you will..</p>
<p><strong>9. </strong><strong><a href="http://www.faveup.com" target="_blank">FaveUp</a></strong><a href="http://www.faveup.com/" title="FaveUp" target="_blank"><br />
<img src="http://pressplaymedia.files.wordpress.com/2007/11/logo-faveup.jpg?w=250&#038;h=50" alt="FaveUp" align="middle" border="0" height="50" hspace="10" width="250" /></a><br />
A very nice site, not only listing cool CSS and Flash sites, but other designs like logos and business cards as well, a useful resource indeed.</p>
<p><strong>10. </strong><strong><a href="http://www.templatemonster.com/" title="Template Monster" target="_blank">TemplateMonster</a></strong><a href="http://www.templatemonster.com" title="TemplateMonster" target="_blank"><br />
<img src="http://pressplaymedia.files.wordpress.com/2007/11/logo-monster.jpg?w=250&#038;h=50" alt="TemplateMonster" align="middle" border="0" height="50" hspace="10" width="250" /></a><br />
Although I never base my designs off templates, the designers at TemplateMonster have a touch for keeping things clean and simple, so I check out their new designs from time to time</p>
<h3>And then some</h3>
<p>Other inspirational sites I check out often:</p>
<p><strong>- <a href="http://www.webcreme.com" target="_blank">WebCreme</a><br />
- <a href="http://designsnips.com/" target="_blank">DesignSnips</a><br />
- </strong><strong><a href="http://www.csszengarden.com/" target="_blank" title="CSSZenGarden">CSS Zen Garden</a></strong><br />
<strong> &#8211; </strong><strong><a href="http://designcharts.com">DesignCharts</a></strong><strong><br />
- <a href="http://www.designineurope.eu" target="_blank">DesignInEurope</a><br />
- <a href="http://www.designmeltdown.com/" target="_blank">DesignMeltdown</a></strong><br />
<strong>- <a href="http://www.xhilarate.com" target="_blank">Xhilarate</a><br />
- </strong><strong><a href="http://www.designsnack.com" target="_blank">DesignSnack</a></strong><br />
<strong> &#8211; </strong><strong><a href="http://screenfluent.com" target="_blank">ScreenFluent</a></strong><br />
<strong> &#8211; </strong><strong><a href="http://www.purepleasuredesign.com/blog/index.php" target="_blank">PurePleasureDesign Blog</a></strong><br />
<strong> &#8211; </strong><strong><a href="http://www.thewebaward.com/highest-rated" target="_blank">TheWebAward Highest Rated</a></strong><br />
<strong> &#8211; </strong><strong><a href="http://www.csselite.com/category/showcase" target="_blank">CSS Elite</a></strong><br />
<strong> &#8211; </strong><strong><a href="http://wakeupgallery.com" target="_blank">WakeUpGallery</a></strong><br />
<strong> &#8211; </strong><strong><a href="http://www.kirupa.com/forum/forumdisplay.php?f=55" title="Kool Sites @ Kirupa">Kool Sites @ Kirupa</a></strong></p>
<p>The last one is a plug for Kirupa.com, one of my favourite resources for tutorials, their forums have a great community of designers, so I usually check out their favourites too.<a href="http://www.kirupa.com/forum/forumdisplay.php?f=55" title="Kool Sites @ Kirupa"><br />
</a></p>
<h3>That&#8217;s it for now..</h3>
<p>With these links you should be able to find some pretty awesome sites for fresh ideas. But remember, professional designers don&#8217;t have to look for inspiration outside, they just have to look inside <img src='http://s.wordpress.com/wp-includes/images/smilies/face-wink.png' alt=';)' class='wp-smiley' /> </p>
<p>Happy browsing!</p>
<p>And if you think a great site is missing on my list, let me know by leaving comments / feedback!</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/pressplaymedia.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/pressplaymedia.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pressplaymedia.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pressplaymedia.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pressplaymedia.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pressplaymedia.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pressplaymedia.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pressplaymedia.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pressplaymedia.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pressplaymedia.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pressplaymedia.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pressplaymedia.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pressplaymedia.wordpress.com&blog=1706538&post=8&subd=pressplaymedia&ref=&feed=1" /></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/pressplaymedia?a=k9NM_Olo6Yo:AyY0KPVu-eY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/pressplaymedia?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/pressplaymedia?a=k9NM_Olo6Yo:AyY0KPVu-eY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/pressplaymedia?i=k9NM_Olo6Yo:AyY0KPVu-eY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/pressplaymedia?a=k9NM_Olo6Yo:AyY0KPVu-eY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/pressplaymedia?i=k9NM_Olo6Yo:AyY0KPVu-eY:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/pressplaymedia?a=k9NM_Olo6Yo:AyY0KPVu-eY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/pressplaymedia?i=k9NM_Olo6Yo:AyY0KPVu-eY:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/pressplaymedia?a=k9NM_Olo6Yo:AyY0KPVu-eY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/pressplaymedia?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/pressplaymedia/~4/k9NM_Olo6Yo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://pressplaymedia.wordpress.com/2007/11/06/top-10-sites-to-check-for-design-inspiration/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c52f513832daae928b8f0d3da82ea24a?s=96&amp;d=identicon" medium="image">
			<media:title type="html">pressplaymedia</media:title>
		</media:content>

		<media:content url="http://pressplaymedia.files.wordpress.com/2007/11/logo-fwa1.jpg" medium="image">
			<media:title type="html">TheFWA</media:title>
		</media:content>

		<media:content url="http://pressplaymedia.files.wordpress.com/2007/11/logo-dope1.jpg" medium="image">
			<media:title type="html">Dope Awards</media:title>
		</media:content>

		<media:content url="http://pressplaymedia.files.wordpress.com/2007/11/logo_bwg.jpg" medium="image">
			<media:title type="html">BestWebGallery</media:title>
		</media:content>

		<media:content url="http://pressplaymedia.files.wordpress.com/2007/11/logo-tbd.png" medium="image">
			<media:title type="html">TheBestDesigns</media:title>
		</media:content>

		<media:content url="http://pressplaymedia.files.wordpress.com/2007/11/logo_wda.jpg" medium="image">
			<media:title type="html">WDA</media:title>
		</media:content>

		<media:content url="http://pressplaymedia.files.wordpress.com/2007/11/logo-cssdesigned.png" medium="image">
			<media:title type="html">CSS Designed</media:title>
		</media:content>

		<media:content url="http://pressplaymedia.files.wordpress.com/2007/11/logo-artillery.jpg" medium="image">
			<media:title type="html">CSS Artillery</media:title>
		</media:content>

		<media:content url="http://pressplaymedia.files.wordpress.com/2007/11/logo-lod.jpg" medium="image">
			<media:title type="html">LightOnDark</media:title>
		</media:content>

		<media:content url="http://pressplaymedia.files.wordpress.com/2007/11/logo-faveup.jpg" medium="image">
			<media:title type="html">FaveUp</media:title>
		</media:content>

		<media:content url="http://pressplaymedia.files.wordpress.com/2007/11/logo-monster.jpg" medium="image">
			<media:title type="html">TemplateMonster</media:title>
		</media:content>
	<feedburner:origLink>http://pressplaymedia.wordpress.com/2007/11/06/top-10-sites-to-check-for-design-inspiration/</feedburner:origLink></item>
		<item>
		<title>Why you need to hire a Designer for your website</title>
		<link>http://feedproxy.google.com/~r/pressplaymedia/~3/4fs8lu5R3Ck/</link>
		<comments>http://pressplaymedia.wordpress.com/2007/11/05/why-you-need-to-hire-a-designer-for-your-website/#comments</comments>
		<pubDate>Mon, 05 Nov 2007 05:24:51 +0000</pubDate>
		<dc:creator>pressplaymedia</dc:creator>
				<category><![CDATA[Starting a blog]]></category>
		<category><![CDATA[Starting a website]]></category>
		<category><![CDATA[Website tips]]></category>

		<guid isPermaLink="false">http://pressplaymedia.wordpress.com/2007/11/05/why-you-need-to-hire-a-designer-for-your-website/</guid>
		<description><![CDATA[Your cousin can draw some really nice pictures (her pencil strokes are simple and clean, just what you would like your website to be). Your friend knows some Photoshop (she uses it to make her pictures look prettier on social networking sites and she sure does a great job!). Your neighbour’s son is an avid blogger and his blog about iPhone over-clocking-or-something is quite nice. And all of these people have offered to design your website for free. Why would you even bother searching for and worst of all paying for a designer?

While a website designer’s job is indeed all of the above, web design encompasses much more than just drawing pretty pictures, editing photos and knowing HTML code. It’s not just a profession, it’s an art - therefore, not only does being a designer require deep industry knowledge, it also requires a touch of talent.

Let me point out a few important reasons why you probably need an experienced designer.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pressplaymedia.wordpress.com&blog=1706538&post=6&subd=pressplaymedia&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Your cousin can draw some really nice pictures (besides, pencil strokes are simple and clean, just what you would like your website to be). Your friend knows some <a href="http://www.answers.com/topic/adobe-photoshop?nafid=22" class="answerlink">Photoshop</a> (she uses it to make her pictures look prettier on social networking sites and she sure does a great job!). Your neighbour’s son is an avid blogger and his blog about iPhone over-clocking-or-something is quite nice. And all of these people have offered to design your website <em>for free</em>. Why would you even bother searching for and worst of all <em>paying </em>for a designer?</p>
<p>While a website designer’s job is indeed all of the above, web design encompasses <em>much more </em>than just drawing pretty pictures, editing photos and knowing <a href="http://www.answers.com/topic/html?nafid=22" class="answerlink">HTML</a> code. It’s not just a profession, it’s an <em>art </em>- therefore, not only does being a designer require deep industry knowledge, it also requires a touch of talent.</p>
<p>Let me point out a few important reasons why you probably need an experienced designer.</p>
<h3>1. User Experience</h3>
<p>A good web designer can predict how users will behave on a website from the moment they enter, what they will likely be looking for (and <em>where </em>they will be looking for it), can predict their interaction and movement around the site and optimize the site’s content and navigation accordingly. In some cases it is also important to optimize the site for different types of users, and the designer must be able to <u>see into their minds</u> (not literally as in telepathy, although it would help).</p>
<p>Each function or part of the website (e.g. newsletter sign-up) will work much better when presented in a compelling and straight-forward manner &#8211; in respect, poorly presented functions will be overlooked, or worse &#8211; <u>ignored</u>. User experience is thus one of the most important parts of web design, and an integral part of getting your message across to the customer (whether the message is <em>“buy this now”</em> or <em>“come back later for new stuff”</em>, it will be more &#8211; and in some cases <em>only</em>  effective when presented in a clear and concise manner).</p>
<p>A designer’s task is to communicate an idea to the end-user, visually. So, if you think of it like that, bad design is bad communication.</p>
<h3>2. Aesthetics</h3>
<p>A nice web design can make your website look professional , trustworthy, and make it stand out of the crowd. The first few seconds a visitor looks around a website are usually the most important, because that is when the visitor forms his opinion, especially if he&#8217;s new and has never heard of or had any past experience with  the company.  <u></u></p>
<p><u>A bad web design will make visitors leave your site and never come back.</u> The ‘net has been around long enough, and websites looking like 1995 simply don’t leave a positive impression on visitors anymore. Unless the visitor really is interested in something only you can offer, chances are he/she will look further.</p>
<p>If you don’t care how your company and your products/services are presented, how much do you really care about quality? It’s not enough if <em>you</em> know the answer to that question. Let your site’s visitors know too.</p>
<h3>3. Innovation</h3>
<p>Good designers strive to innovate, and even if your business is as old as the pyramids, the designer will find a new and interesting way to lure customers in, and to separate your website from the thousands of competitors it might have.A good looking and innovative website will get more traffic and that means more potential buyers. In fact, it might get so much traffic that you won’t need to spend that much on printed ads and other forms of advertising! &#8211; And that’s a good thing!</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/pressplaymedia.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/pressplaymedia.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pressplaymedia.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pressplaymedia.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pressplaymedia.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pressplaymedia.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pressplaymedia.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pressplaymedia.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pressplaymedia.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pressplaymedia.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pressplaymedia.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pressplaymedia.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pressplaymedia.wordpress.com&blog=1706538&post=6&subd=pressplaymedia&ref=&feed=1" /></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/pressplaymedia?a=4fs8lu5R3Ck:b2fTvoogMxE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/pressplaymedia?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/pressplaymedia?a=4fs8lu5R3Ck:b2fTvoogMxE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/pressplaymedia?i=4fs8lu5R3Ck:b2fTvoogMxE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/pressplaymedia?a=4fs8lu5R3Ck:b2fTvoogMxE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/pressplaymedia?i=4fs8lu5R3Ck:b2fTvoogMxE:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/pressplaymedia?a=4fs8lu5R3Ck:b2fTvoogMxE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/pressplaymedia?i=4fs8lu5R3Ck:b2fTvoogMxE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/pressplaymedia?a=4fs8lu5R3Ck:b2fTvoogMxE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/pressplaymedia?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/pressplaymedia/~4/4fs8lu5R3Ck" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://pressplaymedia.wordpress.com/2007/11/05/why-you-need-to-hire-a-designer-for-your-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c52f513832daae928b8f0d3da82ea24a?s=96&amp;d=identicon" medium="image">
			<media:title type="html">pressplaymedia</media:title>
		</media:content>
	<feedburner:origLink>http://pressplaymedia.wordpress.com/2007/11/05/why-you-need-to-hire-a-designer-for-your-website/</feedburner:origLink></item>
		<item>
		<title>Starting your first business website</title>
		<link>http://feedproxy.google.com/~r/pressplaymedia/~3/L3shO1F9_hw/</link>
		<comments>http://pressplaymedia.wordpress.com/2007/10/07/first-website-for-your-business/#comments</comments>
		<pubDate>Sun, 07 Oct 2007 22:35:02 +0000</pubDate>
		<dc:creator>pressplaymedia</dc:creator>
				<category><![CDATA[Starting a website]]></category>
		<category><![CDATA[Website tips]]></category>
		<category><![CDATA[first website]]></category>
		<category><![CDATA[small business]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://pressplaymedia.wordpress.com/2007/10/07/first-website-for-your-business/</guid>
		<description><![CDATA[So, you're ready to take your business online. But are you prepared for the process?
Here is a checklist of things you need, before you even start thinking about pretty designs...<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pressplaymedia.wordpress.com&blog=1706538&post=4&subd=pressplaymedia&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>So, you&#8217;re ready to take your business online. But are you prepared for the process?</p>
<p>Here is a checklist of things you need, before you even start thinking about pretty designs.</p>
<h3><strong>1. A very clear vision of what you as a business expect from your website</strong></h3>
<p>Believing that you &#8220;just need a website&#8221; is one of the most common and also one of the worst mistakes.<br />
Here are a few questions you need to answer <em>before </em>you start looking for a developer.<br />
<font color="#993300">Take a minute and think about your website&#8217;s<strong> target audience </strong>and what they&#8217;ll likely be expecting to find on your website.</font><br />
Will it act only as a presentation of your company and your services?<br />
Or do you also plan on selling your products online, or do you just want to inform people about them, or both?<br />
Do you want to keep in touch with your customers and/or provide online support for your products?<br />
Will you provide constant updates about your company&#8217;s services and products, or will it be a static website?<br />
Will your site be multi-lingual or aim at different markets?<br />
Are you interested in business-to-business dealings? If so, what information and online tools will you offer to other businesses?<br />
What content are you planning on providing your visiting customers &#8211; user manuals, product specifications, software updates, etc?<br />
I could go on, but if you put yourself in the role of a clueless customer, I&#8217;m pretty sure you will find other important things specific to your case.</p>
<p>A good tip is to check out websites of your competition (or better yet websites of established businesses) for inspiration and see what content and tools they offer their clients / website visitors.</p>
<p>If you have a clear knowledge of what you need and what you aim for, you will make work much easier for the developer and this will save you precious time and money. And that&#8217;s a good thing!</p>
<h3><strong>2. Content for your website<br />
</strong></h3>
<p>Depending on the purpose of your website, you will need to prepare written and photo material to populate the content of your site.<br />
The developer will usually give you a list, but here are the most common things, just in case:<br />
- your company&#8217;s logo / slogan (if you don&#8217;t have a logo or a slogan yet, get it!)<br />
- a well written description of your company (about us), company goals, accomplishments, etc<br />
- a small description of key personnel and your company&#8217;s references (this is good for building customer trust in your company)<br />
- a full list of services you offer with short descriptions<br />
- a list of products you offer including descriptions or specifications (at least your featured products)<br />
- if you intend to sell those products online, a picture of each product is a must, as well as the current price list<br />
- your company&#8217;s contact and legal details (a map to your headquarters/shops is also very useful)</p>
<p>These are just a few pointers, but in general, <strong>think of what is useful information for your audience</strong> and add that to the list.</p>
<h3><strong>3.  Money</strong></h3>
<p>Have a budget ready, because what you pay is what you get!<br />
Seriously, if you have a strict budget, communicate with your web developer and see what you can get for your set budget and maybe discard some of the things that are less important to your <u>audience</u>.<br />
If you are completely clueless about web design be careful &#8211; some web developers will try to bundle in as much as they can (things you might not even need!) to raise their total price.<br />
Of course, the bigger the budget, the more functionality will be added to your website, things like content management, e-commerce, user community, etc, and generally more time will be spent on polishing all of the details.<br />
If your needs are bigger than your budget and the local prices are too high for you, try outsourcing the development to countries where web design services are much cheaper (<a href="http://www.getafreelancer.com" title="GetAFreelancer.com" target="_blank">http://www.getafreelancer.com</a> is a good start).</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/pressplaymedia.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/pressplaymedia.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pressplaymedia.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pressplaymedia.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pressplaymedia.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pressplaymedia.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pressplaymedia.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pressplaymedia.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pressplaymedia.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pressplaymedia.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pressplaymedia.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pressplaymedia.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pressplaymedia.wordpress.com&blog=1706538&post=4&subd=pressplaymedia&ref=&feed=1" /></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/pressplaymedia?a=L3shO1F9_hw:2NOQ7iVdLPg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/pressplaymedia?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/pressplaymedia?a=L3shO1F9_hw:2NOQ7iVdLPg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/pressplaymedia?i=L3shO1F9_hw:2NOQ7iVdLPg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/pressplaymedia?a=L3shO1F9_hw:2NOQ7iVdLPg:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/pressplaymedia?i=L3shO1F9_hw:2NOQ7iVdLPg:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/pressplaymedia?a=L3shO1F9_hw:2NOQ7iVdLPg:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/pressplaymedia?i=L3shO1F9_hw:2NOQ7iVdLPg:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/pressplaymedia?a=L3shO1F9_hw:2NOQ7iVdLPg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/pressplaymedia?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/pressplaymedia/~4/L3shO1F9_hw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://pressplaymedia.wordpress.com/2007/10/07/first-website-for-your-business/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c52f513832daae928b8f0d3da82ea24a?s=96&amp;d=identicon" medium="image">
			<media:title type="html">pressplaymedia</media:title>
		</media:content>
	<feedburner:origLink>http://pressplaymedia.wordpress.com/2007/10/07/first-website-for-your-business/</feedburner:origLink></item>
	</channel>
</rss>
