<?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>JasonCypret.com &#187; CSS</title>
	<atom:link href="http://jasoncypret.com/tag/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://jasoncypret.com</link>
	<description>I am a designer, developer, photographer, and filmmaker based in Dallas, Texas. I create clean websites that get noticed!</description>
	<lastBuildDate>Mon, 06 Feb 2012 03:30:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Target IE with CSS Hacks</title>
		<link>http://jasoncypret.com/target-ie-with-css-hacks/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=target-ie-with-css-hacks</link>
		<comments>http://jasoncypret.com/target-ie-with-css-hacks/#comments</comments>
		<pubDate>Wed, 19 Oct 2011 15:44:59 +0000</pubDate>
		<dc:creator>Jason Cypret</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Snippits]]></category>

		<guid isPermaLink="false">http://jasoncypret.com/?p=2672</guid>
		<description><![CDATA[<p>Posted in <a href="http://jasoncypret.com/category/code/" title="Code">Code</a><a href="http://jasoncypret.com/category/development/" title="Development">Development</a><a href="http://jasoncypret.com/category/web-design/" title="Web Design">Web Design</a></p><p>Note: these hacks should only be used as a last resort. You should always use conditional comments over hacks. But if you are limited in the codebase, and cannot add comments then these hacks will come in handy. These are pretty widely available, so this is more of a bookmark for me.</p>

.selector {
	background: red; /*  ... <a href="http://jasoncypret.com/target-ie-with-css-hacks/">Read more</a>]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://jasoncypret.com/category/code/" title="Code">Code</a><a href="http://jasoncypret.com/category/development/" title="Development">Development</a><a href="http://jasoncypret.com/category/web-design/" title="Web Design">Web Design</a></p><p>Note: these hacks should only be used as a last resort. You should always use conditional comments over hacks. But if you are limited in the codebase, and cannot add comments then these hacks will come in handy. These are pretty widely available, so this is more of a bookmark for me.</p>
<pre name="code" class="css">
.selector {
	background: red; /* all browsers */
	background : green\9; /* IE8 and below */
	*background : yellow; /* IE7 and below */
	_background : orange; /* IE6 */
}
</pre>
<p>via: <a href="http://net.tutsplus.com/tutorials/html-css-techniques/quick-tip-how-to-target-ie6-ie7-and-ie8-uniquely-with-4-characters/">NetTuts</a></p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vertical Rhythm: Setting A Baseline</title>
		<link>http://jasoncypret.com/vertical-rhythm-setting-a-baseline/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=vertical-rhythm-setting-a-baseline</link>
		<comments>http://jasoncypret.com/vertical-rhythm-setting-a-baseline/#comments</comments>
		<pubDate>Mon, 14 Mar 2011 17:01:00 +0000</pubDate>
		<dc:creator>Jason Cypret</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[1.5 em]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Line height]]></category>

		<guid isPermaLink="false">http://jasoncypret.com/vertical-rhythm-setting-a-baseline/</guid>
		<description><![CDATA[<p>Posted in <a href="http://jasoncypret.com/category/development/" title="Development">Development</a><a href="http://jasoncypret.com/category/web-design/" title="Web Design">Web Design</a></p>
html, body {
	line-height: 1.5em;
}



Leading (which rhymes with “wedding”) is a typographical term from way back when typographers manually set type in letterpress machines and the like. The term refers to the act of placing lead between lines of type in order to add vertical space. In CSS, we call this line-height.

Line height should be around  ... <a href="http://jasoncypret.com/vertical-rhythm-setting-a-baseline/">Read more</a>]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://jasoncypret.com/category/development/" title="Development">Development</a><a href="http://jasoncypret.com/category/web-design/" title="Web Design">Web Design</a></p><div>
<pre name="code" class="css">html, body {
	line-height: 1.5em;
}
</pre>
</div>
<div></div>
<div>Leading (which rhymes with “wedding”) is a typographical term from way back when typographers manually set type in letterpress machines and the like. The term refers to the act of placing lead between lines of type in order to add vertical space. In CSS, we call this line-height.</div>
<div></div>
<div>Line height should be around 140%. This isn’t a great number to work with, and it’s only a general rule, so we’ll use 150% (or 1.5 em). This way, we simply need to multiply the font size by one and a half to determine our leading.</div>
<div></div>
<div>Some general rules for leading:</div>
<div></div>
<div>
<ul>
<li><span class="Apple-style-span" style="font-size: 13px; line-height: 13px; ">with continuous copy, use large leading;</span></li>
<li><span class="Apple-style-span" style="font-size: 13px; line-height: 13px; ">with light text on dark background, use large leading;</span></li>
<li><span class="Apple-style-span" style="font-size: 13px; line-height: 13px; ">with long line lengths, use large leading;</span></li>
<li><span class="Apple-style-span" style="font-size: 13px; line-height: 13px; ">with large x-height, use large leading;</span></li>
<li><span class="Apple-style-span" style="font-size: 13px; line-height: 13px; ">with short burst of information, use small leading.</span></li>
<li><span class="Apple-style-span" style="font-size: 13px; line-height: 13px; ">If you used a 16-pixel font size, then your line height will be 24 pixels (16 pixels × 1.5 em = 24 pixels). If you used a 12-pixel font size, then your line height will be 18 pixels (12 pixels × 1.5 em = 18 pixels).</span></li>
</ul>
</div>
<div>Via <a href="http://www.smashingmagazine.com/2011/03/14/technical-web-typography-guidelines-and-techniques/">Smashing</a></div>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Think3r inc.</title>
		<link>http://jasoncypret.com/think3r-inc/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=think3r-inc</link>
		<comments>http://jasoncypret.com/think3r-inc/#comments</comments>
		<pubDate>Fri, 19 Nov 2010 18:58:46 +0000</pubDate>
		<dc:creator>Jason Cypret</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[entrepreneur]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[idea incubator]]></category>
		<category><![CDATA[partners]]></category>
		<category><![CDATA[Start Up]]></category>
		<category><![CDATA[think3r]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://jasoncypret.com/?p=2398</guid>
		<description><![CDATA[<p>Posted in <a href="http://jasoncypret.com/category/development/" title="Development">Development</a><a href="http://jasoncypret.com/category/portfolio/" title="Portfolio">Portfolio</a><a href="http://jasoncypret.com/category/portfolio/web-portfolio/" title="Web">Web</a><a href="http://jasoncypret.com/category/web-design/" title="Web Design">Web Design</a></p><p>Think3r is an idea incubator that partners with entrepreneurs to create unique web experiences. Think3r’s projects span many industries including finance, photography, insurance, online dating, and events. Some of our released projects are TinyPress.org, and QuoteGoat.com. Think3r is a team of developers and designers based in Dallas, Texas. We can&#8217;t wait to partner with you!</p>
<p></p>
]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://jasoncypret.com/category/development/" title="Development">Development</a><a href="http://jasoncypret.com/category/portfolio/" title="Portfolio">Portfolio</a><a href="http://jasoncypret.com/category/portfolio/web-portfolio/" title="Web">Web</a><a href="http://jasoncypret.com/category/web-design/" title="Web Design">Web Design</a></p><p><a href="http://think3r.com">Think3r</a> is an idea incubator that partners with entrepreneurs to create unique web experiences. Think3r’s projects span many industries including finance, photography, insurance, online dating, and events. Some of our released projects are TinyPress.org, and QuoteGoat.com. Think3r is a team of developers and designers based in Dallas, Texas. We can&#8217;t wait to partner with you!</p>
<p><a href="http://jasoncypret.com/wp-content/uploads/2010/11/THINK3R.jpg"><img src="http://jasoncypret.com/wp-content/uploads/2010/11/THINK3R-752x733.jpg" alt="" title="THINK3R" width="752" height="733" class="aligncenter size-large wp-image-2479" /></a></p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery MagicLine Navigation</title>
		<link>http://jasoncypret.com/jquery-magicline-navigation/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=jquery-magicline-navigation</link>
		<comments>http://jasoncypret.com/jquery-magicline-navigation/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 15:47:03 +0000</pubDate>
		<dc:creator>Jason Cypret</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Link]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://jasoncypret.com/?p=1794</guid>
		<description><![CDATA[<p>Posted in <a href="http://jasoncypret.com/category/development/" title="Development">Development</a><a href="http://jasoncypret.com/category/link/" title="Link">Link</a></p><p>Chris Coyer &#8220;da css man&#8221; wrote a great post over the moving line navigation. Hey guess what? I use something very simulator on my site except I opted for a static width of the highlight. Anyway it&#8217;s a pretty sweet and very easy to understand.

$(function(){
    var $el, leftPos, newWidth,
     ... <a href="http://jasoncypret.com/jquery-magicline-navigation/">Read more</a>]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://jasoncypret.com/category/development/" title="Development">Development</a><a href="http://jasoncypret.com/category/link/" title="Link">Link</a></p><p>Chris Coyer &#8220;da css man&#8221; wrote a great post over the moving line navigation. Hey guess what? I use something very simulator on my site except I opted for a static width of the highlight. Anyway it&#8217;s a pretty sweet and very easy to understand.<br />
<code><br />
$(function(){<br />
    var $el, leftPos, newWidth,<br />
        $mainNav = $(&quot;#example-one&quot;),<br />
        pageOffset = $mainNav.offset().left;</p>
<p>    // Fixing the offset if the window changes size<br />
    $(window).resize(function() {<br />
        pageOffset = $mainNav.offset().left;<br />
    });</p>
<p>    $mainNav.append(&quot;&lt;li id=&#039;magic-line&#039;&gt;&lt;/li&gt;&quot;);<br />
    var $magicLine = $(&quot;#magic-line&quot;);</p>
<p>    $magicLine<br />
        .width($(&quot;.current_page_item&quot;).width())<br />
        .css(&quot;left&quot;, $(&quot;.current_page_item a&quot;).offset().left - pageOffset)<br />
        .data(&quot;origLeft&quot;, $magicLine.offset().left - pageOffset)<br />
        .data(&quot;origWidth&quot;, $magicLine.width());</p>
<p>    $(&quot;#example-one li&quot;).find(&quot;a&quot;).hover(function() {<br />
        $el = $(this);<br />
        leftPos = $el.offset().left - pageOffset;<br />
        newWidth = $el.parent().width();<br />
        $magicLine.stop().animate({<br />
            left: leftPos,<br />
            width: newWidth<br />
        });<br />
    }, function() {<br />
        $magicLine.stop().animate({<br />
            left: $magicLine.data(&quot;origLeft&quot;),<br />
            width: $magicLine.data(&quot;origWidth&quot;)<br />
        });<br />
    });<br />
});<br />
</code></p>
<p>Check the demo out at <a href="http://css-tricks.com/jquery-magicline-navigation/">CSSTricks</a></p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>True Sign Up Onsite</title>
		<link>http://jasoncypret.com/true-sign-up-onsite/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=true-sign-up-onsite</link>
		<comments>http://jasoncypret.com/true-sign-up-onsite/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 16:15:07 +0000</pubDate>
		<dc:creator>Jason Cypret</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Fireworks]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://jasoncypret.com/?p=2195</guid>
		<description><![CDATA[<p>Posted in <a href="http://jasoncypret.com/category/portfolio/" title="Portfolio">Portfolio</a><a href="http://jasoncypret.com/category/portfolio/web-portfolio/" title="Web">Web</a></p><p></p>
<p>I did this project at Metric Interactive for True.com. True wanted new sign up pages but they had to keep some of the site characteristics. I came up with several designs and actually one of these over took the best performer of all time. I was super excited about that.</p>
<p></p>
]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://jasoncypret.com/category/portfolio/" title="Portfolio">Portfolio</a><a href="http://jasoncypret.com/category/portfolio/web-portfolio/" title="Web">Web</a></p><p><a href="http://jasoncypret.com/wp-content/uploads/2010/04/Sign-Up-Profile-At-Begining.jpg"><img src="http://jasoncypret.com/wp-content/uploads/2010/04/Sign-Up-Profile-At-Begining-752x651.jpg" alt="" title="Sign-Up-Profile-At-Begining" width="752" height="651" class="aligncenter size-large wp-image-2197" /></a></p>
<p>I did this project at Metric Interactive for True.com. True wanted new sign up pages but they had to keep some of the site characteristics. I came up with several designs and actually one of these over took the best performer of all time. I was super excited about that.</p>
<p><a href="http://jasoncypret.com/wp-content/uploads/2010/04/Sign-Up-All-In-One-Pick-Plan.jpg"><img src="http://jasoncypret.com/wp-content/uploads/2010/04/Sign-Up-All-In-One-Pick-Plan-265x265.jpg" alt="" title="Sign-Up-All-In-One-Pick-Plan" width="265" height="265" class="alignleft size-thumbnail wp-image-2199" /></a><a href="http://jasoncypret.com/wp-content/uploads/2010/04/Sign-Up-All-In-One.jpg"><img src="http://jasoncypret.com/wp-content/uploads/2010/04/Sign-Up-All-In-One-265x265.jpg" alt="" title="Sign-Up-All-In-One" width="265" height="265" class="alignleft size-thumbnail wp-image-2198" /></a></p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OS and Browser Stats for JC.COM</title>
		<link>http://jasoncypret.com/operating-system-and-browser-stats-for-jccom/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=operating-system-and-browser-stats-for-jccom</link>
		<comments>http://jasoncypret.com/operating-system-and-browser-stats-for-jccom/#comments</comments>
		<pubDate>Tue, 17 Feb 2009 23:45:41 +0000</pubDate>
		<dc:creator>Jason Cypret</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[ie6]]></category>
		<category><![CDATA[ie7]]></category>
		<category><![CDATA[macintosh]]></category>
		<category><![CDATA[operating]]></category>
		<category><![CDATA[safari]]></category>
		<category><![CDATA[Stylesheets]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://jasoncypret.com/?p=624</guid>
		<description><![CDATA[<p>Posted in <a href="http://jasoncypret.com/category/web-design/" title="Web Design">Web Design</a></p><p></p>
<p>This is a quick little post. I was rooting around my cPanel and thought I&#8217;d check out the OS and Browser stats. I don&#8217;t usually care about this data, so I rarely check in on it. I typically just care about page views and refers. Anyway, I found it very interesting the when I viewed  ... <a href="http://jasoncypret.com/operating-system-and-browser-stats-for-jccom/">Read more</a>]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://jasoncypret.com/category/web-design/" title="Web Design">Web Design</a></p><p><img src="http://jasoncypret.com/wp-content/uploads/2009/02/browser-stats.jpg" alt="browser-stats" title="browser-stats" width="586" height="163" class="alignnone size-full wp-image-707" /></p>
<p>This is a quick little post. I was rooting around my cPanel and thought I&#8217;d check out the OS and Browser stats. I don&#8217;t usually care about this data, so I rarely check in on it. I typically just care about page views and refers. Anyway, I found it very interesting the when I viewed the results. I thought that there would be much more traffic from via Mac computers. However, since I work on a PC during work it is understandable that some of the numbers could be skewed. Still very interesting. Maybe I should do some windows tips now&#8230;HA HA, just kidding.</p>
<p>The next part, the browser stats, is what I really found the most interesting. Being a web designer, I have to design and code for the lowest common denominator. Usually this is the dreaded IE6. While I have respected people like <a href="http://www.jdidit.com/<br />
">Jason Schuller</a> for totally <a href="http://www.jdidit.com/2008/11/18/sorry-but-no-ie6-for-jdiditcom-ever/">dropping support for IE6</a> I found that it was best to support it for a bit longer. However With these numbers I find it very compelling to drop support for IE6 altogether. I mean when I think of the waisted development time spent making separate style-sheets and hacks for IE6, all for the low numbers I am receiving from IE6 users, it makes me want to stop once and for all. So moving forward I will no longer develop for IE6 on any personal sites nor on small website projects. Its just not worth my time.</p>
<p><a href="#respond">What do you think?</a></p>
<table width="100%" border="1" cellpadding="5" cellspacing="0" style="margin-top:25px;">
<tbody>
<tr bgcolor="#A7B9CB">
<th>
<div align="left"><strong style="font-weight:bold; color:#000000;">Operating Systems (Top 10) for JasonCypret.com</strong></div>
</th>
<th width="80" bgcolor="#A7B9CB">
<div align="left"><strong style="font-weight:bold; color:#000000;">Hits</strong></div>
</th>
<th width="80" bgcolor="#A7B9CB">
<div align="left"><strong style="font-weight:bold; color:#000000;">Percent</strong></div>
</th>
</tr>
<tr>
<td><strong style="font-weight:bold;">Windows</strong></td>
<td>152795</td>
<td>64.8 %</td>
</tr>
<tr>
<td><strong style="font-weight:bold;" >Macintosh</strong></td>
<td>73483</td>
<td>31.2 %</td>
</tr>
<tr>
<td>Unknown</td>
<td>5609</td>
<td>2.3 %</td>
</tr>
<tr>
<td>Linux</td>
<td>3587</td>
<td>1.5 %</td>
</tr>
<tr>
<td>Sony PlayStation Portable</td>
<td>4</td>
<td>0 %</td>
</tr>
</tbody>
</table>
<table width="100%" border="1" cellpadding="5" cellspacing="0" style="margin-top:25px;">
<tbody>
<tr bgcolor="#A7B9CB">
<th>
<div align="left"><strong style="font-weight:bold; color:#000000;">Browsers (Top 10) for JasonCypret.com</strong></div>
</th>
<th width="80" bgcolor="#A7B9CB">
<div align="left"><strong style="font-weight:bold; color:#000000;">Hits</strong></div>
</th>
<th width="80" bgcolor="#A7B9CB">
<div align="left"><strong style="font-weight:bold; color:#000000;">Percent</strong></div>
</th>
</tr>
<tr>
<td><strong style="font-weight:bold;">Firefox</strong></td>
<td>111868</td>
<td>47.5 %</td>
</tr>
<tr>
<td><strong style="font-weight:bold;">MS Internet Explorer</strong></td>
<td>53698</td>
<td>22.8 %</td>
</tr>
<tr>
<td>
<table width="100%" cellpadding="5" cellspacing="0" style="margin-left:20px;">
<tr>
<td><strong style="font-weight:bold">VERSIONS</strong></td>
<td><strong style="font-weight:bold;">HITS</strong></td>
<td><strong style="font-weight:bold;">PERCENT</strong></td>
</tr>
<tr>
<td width="140">Msie 8.0</td>
<td width="105">3188</td>
<td width="631">1.3 %</td>
</tr>
<tr>
<td>Msie 7.0</td>
<td>38627</td>
<td>16.4 %</td>
</tr>
<tr>
<td>Msie 6.5</td>
<td>4</td>
<td>0 %</td>
</tr>
<tr>
<td>Msie 6.0</td>
<td>11691</td>
<td>4.9 %</td>
</tr>
</table>
</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>Safari</td>
<td>50125</td>
<td>21.2 %</td>
</tr>
<tr>
<td>Google Chrome</td>
<td>10333</td>
<td>4.3 %</td>
</tr>
<tr>
<td>Unknown</td>
<td>3966</td>
<td>1.6 %</td>
</tr>
<tr>
<td>Opera</td>
<td>2916</td>
<td>1.2 %</td>
</tr>
<tr>
<td>Mozilla</td>
<td>1485</td>
<td>0.6 %</td>
</tr>
<tr>
<td>RSSOwl (RSS Reader)</td>
<td>384</td>
<td>0.1 %</td>
</tr>
<tr>
<td>Netscape</td>
<td>180</td>
<td>0 %</td>
</tr>
<tr>
<td>Camino</td>
<td>148</td>
<td>0 %</td>
</tr>
<tr>
<td>Others</td>
<td>375</td>
<td>0.1 %</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Design Inspiration Coming at Ya!</title>
		<link>http://jasoncypret.com/design-inspiration-coming-at-ya/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=design-inspiration-coming-at-ya</link>
		<comments>http://jasoncypret.com/design-inspiration-coming-at-ya/#comments</comments>
		<pubDate>Tue, 17 Feb 2009 20:29:10 +0000</pubDate>
		<dc:creator>Jason Cypret</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://jasoncypret.com/?p=596</guid>
		<description><![CDATA[<p>Posted in <a href="http://jasoncypret.com/category/reviews/" title="Reviews">Reviews</a><a href="http://jasoncypret.com/category/web-design/" title="Web Design">Web Design</a></p><p>I&#8217;ve been digging on some great site designs that I wanted to share. These sites are so well done, they really make me want to start on a new design and feature set. Enjoy some design inspiration.</p>
Alex  Buga
<p>
Alex Buga has got a great sense of style, but what I like most about it is  ... <a href="http://jasoncypret.com/design-inspiration-coming-at-ya/">Read more</a>]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://jasoncypret.com/category/reviews/" title="Reviews">Reviews</a><a href="http://jasoncypret.com/category/web-design/" title="Web Design">Web Design</a></p><p>I&#8217;ve been digging on some great site designs that I wanted to share. These sites are so well done, they really make me want to start on a new design and feature set. Enjoy some design inspiration.</p>
<h4>Alex  Buga</h4>
<p>
<a href="http://jasoncypret.com/design-inspiration-coming-at-ya/alexbuga/" rel="attachment wp-att-604"><img src="http://jasoncypret.com/wp-content/uploads/2009/02/alexbuga-300x204.png" alt="alexbuga" title="alexbuga" width="300" height="204" class="alignleft size-medium wp-image-604" /></a><a href="http://www.alexbuga.com/v8/">Alex Buga</a> has got a great sense of style, but what I like most about it is the layout and how it was completely re-imagined. Full of Ajax greatness too!
</p>
<h4>Nine Lion Design</h4>
<p>
<a href="http://jasoncypret.com/design-inspiration-coming-at-ya/nineliondesign/" rel="attachment wp-att-606"><img src="http://jasoncypret.com/wp-content/uploads/2009/02/nineliondesign-300x204.png" alt="nineliondesign" title="nineliondesign" width="300" height="204" class="alignleft size-medium wp-image-606" /></a><a href="http://www.nineliondesign.com/">Nine Lion Design</a> is rocking a wood based design, but the wood has depth and a sense of motion. Love the colors and the overall idea.
</p>
<h4>Black Wave Creative</h4>
<p>
<a href="http://jasoncypret.com/design-inspiration-coming-at-ya/blackwavecreative/" rel="attachment wp-att-605"><img src="http://jasoncypret.com/wp-content/uploads/2009/02/blackwavecreative-300x208.png" alt="blackwavecreative" title="blackwavecreative" width="300" height="208" class="alignleft size-medium wp-image-605" /></a><a href="http://blackwavecreative.com/">Black Wave Creative</a> has got the grunge look down. Sometimes grunge sites can be overwhelming and depressing if not done right.  Black Wave Creative is not one of those sites.
</p>
<h4>45royale</h4>
<p>
<a href="http://jasoncypret.com/design-inspiration-coming-at-ya/45royale/" rel="attachment wp-att-603"><img src="http://jasoncypret.com/wp-content/uploads/2009/02/45royale-300x208.png" alt="45royale" title="45royale" width="300" height="208" class="alignleft size-medium wp-image-603" /></a><a href="http://www.45royale.com/">45royale</a> has great colors, but its not only the colors that make it a great site. The site is great because of the way they are using different layouts throughout the site.
</p>
<h4>Old Loft</h4>
<p>
<a href="http://jasoncypret.com/design-inspiration-coming-at-ya/oldloft/" rel="attachment wp-att-607"><img src="http://jasoncypret.com/wp-content/uploads/2009/02/oldloft-300x272.png" alt="oldloft" title="oldloft" width="300" height="272" class="alignleft size-medium wp-image-607" /></a><a href="http://oldloft.com/">Old Loft</a> is just well done design met with well done coding. Kudos.
</p>
<h4>Works4Sure</h4>
<p>
<a href="http://jasoncypret.com/design-inspiration-coming-at-ya/works4sure/" rel="attachment wp-att-602"><img src="http://jasoncypret.com/wp-content/uploads/2009/02/works4sure-300x255.png" alt="works4sure" title="works4sure" width="300" height="255" class="alignleft size-medium wp-image-602" /></a><a href="http://www.works4sure.nl/">Works4Sure</a> Has a great natural feel to it. I love the paper clip and note elements.</p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Geek Week &#8211; jQuery, PHP, WordPress, Design, CSS</title>
		<link>http://jasoncypret.com/geek-week-jquery-php-wordpress-design-css/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=geek-week-jquery-php-wordpress-design-css</link>
		<comments>http://jasoncypret.com/geek-week-jquery-php-wordpress-design-css/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 18:44:26 +0000</pubDate>
		<dc:creator>Jason Cypret</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[web 2.0]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://jasoncypret.com/?p=589</guid>
		<description><![CDATA[<p>Posted in <a href="http://jasoncypret.com/category/development/" title="Development">Development</a><a href="http://jasoncypret.com/category/web-design/" title="Web Design">Web Design</a></p><p></p>
<p>I&#8217;m coming off my long hiatus since, well Christmas.  I’ve been crazy busy lately, but I have recently been able to catch my breath and check out some great tutorials, blogs, and design inspiration found all around the interwebs.</p>
jQuery
<p>I&#8217;ve got a lot of jQuery links for ya. I&#8217;ve been doing quite a bit of  ... <a href="http://jasoncypret.com/geek-week-jquery-php-wordpress-design-css/">Read more</a>]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://jasoncypret.com/category/development/" title="Development">Development</a><a href="http://jasoncypret.com/category/web-design/" title="Web Design">Web Design</a></p><p><img src="http://jasoncypret.com/wp-content/uploads/2008/11/jquery-links.jpg" alt="jquery" /></p>
<p>I&#8217;m coming off my long hiatus since, well Christmas.  I’ve been crazy busy lately, but I have recently been able to catch my breath and check out some great tutorials, blogs, and design inspiration found all around the interwebs.</p>
<h4>jQuery</h4>
<p>I&#8217;ve got a lot of jQuery links for ya. I&#8217;ve been doing quite a bit of jQuery work lately.</p>
<ul>
<li><a href="http://blog.brenelz.com/2009/01/31/animate-text-with-jquery-easing-screencast/">Animate Text with jQuery Easing</a> </li>
<li><a href="http://nettuts.com/tutorials/javascript-ajax/creating-a-filterable-portfolio-with-jquery/">Creating a “Filterable” Portfolio with jQuery</a> </li>
<li><a href="http://www.marcofolio.net/webdesign/the_iphone_unlock_screen_in_xhtml_css_and_jquery.html">Creating the iPhone unlock screen using xHTML, CSS and jQuery</a> </li>
<li><a href="http://css-tricks.com/the-iphone-springboard-in-xhtml-css-and-jquery/">The iPhone Springboard in XHTML, CSS and jQuery</a> </li>
<li><a href="http://trevordavis.net/blog/tutorial/use-jquery-to-enhance-your-wordpress-comment-form/">Use jQuery to Enhance your WordPress Comment Form</a></li>
<li><a href="http://buildinternet.com/2009/01/changing-form-input-styles-on-focus-with-jquery/">Changing Form Input Styles on Focus with jQuery</a> </li>
<li><a href="http://www.kriesi.at/archives/apple-menu-improved-with-jquery">Create an apple style menu and improve it via jQuery</a> </li>
<li> <a href="http://css-tricks.com/color-fading-menu-with-jquery/">Color Fading Menu with jQuery</a> </li>
<li><a href="http://www.thatagency.com/design-studio-blog/2009/01/refreshing-an-element-at-a-set-time-interval-using-jquery-and-a-sprinkle-of-ajax/">Refreshing an element at intervals using jQuery and Ajax</a></li>
<li> <a href="http://flowplayer.org/tools/scrollable.html">Scroll your HTML with jquery scrollable</a></li>
<li> <a href="http://www.ezjquery.com/cgi-bin/webapp.rb?r=list&#038;stype=jst&#038;lid=1210862049#displaycc">Browser detect with jQuery</a></li>
</ul>
<h4>CSS &amp; XHTML</h4>
<p>Here&#8217;s some fun and usefull CSS tuts, and tricks.</p>
<ul>
<li><a href="http://blog.adamoliver.net/tutorials/cross-browser-transparent-div-with-opaque-content/">Cross Browser Transparent Div With Opaque Content</a> </li>
<li><a href="http://nettuts.com/videos/screencasts/a-detailed-look-at-the-960-css-framework/">A Detailed Look at the 960 CSS Framework</a> </li>
<li><a href="http://css-tricks.com/rgba-browser-support/">RGBa Browser Support</a> </li>
<li><a href="http://blog.brenelz.com/2009/01/27/png-8-alpha-transparency-screencast/">PNG-8 Alpha Transparency &#8211; Works in IE6+</a> </li>
<li><a href="http://css-tricks.com/new-screencast-building-a-print-stylesheet/">New Screencast: Building a Print Stylesheet</a></li>
<li> <a href="http://www.typechart.com/">Typechart &#8211; Browse Web Type, Grab CSS.</a></li>
</ul>
<h4>PHP</h4>
<p>Roll your own MySQL and PHP powered CMS.</p>
<ul>
<li><a href="http://nettuts.com/articles/are-you-making-these-10-php-mistakes/">Are You Making These 10 PHP Mistakes</a> </li>
<li><a href="http://css-tricks.com/php-for-beginners-building-your-first-simple-cms/">PHP for Beginners: Building Your First Simple CMS</a> </li>
</ul>
<h4>WordPress</h4>
<p>More wordpress tidbits to improve yoru wordpress site.</p>
<ul>
<li><a href="http://www.smashingmagazine.com/2009/02/02/mastering-wordpress-shortcodes/">Mastering WordPress Shortcodes</a> </li>
<li><a href="http://www.earnersblog.com/digproof-your-wordpress/">Speed up WordPress</a> </li>
<li><a href="http://www.smashingmagazine.com/2009/01/26/10-steps-to-protect-the-admin-area-in-wordpress/">10 Steps To Protect The Admin Area In WordPress</a> </li>
<li><a href="http://nettuts.com/articles/general/15-tips-to-speed-up-your-website-and-optimize-your-code/">Tips to Speed Up Your Website</a> </li>
<li><a href="http://wpengineer.com/add-avatar-to-wordpress-default/">Add Avatar To WordPress Default</a> </li>
<li><a href="http://designm.ag/tutorials/wordpress-caption/">How to Easily Customize the WordPress Image Caption</a> </li>
</ul>
<h4>Design</h4>
<p>I&#8217;ve been doing a good amout of vector work lately. Check out these great tuts.</p>
<ul>
<li><a href="http://www.crestock.com/blog/photoshop/photoshop-tutorial-constructivist-propaganda-poster-159.aspx">Constructivist Propaganda Poster</a> </li>
<li><a href="http://psdtuts.com/articles/inspiration/40-mind-blowing-digital-space-paintings/">40 Mind-blowing Digital Space Paintings</a> </li>
<li><a href="http://vectortuts.com/tutorials/illustration/craft-a-vector-collegiate-notebook-design/">Craft a Vector Collegiate Notebook Design</a> </li>
<li><a href="http://pshero.com/archives/a-scrap-of-notebook-paper">A Scrap Of Notebook Paper</a> </li>
<li><a href="http://designm.ag/inspiration/textured-websites/">40 Textured Websites for Design Inspiration</a> </li>
<li><a title="120 Excellent Examples of CSS Horizantal Menu" href="http://www.csstea.com/css-gallery-news-and-resources/264-120-excellent-examples-of-css-horizantal-menu.html">120 Excellent Examples of CSS Horizantal Menu</a> </li>
<li><a href="http://www.smashingmagazine.com/2009/01/21/current-web-design-trends-for-2009/">More Web Design Trends For 2009</a> </li>
</ul>
<h4>Misc</h4>
<p>Since the economy is crap right now, unemployement is on the rise. Here&#8217;s a great list of jobs sites for web designers and developers.</p>
<ul>
<li><a href="http://www.webdesignerwall.com/general/jobs-for-designers-and-developers/">Jobs for Designers and Developers</a> </li>
</ul>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Vote for me please! I made the top 20!</title>
		<link>http://jasoncypret.com/vote-for-me-please-i-made-the-top-20/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=vote-for-me-please-i-made-the-top-20</link>
		<comments>http://jasoncypret.com/vote-for-me-please-i-made-the-top-20/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 23:40:24 +0000</pubDate>
		<dc:creator>Jason Cypret</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web Design Awards]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Coolest Blog Competition]]></category>

		<guid isPermaLink="false">http://jasoncypret.com/?p=549</guid>
		<description><![CDATA[<p>Posted in <a href="http://jasoncypret.com/category/web-design/" title="Web Design">Web Design</a></p><p></p>
<p>I really can&#8217;t believe it. There were 90+ websites selected for the initial competition. I was just lucky enough to I have been selected in the WP Freedom Blog coolest WordPress blog top 20! Thanks to all my subscribers, twitter followers, and friends who have wished me luck in this little contest. This just really  ... <a href="http://jasoncypret.com/vote-for-me-please-i-made-the-top-20/">Read more</a>]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://jasoncypret.com/category/web-design/" title="Web Design">Web Design</a></p><p><img src="http://jasoncypret.com/wp-content/uploads/2008/11/vote.jpg" alt="WP Freedom Blog coolest WordPress blog top 20" /></p>
<p>I really can&#8217;t believe it. There were 90+ websites selected for the initial competition. I was just lucky enough to I have been selected in the WP Freedom Blog coolest WordPress blog top 20! Thanks to all my subscribers, twitter followers, and friends who have wished me luck in this little contest. This just really gets me pumped to get this site completely where I want it, and to also start on a new design. JC-V4.</p>
<p>
<h4>But wait, the contest is not over</h4>
<p> I need your help to make it any further. You can vote for my site at the link below.
<ul>
<li><a href="http://wpwebhost.com/blog/vote-for-the-coolest-blog-powered-by-wordpress/">Vote for me here!</a></li>
</ul>
<p>Right now I am loosing big time, so help me not look so bad will ya! The votes will continue to be tabulated until December 1st, so you have until then. So as they say, &#8220;Vote early, and vote often.&#8221;</p>
<p>Thanks again for this honor!</p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Geek Week &#8211; Web Design, CSS, jQuery, PHP</title>
		<link>http://jasoncypret.com/geek-week-web-design-css-jquery-and-more/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=geek-week-web-design-css-jquery-and-more</link>
		<comments>http://jasoncypret.com/geek-week-web-design-css-jquery-and-more/#comments</comments>
		<pubDate>Tue, 04 Nov 2008 22:38:57 +0000</pubDate>
		<dc:creator>Jason Cypret</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Fireworks]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://jasoncypret.com/?p=500</guid>
		<description><![CDATA[<p>Posted in <a href="http://jasoncypret.com/category/web-design/" title="Web Design">Web Design</a></p><p></p>
<p>I have been geekn&#8217; out a lot lately reading some really great articles as well as learning some new techniques. There is a little bit of everything here and if you are a web developer it will come in handy. If you are not into jQuery skip this first section, as I have been really  ... <a href="http://jasoncypret.com/geek-week-web-design-css-jquery-and-more/">Read more</a>]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://jasoncypret.com/category/web-design/" title="Web Design">Web Design</a></p><p><img src="http://jasoncypret.com/wp-content/uploads/2008/11/jquery-links.jpg" alt="jquery" /></p>
<p>I have been geekn&#8217; out a lot lately reading some really great articles as well as learning some new techniques. There is a little bit of everything here and if you are a web developer it will come in handy. If you are not into jQuery skip this first section, as I have been really digging into what can be done in jQuery. If you like what you see check out <a href="http://delicious.com/jcvideopro/">my Delicious feed</a>, as I am always running across great links.</p>
<h4>jQuery &amp; JavaScript</h4>
<p>If you couldn&#8217;t tell, I love working with jQuery. Here is a brief list of some plug ins, some tutorials, and some techniques I found very interesting.</p>
<ul>
<li><a href="http://www.matts411.com/post/delaying_javascript_event_execution/">Delaying Javascript Event Execution</a></li>
<li><a href="http://particletree.com/features/preloading-data-with-ajax-and-json/">Preloading Data with Ajax and JSON</a></li>
<li><a href="http://medienfreunde.com/lab/innerfade/">InnerFade with jquery</a></li>
<li><a href="http://blog.jeremymartin.name/2008/02/jtruncate-text-truncation-for-jquery.html">Text Truncation for jQuery</a></li>
<li><a title="ey return to the site or visit a different page they still get their chosen styleshee" href="http://devsnippets.com/jquery-posts/20-jquery-plugins-for-unforgettable-user-experience.html">20 jQuery Plugins for Unforgettable User Experience</a></li>
<li><a href="http://plugins.jquery.com/project/ScrollTo">jQuery ScrollTo</a></li>
<li><a href="http://www.malsup.com/jquery/cycle/download.html">JQuery Cycle Slideshow</a></li>
<li><a href="http://www.leigeber.com/2008/10/animated-javascript-accordion/">Animated JavaScript Accordion V2</a></li>
<li><a href="http://www.ndoherty.com/blog/2007/10/29/coda-slider-11/">jQuery Coda-Slider</a></li>
<li><a href="http://devkick.com/lab/galleria/">Galleria a Javascript Image Gallery</a></li>
<li><a href="http://www.inarow.net/entries/development/js/intro_to_jquery.html">intro to jquery</a></li>
</ul>
<h4>XHTML &amp; CSS</h4>
<p>CSS is still my first love, and I am always doing what I can to stay up on the latest trends and techniques. Check out these CSS tips and tuts below.</p>
<ul>
<li><a href="http://www.thewojogroup.com/2008/10/10-easy-steps-to-great-website-optimization/">10 Easy Steps to Great Website Optimization</a></li>
<li><a href="http://www.dailycoding.com/Posts/purely_css_callouts.aspx">Purely CSS Speech Bubble</a></li>
<li><a href="http://www.protongun.com/2008/10/super-css-the-power-of-the-selector/">CSS Selectors</a></li>
<li><a href="http://css.dzone.com/news/writing-flexible-css">Writing Flexible CSS</a></li>
</ul>
<h4>PHP</h4>
<p>I started diving more into PHP due to the amount of websites I have deployed using WordPress. Since I typically use WordPress as a CMS, PHP is an integral part of making everything work. Check these out.</p>
<ul>
<li><a href="http://acomment.net/php-tutorials-utopia-13-vital-php-skills-for-every-novice-php-developer-and-solutions/378">13 Vital PHP skills for every PHP developer</a></li>
<li><a href="http://htmlblog.net/10-code-snippets-for-php-developers/">10 code snippets for PHP developers</a></li>
<li><a href="http://nettuts.com/javascript-ajax/creating-a-dynamic-poll-with-jquery-and-php/">Creating a Dynamic Poll with jQuery and PHP</a></li>
</ul>
<h4>WordPress</h4>
<p>I heart WordPress, and can&#8217;t wait till version 2.7 is released. Here are some great plug ins as well as some techniques to use when creating a WordPress theme for yourself and others.</p>
<ul>
<li><a href="http://scott.yang.id.au/code/search-excerpt/">Search Excerpt WordPress Plugin</a></li>
<li><a href="http://www.mattvarone.com/2008/10/functionsphp-wordpress-themes/">Functions.php in WordPress Themes</a></li>
<li><a href="http://blog.themeforest.net/wordpress/create-an-options-page-for-your-wordpress-theme/">Create an Options Page WordPress Theme</a></li>
<li><a href="http://nettuts.com/wordpress/context-includes/">Context Includes &#8211; WordPress</a></li>
</ul>
<h4>Flash &amp; Fireworks</h4>
<p>Photoshop is a dominate force in design. I love it and use it for all my Photography work, but when it comes to web design, I find Fireworks to be better suited. Whenever I find a tutorial for Fireworks I always read it. Check out the firetut below, as well as some flash tuts I&#8217;ve check out lately.</p>
<ul>
<li><a href="http://www.dezinerfolio.com/2008/10/31/20-free-tutorials-to-create-your-own-flash-game-2/">20 Tutorials to Create a Flash Game</a></li>
<li><a href="http://designm.ag/resources/adobe-fireworks-tutorials/">35 Excellent Adobe Fireworks Tutorials</a></li>
<li><a href="http://theflashblog.com/?p=469">3D video flip tutorial</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

