<?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>Cyclonic Studios &#187; Web</title>
	<atom:link href="http://www.cyclonicstudios.com/category/web/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cyclonicstudios.com</link>
	<description>Windswept Design and Development by Graham Kaemmer</description>
	<lastBuildDate>Fri, 06 Jan 2012 22:17:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Targeting Browsers (Namely the Different Versions of IE) with Only CSS</title>
		<link>http://www.cyclonicstudios.com/targeting-browsers-namely-the-different-versions-of-ie-with-only-css/</link>
		<comments>http://www.cyclonicstudios.com/targeting-browsers-namely-the-different-versions-of-ie-with-only-css/#comments</comments>
		<pubDate>Sun, 30 Aug 2009 19:07:28 +0000</pubDate>
		<dc:creator>Cyclonic</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[strategies]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.cyclonicstudios.com/?p=150</guid>
		<description><![CDATA[Internet Explorer 6 has been in use for a whopping eight years, during which time the internet has grown both in size and in usability. So here we are, with 25% of people still using IE6 which hardly even begins to support modern CSS techniques. For a long time, designers have found different ways to [...]]]></description>
			<content:encoded><![CDATA[<p>Internet Explorer 6 has been in use for a whopping eight years, during which time the internet has grown both in size and in usability. So here we are, with 25% of people still using IE6 which hardly even begins to support modern CSS techniques.<br />
<br />
For a long time, designers have found different ways to target IE6 and its slightly improved (but still seriously lacking) predecessor, IE7, and feed them different CSS to fix any bugs that the browsers have with normal, up-to-date styling. A popular trick is to use IE&#8217;s conditional comments to give IE6 and/or IE7 a different stylesheet. This works fine, except that it means that you need to make two stylesheets for your designs. There is a way that is less widely known that exploits the star-html hack combined with CSS 2.1  selectors to differentiate between IE6 and IE7. It looks like this:<br />
</p>
<pre><code class="css">
element {
/* Standards-Compliant Properties Here
}

* html element {
/* IE6 Properties Here
}

*+html element {
/* IE7 Properties Here
}
</code></pre>
<p>
Basically, IE6 and IE7 both think that there is an element above the html element, which is nonexistent in other browsers. So the <code>* html</code> selector is used to target IE6 and 7. To single out IE7, a CSS 2.1 selector (<code>*+html</code>) which is unsupported by IE6 can be used.<br />
<br />
The CSS-only technique is a lot less of a pain than using a separate ie6.css file for all of your hacks. Anyway, that&#8217;s just a helpful hint I just figured out.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cyclonicstudios.com/targeting-browsers-namely-the-different-versions-of-ie-with-only-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Design From Scratch&#8217;s Anti-Spam Method</title>
		<link>http://www.cyclonicstudios.com/web-design-from-scratchs-anti-spam-method/</link>
		<comments>http://www.cyclonicstudios.com/web-design-from-scratchs-anti-spam-method/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 04:30:03 +0000</pubDate>
		<dc:creator>Cyclonic</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[strategies]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.cyclonicstudios.com/?p=133</guid>
		<description><![CDATA[I just wrote a post about how to make sure that someone using your contact form is human, which utilized a validation image. While this is effective, it requires the user to spend an annoying 10 seconds deciphering the text and typing it in. Web Design From Scratch has a very clever solution. The trick [...]]]></description>
			<content:encoded><![CDATA[<p>I just wrote a post about how to make sure that someone using your contact form is human, which utilized a validation image. While this is effective, it requires the user to spend an annoying 10 seconds deciphering the text and typing it in. <a href="http://www.webdesignfromscratch.com/">Web Design From Scratch</a> has a very clever <a href="http://www.webdesignfromscratch.com/javascript/human-form-validation-check-trick.php">solution</a>.<br />
<br />
The trick is to use javascript to make sure that the user is interacting with the form, by waiting for the user to focus or click on the form itself. Once it sees that the form has been interacted with in a human-like way, it sets a flag in a hidden input field. If the person browsing is not using javascript, then a <code>&lt;noscript&gt;</code> tag is used to show a normal CAPTCHA form which is checked by PHP only if the other input flag returned false.<br />
<br />
Sure, there are other ways (the &#8220;hidden&#8221; empty input field) that work just fine, but this is certainly a clever way of going about it. It exploits a real difference between spambot and human.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cyclonicstudios.com/web-design-from-scratchs-anti-spam-method/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CushyCMS: Not Much, but Great at What it Does</title>
		<link>http://www.cyclonicstudios.com/cushycms-not-much-but-great-at-what-it-does/</link>
		<comments>http://www.cyclonicstudios.com/cushycms-not-much-but-great-at-what-it-does/#comments</comments>
		<pubDate>Sat, 18 Jul 2009 17:34:35 +0000</pubDate>
		<dc:creator>Cyclonic</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[cool websites]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.cyclonicstudios.com/?p=129</guid>
		<description><![CDATA[I am in the process of redesigning/remaking a site for a non-profit organization. Their site is, as of now, a collection of static HTML pages which are unintelligible to the average non-profit worker. On top of wanting a new look for their site, they are looking for a way to edit their pages&#8217; content without [...]]]></description>
			<content:encoded><![CDATA[<p>I am in the process of redesigning/remaking a site for a non-profit organization. Their site is, as of now, a collection of static HTML pages which are unintelligible to the average non-profit worker. On top of wanting a new look for their site, they are looking for a way to edit their pages&#8217; content without screwing up all the HTML and without having to directly edit any files at all. They have no need for a blog, an online application, or anything that is more than just blurbs and information.<br />
<br />
I could use edit forms combined with PHP and a database in a password protected area of the site; I could use an in-depth content management system like Drupal to handle the editing user interface for me. But all I need is a way to change the content of the HTML pages every once in a while.<br />
<br />
The perfect solution is <a href="http://www.cushycms.com">CushyCMS</a>. CushyCMS is actually hardly a content management system. All it is, is a way to edit specific parts of an HTML file using a WYSIWYG editor. You don&#8217;t have to install anything on your site; in fact, all you have to do is add <code>class="cushycms"</code> to the tags containing parts of the page you want editable. The coolest thing is that you can add the class to any type of tag (div, p, h1, span, even image) and have it be editable. Then you go to CushyCMS&#8217;s website, give it your FTP information, and you can start editing your content right away.<br />
<br />
A great feature of Cushy is that you can add &#8220;editors&#8221; who can edit pages of your choice and have their own login. So you can give all the clients&#8217; workers the ability to edit their own pages hassle-free, without worrying about all the technical stuff like FTP and HTML.<br />
<br />
CushyCMS makes it impossibly easy to give your site client-friendly capabilities without using any back-end coding at all. I would recommend using it to anyone that is making a site for clients who plan to only change little bits of content on their site at a time (a &#8220;Current News Story&#8221; page perhaps).<br />
<br />
As a CMS, Cushy is no WordPress, but it is great at making content easy for clients to edit.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cyclonicstudios.com/cushycms-not-much-but-great-at-what-it-does/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Topsy: A Cool Idea</title>
		<link>http://www.cyclonicstudios.com/topsy-a-cool-idea/</link>
		<comments>http://www.cyclonicstudios.com/topsy-a-cool-idea/#comments</comments>
		<pubDate>Sat, 06 Jun 2009 22:05:10 +0000</pubDate>
		<dc:creator>Cyclonic</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[cool websites]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://cyclonicstudios.com/?p=67</guid>
		<description><![CDATA[If you haven&#8217;t already, you should check out Topsy, a new search engine powered by tweets on Twitter. As opposed to using brute force and following links like Google and all the other search engines out there, Topsy parses every single tweet for links, and adds them to its database. So instead of giving you [...]]]></description>
			<content:encoded><![CDATA[<p>If you haven&#8217;t already, you should check out <a href="http://topsy.com">Topsy</a>, a new search engine powered by tweets on Twitter. As opposed to using brute force and following links like Google and all the other search engines out there, Topsy parses every single tweet for links, and adds them to its database. So instead of giving you just the most relevant results (boring), like Google, Topsy dishes out the sites that the most people are talking about.</p>
<p><br class="spacer_" /></p>
<p>Topsy is where Twitter meets Digg, and I think there is nowhere that this site can go but up. It will be interesting to see what happens to it as Twitter becomes more and more widely used to spread websites.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cyclonicstudios.com/topsy-a-cool-idea/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Great Sites for Learning Graphic Design</title>
		<link>http://www.cyclonicstudios.com/10-great-sites-for-learning-graphic-and-web-design/</link>
		<comments>http://www.cyclonicstudios.com/10-great-sites-for-learning-graphic-and-web-design/#comments</comments>
		<pubDate>Sat, 06 Jun 2009 17:31:19 +0000</pubDate>
		<dc:creator>Cyclonic</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://cyclonicstudios.com/?p=30</guid>
		<description><![CDATA[There are a lot of great websites out there with boatloads of information on beautiful web design. You probably know of a lot of them, but here are some of the best: 1. Smashing Magazine Smashing Magazine is very popular among web designers and graphic designers alike. It makes sense, because the tutorials, freebies, and [...]]]></description>
			<content:encoded><![CDATA[<p>There are a lot of great websites out there with boatloads of information on beautiful web design. You probably know of a lot of them, but here are some of the best:</p>
<p><br class="spacer_" /></p>
<h3><a href="http://www.smashingmagazine.com/">1. Smashing Magazine</a></h3>
<p><img class="alignnone size-full wp-image-48" title="Smashing Magazine" src="http://cyclonicstudios.com/wp-content/uploads/2009/06/smashingmag.png" alt="Smashing Magazine" width="253" height="92" /></p>
<p>Smashing Magazine is very popular among web designers and graphic designers alike. It makes sense, because the tutorials, freebies, and collections are consistently high-quality. Subscribing to Smashing Magazine is a great way to learn and get a lot from the web design community.</p>
<p><br class="spacer_" /></p>
<h3>2. <a href="http://net.tutsplus.com/">Nettuts</a>, <a href="http://psd.tutsplus.com/">Psdtuts</a> &amp; <a href="http://vector.tutsplus.com/">Vectortuts</a></h3>
<p><img class="alignnone size-full wp-image-58" title="Tuts Plus" src="http://cyclonicstudios.com/wp-content/uploads/2009/06/tutsplus.png" alt="Tuts Plus" width="500" height="44" /><br class="spacer_" /></p>
<p>If your looking for tutorials on web or graphic design, the Envato Network&#8217;s Nettuts, Psdtuts and Vectortuts are the best place to start. They have practically endless amounts of tutorials on Photoshop, Illustrator, and Web Development.</p>
<p><br class="spacer_" /></p>
<h3><a href="http://www.webdesignerdepot.com/">3. Webdesigner Depot</a></h3>
<p><img class="alignnone size-full wp-image-54" title="Webdesigner Depot" src="http://cyclonicstudios.com/wp-content/uploads/2009/06/webdesignerdepot.png" alt="Webdesigner Depot" width="330" height="164" /></p>
<p>Webdesigner Depot is another site filled with articles written by people from the web design community. There are some great articles here about design, web development, graphics, and inspiration. There is, in my opinion, a little more variety in the posts here than on other sites.</p>
<p><br class="spacer_" /></p>
<h3><a href="http://blog.spoongraphics.co.uk/">4. Blog.SpoonGraphics</a></h3>
<p><img class="alignnone size-full wp-image-50" title="Blog.SpoonGraphics" src="http://cyclonicstudios.com/wp-content/uploads/2009/06/spoongraphics.png" alt="Blog.SpoonGraphics" width="242" height="152" /></p>
<p>Blog.SpoonGraphics is the blog of a very talented graphic web designer. Chris Spooner writes tutorials expaining most of what he knows. There are some really nice, detailed Illustrator tutorials on this blog, along with lots of freebies and collections.</p>
<p><br class="spacer_" /></p>
<h3><a href="http://veerle.duoh.com/">5. Veerle&#8217;s Blog</a></h3>
<p><img class="alignnone size-full wp-image-53" title="Veerle's Blog" src="http://cyclonicstudios.com/wp-content/uploads/2009/06/veerlesblog.png" alt="Veerle's Blog" width="336" height="124" /></p>
<p>Veerle&#8217;s Blog covers a very wide spectrum in terms of content. Everything from science to CSS tricks to architecture, Veerle&#8217;s Blog&#8217;s got it. Its a fun read, because you never really know what kind of thing will be published next.</p>
<p><br class="spacer_" /></p>
<h3><a href="http://www.tutorial9.net/">6. Tutorial9</a></h3>
<p><img class="alignnone size-full wp-image-51" title="Tutorial9" src="http://cyclonicstudios.com/wp-content/uploads/2009/06/tutorial9.png" alt="Tutorial9" width="256" height="88" /></p>
<p>Tutorial9 is a site dedicated to Photoshop, Photography, and Web/Blogging tutorials. All of the tutorials are very high quality, and there are tons of them. Tutorial9 also gives you access to lots of free resources, like icons, photos, and vector packs. A great site to subscribe to!</p>
<p><br class="spacer_" /></p>
<h3><a href="http://www.fudgegraphics.com/">7. FudgeGraphics</a></h3>
<p><img class="alignnone size-full wp-image-44" title="fudgegraphics" src="http://cyclonicstudios.com/wp-content/uploads/2009/06/fudgegraphics.png" alt="fudgegraphics" width="537" height="57" /></p>
<p>FudgeGraphics is the blog of the talented graphic designer, Franz Jeitz. There are lots of freebies on this site, including brushes, textures and wallpapers. Franz also writes tutorials, focusing on photoshop, sharing some of his tricks. All of his articles are interesting and useful; a good read!</p>
<p><br class="spacer_" /></p>
<h3><a href="http://www.spoonfeddesign.com/">8. Spoonfed Design</a></h3>
<p><img class="alignnone size-full wp-image-49" title="spoonfed" src="http://cyclonicstudios.com/wp-content/uploads/2009/06/spoonfed.png" alt="spoonfed" width="325" height="141" /></p>
<p>Spoonfed Design is a great site to look for tips, tricks and tutorials about illustrator, photoshop, freelancing, and web design. This is another great addition to your arsenal of tutorial sites. Featuring a daily inspiration and a community blog, SFD is a great site to always have your eye on.</p>
<p><br class="spacer_" /></p>
<h3><a href="http://www.myinkblog.com/">9. My Ink Blog</a></h3>
<p><img class="alignnone size-full wp-image-45" title="myinkblog" src="http://cyclonicstudios.com/wp-content/uploads/2009/06/myinkblog.png" alt="myinkblog" width="457" height="140" /></p>
<p>My Ink Blog is truly &#8220;a resource for all things graphic and web design.&#8221; Here there are tutorials, interviews, freebies, and some really interesting and intriguing articles. A very useful resource at My Ink Blog is Andrew Houle&#8217;s &#8220;MyInkTrail,&#8221; which is a great way to find new, helpful RSS feeds.</p>
<p><br class="spacer_" /></p>
<h3>And of Course, <a href="http://cyclonicstudios.com/">10. Cyclonic Studios</a></h3>
<p><img class="alignnone size-full wp-image-43" title="cyclonicstudios" src="http://cyclonicstudios.com/wp-content/uploads/2009/06/cyclonicstudios.png" alt="cyclonicstudios" width="461" height="127" /></p>
<p>(I had to include some self-endorsement). I just started blogging a day ago, so there isn&#8217;t a ton here yet, but I promise for a post a day, whether it be inspiration, a collection like this, tip and tricks, or a tutorial. Drop by every once in a while, or you could subscribe to my feed and follow me on twitter to stay up to date!</p>
<p><br class="spacer_" /></p>
<p>Thanks for reading, I hope this helped you find some new sites about graphic design and web development. Later!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cyclonicstudios.com/10-great-sites-for-learning-graphic-and-web-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 Simple Ways to Make an Ugly Website</title>
		<link>http://www.cyclonicstudios.com/5-simple-ways-to-make-an-ugly-website/</link>
		<comments>http://www.cyclonicstudios.com/5-simple-ways-to-make-an-ugly-website/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 16:04:20 +0000</pubDate>
		<dc:creator>Cyclonic</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://cyclonicstudios.com/?p=8</guid>
		<description><![CDATA[Hi, this is Graham. This is actually my first real entry, so subscribe to my feed, and share it in as many ways as you can (don&#8217;t worry, I&#8217;ve got links at the bottom). Anyway, my first lesson is how to make a hideous website. There are plenty of very poorly designed sites out there. [...]]]></description>
			<content:encoded><![CDATA[<p>Hi, this is Graham. This is actually my first real entry, so subscribe to my feed, and share it in as many ways as you can (don&#8217;t worry, I&#8217;ve got links at the bottom).</p>
<p>Anyway, my first lesson is how to make a hideous website. There are plenty of very poorly designed sites out there. So here&#8217;s a couple tips to help you on your way to a really terrible-looking site.</p>
<p><span id="more-8"></span></p>
<h3>1. The more hues in your gradients, the better!</h3>
<p>Gradients than span across the color table generally detract from any color scheme you might have had. Oh, and its really handy because Photoshop comes packaged with a couple of these gradients.</p>
<div class="mceTemp">
<dl id="attachment_9" class="wp-caption alignnone" style="width: 510px;">
<dt class="wp-caption-dt"><img class="size-full wp-image-9" title="badgradients" src="http://cyclonicstudios.com/wp-content/uploads/2009/06/badgradients.png" alt="Wide-Spectrum Gradients" width="500" height="300" /></dt>
</dl>
</div>
<div class="hr">&nbsp;</div>
<h3>2. <strong>Use gifs for all your images.</strong></h3>
<p>Nothing like a 256-color palette to make your website unattractive. Gifs use dithering to make the gradients appear smooth, but it is nothing like the perfect smoothness of a PNG.</p>
<div class="mceTemp">
<dl id="attachment_10" class="wp-caption alignnone" style="width: 510px;">
<dt class="wp-caption-dt"><img class="size-full wp-image-10" title="gifvspng" src="http://cyclonicstudios.com/wp-content/uploads/2009/06/gifvspng.png" alt="Just admire the quality!" width="500" height="300" /></dt>
</dl>
</div>
<div class="hr">&nbsp;</div>
<h3>3. <strong>Use compressed JPEGs.</strong></h3>
<p>Compressed JPEGs look even worse than gifs. The compression algorithm gives JPEGs a signature fuzzy-outline look.</p>
<div class="mceTemp">
<dl id="attachment_11" class="wp-caption alignnone" style="width: 510px;">
<dt class="wp-caption-dt"><img class="size-full wp-image-11" title="compvsuncomp" src="http://cyclonicstudios.com/wp-content/uploads/2009/06/compvsuncomp.png" alt="Quantity over Quality!" width="500" height="300" /></dt>
</dl>
</div>
<div class="hr">&nbsp;</div>
<h3>4. <strong>Make your text hard to read.</strong></h3>
<p>Content really only matters a little, right? So why not use fonts crunched together so tightly and so small you can&#8217;t read what they say?<br />
<span style="font-size: 4pt; font-stretch: -50; line-height: 4pt;">This content is actually very important, so its good that there are CSS properties that let us fit the most possible text into a small space; who cares if people need a microscope to read your text! Content really only matters a little, right? So why not use fonts crunched together so tightly and so small you can&#8217;t read what they say? This content is actually very important, so its good that there are CSS properties that let us fit the most possible text into a small space; who cares if people need a microscope to read your text! Content really only matters a little, right? So why not use fonts crunched together so tightly and so small you can&#8217;t read what they say? This content is actually very important, so its good that there are CSS properties that let us fit the most possible text into a small space; who cares if people need a microscope to read your text!</span></p>
<div class="hr">&nbsp;</div>
<h3>5. <strong>Use very overused fonts.</strong></h3>
<p>Millions of people use Comic Sans and Papyrus, why shouldn&#8217;t I?</p>
<p><img class="alignnone size-full wp-image-12" title="overused" src="http://cyclonicstudios.com/wp-content/uploads/2009/06/overused.png" alt="overused" width="500" height="100" /></p>
<div class="hr">&nbsp;</div>
<p>Make sure to use all these techniques in your next web design to make it as amateur as possible. Thanks for reading!</p>
<p>Disclaimer: I have a sarcastic sense of humor. The images used in this entry were meant to look really, really bad.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cyclonicstudios.com/5-simple-ways-to-make-an-ugly-website/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

