<?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>Blog of Soh Tanaka</title>
	<atom:link href="http://www.sohtanaka.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sohtanaka.com</link>
	<description>Torrance Website Design - Soh Tanaka</description>
	<lastBuildDate>Sun, 29 Aug 2010 19:34:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Advanced Columns w/ CSS</title>
		<link>http://www.sohtanaka.com/web-design/advanced-columns-w-css/</link>
		<comments>http://www.sohtanaka.com/web-design/advanced-columns-w-css/#comments</comments>
		<pubDate>Thu, 26 Aug 2010 05:06:59 +0000</pubDate>
		<dc:creator>Soh</dc:creator>
				<category><![CDATA[HTML/CSS Tutorials]]></category>
		<category><![CDATA[Intermediate]]></category>

		<guid isPermaLink="false">http://www.sohtanaka.com/?p=4458</guid>
		<description><![CDATA[I recently developed a site for a client who requested their product listings be displayed similar to how Johnny Cupcakes (Street wear brand from Boston/Los Angeles) lays out their products (columns laid out in a zig zag pattern). My first instinct was to split each section into its own list, but since this site was [...]]]></description>
			<content:encoded><![CDATA[<p>I recently developed a site for a client who requested their product listings be displayed similar to how <a href="http://shop.johnnycupcakes.com/shop/" target="_blank">Johnny Cupcakes</a> (Street wear brand from Boston/Los Angeles) lays out their products (columns laid out in a zig zag pattern). My first instinct was to split each section into its own list, but since this site was running on a CMS, all products had to be spit out in one giant list. <span id="more-4458"></span>Given this scenario I decided to use pseudo-selectors <code><a href="http://reference.sitepoint.com/css/pseudoclass-nthchild" target="_blank">:nth-child(N)</a></code> and a bit of jQuery to help with IE support. I thought this was a great example of when to use <code>:nth-child(N)</code>, so I would like to go over this technique today.<br />
<a href="http://www.sohtanaka.com/web-design/examples/advanced-lists-css/" target="_blank"><br />
<img class="center" title="Advanced Columns w/ CSS" src="http://stblog.tanaka.netdna-cdn.com/wp-content/uploads/demo3.jpg" alt="Advanced Columns w/ CSS" /></a></p>
<div class="highlight">
<p><a class="view" href="http://www.sohtanaka.com/web-design/examples/advanced-lists-css/" target="_blank">View Demo</a></p>
</div>
<h3>HTML</h3>
<p>As stated above, this layout required that each product column be spit out in one big list. To achieve this zigzag effect, the first list item of every 26 items must be floated to the right.<br />
<img class="center" title="Advanced Columns w/ CSS - Zigzag Columns" src="http://stblog.tanaka.netdna-cdn.com/wp-content/uploads/html-view.gif" alt="Advanced Columns w/ CSS - Zigzag Columns" /></p>
<pre>&lt;ul class="prodlist"&gt;
    <span style="color: red;">&lt;!--List #1 Large/Float Right--&gt;</span>
    &lt;li&gt;&lt;a href="#"&gt;&lt;img src="lrg.jpg" alt="" /&gt;&lt;/a&gt;&lt;/li&gt;
    <span style="color: #999;">&lt;!--List #2~13 Small/Float Left--&gt;</span>
    &lt;li&gt;&lt;a href="#"&gt;&lt;img src="sm.jpg" alt="" /&gt;&lt;/a&gt;&lt;/li&gt;
    <span style="color: #999;">...</span>
    <span style="color: #999;">&lt;!--List #14 Large/Float Left--&gt;</span>
    &lt;li&gt;&lt;a href="#"&gt;&lt;img src="lrg.jpg" alt="" /&gt;&lt;/a&gt;&lt;/li&gt;
    <span style="color: #999;">&lt;!--List #15~26 Small/Float Left--&gt;</span>
    &lt;li&gt;&lt;a href="#"&gt;&lt;img src="sm.jpg" alt="" /&gt;&lt;/a&gt;&lt;/li&gt;
    <span style="color: #999;">...</span>
    <span style="color: red;">&lt;!--List #27 Large/Float Right--&gt;</span>
    &lt;li&gt;&lt;a href="#"&gt;&lt;img src="lrg.jpg" alt="" /&gt;&lt;/a&gt;&lt;/li&gt;
    <span style="color: #999;">&lt;!--List #28~39 Small/Float Left--&gt;</span>
    &lt;li&gt;&lt;a href="#"&gt;&lt;img src="sm.jpg" alt="" /&gt;&lt;/a&gt;&lt;/li&gt;
    <span style="color: #999;">...</span>
&lt;/ul&gt;</pre>
<h3>CSS</h3>
<p>Style the columns using a list and take note of the last line of CSS using <code>:nth-child(N)</code>. To read further on how the <code>:nth-child(N)</code> works, take a look at <a href="http://css-tricks.com/how-nth-child-works/" target="_blank">Chris Coyier&#8217;s article</a>.<br />
<img class="center" title=":nth-child() CSS Tutorial " src="http://stblog.tanaka.netdna-cdn.com/wp-content/uploads/css-view.gif" alt=":nth-child() CSS Tutorial " /></p>
<pre>ul.prodlist {
	margin: 0; padding: 0;
	list-style: none;
}
ul.prodlist li {
	margin: 10px; padding: 0;
	float: left;
}
ul.prodlist li img {float: left;}
<span style="color: red;">ul.prodlist li:nth-child(26n+1) {float: right;}</span></pre>
<h3>Browser Support?</h3>
<p>Almost all modern browsers support <code>:nth-child(N)</code> except our red headed step child Internet Explorer. To cater for IE, we can write a quick line of jQuery.</p>
<h3>jQuery &#8211; IE Support</h3>
<p><small>For those who are not familiar with <a href="http://www.jquery.com" target="_blank">jQuery</a>, do check out their site first and get an overview of how it works. I’ve shared a <a href="http://www.sohtanaka.com/web-design/category/jquery-tutorials/" target="_blank">few tricks</a> that I have picked up along the way, you can check those out as well.</small></p>
<p><strong>Initial Step – Call the jQuery file</strong></p>
<p>You can choose to <a href="http://jquery.com/" target="_blank">download</a> the file from the jQuery site, or you can use this one hosted on Google.</p>
<pre>&lt;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"&gt;&lt;/script&gt;</pre>
<p>Directly after the line where you called your jQuery, start a new &lt;script&gt; tag and start your code by using the $(document).ready event. This allows your jQuery code to run the instant the DOM is ready to be manipulated. All we do now is add a <code>float: right;</code> to the <code>:nth-child(26n+1)</code>.</p>
<pre><span style="color: #999;">$(document).ready(function() {</span>
	$('ul.prodlist li:nth-child(26n 1)').css({'float' : 'right'});
<span style="color: #999;">});</span></pre>
<p><a href="http://www.sohtanaka.com/web-design/examples/advanced-lists-css/" target="_blank"><br />
<img class="center" title="Advanced Columns w/ CSS" src="http://stblog.tanaka.netdna-cdn.com/wp-content/uploads/demo3.jpg" alt="Advanced Columns w/ CSS" /></a></p>
<div class="highlight">
<p><a class="view" href="http://www.sohtanaka.com/web-design/examples/advanced-lists-css/" target="_blank">View Demo</a></p>
</div>
<h3>Conclusion</h3>
<p>I decided to call this post advanced columns since it was out of the norm for me to style columns this way, but as you can see the technique of achieving this effect was quite simple. I also thought this was a good example of how to use the <code>:nth-child(N)</code> in a real life example, I hope you can take something from this tutorial and learn to use pseudo-selectors for your future projects. Props to the design/dev team at <a href="http://shop.johnnycupcakes.com/shop/" target="_blank">Johnny Cupcakes</a> for coming up with a complex and unique layout.</p>
<h3>Related Articles</h3>
<ul>
<li><a href="http://reference.sitepoint.com/css/pseudoclass-nthchild" target="_blank">:nth-child(N) &#8211; Site Point</a></li>
<li><a href="http://css-tricks.com/how-nth-child-works/" target="_blank">How nth-child Works &#8211; CSS Tricks</a></li>
<li><a href="http://www.quirksmode.org/css/nthchild.html" target="_blank">:nth-child() &#8211; Quirks Mode</a></li>
</ul>
<h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://www.sohtanaka.com/web-design/popout-details-on-hover-w-css/" title="Popout Details on Hover w/ CSS">Popout Details on Hover w/ CSS</a></li><li><a href="http://www.sohtanaka.com/web-design/inline-modal-window-w-css-and-jquery/" title="Inline Modal Window w/ CSS and jQuery">Inline Modal Window w/ CSS and jQuery</a></li><li><a href="http://www.sohtanaka.com/web-design/automatic-image-slider-w-css-jquery/" title="Automatic Image Slider w/ CSS &#038; jQuery">Automatic Image Slider w/ CSS &#038; jQuery</a></li><li><a href="http://www.sohtanaka.com/web-design/facebook-style-footer-admin-panel-part-2/" title="Facebook Style Footer Admin Panel Part 2">Facebook Style Footer Admin Panel Part 2</a></li><li><a href="http://www.sohtanaka.com/web-design/facebook-style-footer-admin-panel-part-1/" title="Facebook Style Footer Admin Panel Part 1">Facebook Style Footer Admin Panel Part 1</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.sohtanaka.com/web-design/advanced-columns-w-css/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Inspiration Fridays &#8211; Pretty Lights</title>
		<link>http://www.sohtanaka.com/web-design/inspiration-fridays-pretty-lights/</link>
		<comments>http://www.sohtanaka.com/web-design/inspiration-fridays-pretty-lights/#comments</comments>
		<pubDate>Fri, 06 Aug 2010 07:10:54 +0000</pubDate>
		<dc:creator>Soh</dc:creator>
				<category><![CDATA[This is Sick!]]></category>
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://www.sohtanaka.com/?p=4419</guid>
		<description><![CDATA[One of my favorite artists Pretty Lights just released his latest album &#8220;Spilling Over Every Side&#8221; just last week and I wanted to share it with those who are into electronica. Pretty Lights is the musical vision of the ultra-versatile Colorado based producer Derek Vincent Smith, accompanied in the live setting by drummer Adam Deitch. [...]]]></description>
			<content:encoded><![CDATA[<p>One of my favorite artists <a href="http://www.prettylightsmusic.com/" target="_blank">Pretty Lights</a> just released his latest album &#8220;<a href="http://www.prettylightsmusic.com/#/downloads" target="_blank">Spilling Over Every Side</a>&#8221; just last week and I wanted to share it with those who are into electronica. Pretty Lights is the musical vision of the ultra-versatile Colorado based producer Derek Vincent Smith, accompanied in the live setting by drummer Adam Deitch. Together these two achieve a raw energy rarely reached in the realm of electronic music.<span id="more-4419"></span></p>
<p>His style is a mixture of glitched out hiphop, downtempo, funk, and jazz, in my opinion great music to just zone out and design to. Being influenced by a variety of music scenes, his combination of styles really makes his sounds unique and stands out from the rest.</p>
<blockquote><p>&#8220;The sound and style that I am going for has been developing and evolving since the first time I produced a piece of music and it continues to with every new track as well. That is one thing that really excites me about music, the continual evolution of creativity in individuals and in the collective of all artists.&#8221; &#8211; Pretty Lights</p></blockquote>
<p><a href="http://www.prettylightsmusic.com" target="_blank"><img class="center" title="Pretty Lights" src="http://stblog.tanaka.netdna-cdn.com/wp-content/uploads/SpillingOverEverySide.jpg" alt="Pretty Lights" width="496" height="496" /></a></p>
<p><a href="http://www.prettylightsmusic.com" target="_blank"><img class="center" title="Pretty Lights" src="http://stblog.tanaka.netdna-cdn.com/wp-content/uploads/prettylights1.jpg" alt="Pretty Lights" width="496" height="300" /></a></p>
<blockquote><p>&#8220;My intention was to get as many people to hear and hopefully enjoy my music as possible, I had no idea that it would actually create a means for me to make a living off of my music thru touring. I continue to give my albums away for free because I want to make an impact on the transformation of the music industry and hopefully discover a new model for lasting success and longevity as an independent musician.&#8221; &#8211; Pretty Lights</p></blockquote>
<p>Below are some tracks off of his older albums. He releases all of his albums for free so go check out the <a href="http://www.prettylightsmusic.com/#/downloads" target="_blank">download page</a> and peep them all out.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="499" height="299" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="wmode" value="window" /><param name="allowScriptAccess" value="always" /><param name="flashvars" value="hostname=cowbell.grooveshark.com&amp;widgetID=22085608&amp;style=metal&amp;bbg=000000&amp;bfg=87a832&amp;bt=f5f5f5&amp;bth=000000&amp;pbg=f5f5f5&amp;pbgh=87a832&amp;pfg=000000&amp;pfgh=f5f5f5&amp;si=f5f5f5&amp;lbg=f5f5f5&amp;lbgh=87a832&amp;lfg=000000&amp;lfgh=f5f5f5&amp;sb=f5f5f5&amp;sbh=87a832&amp;p=0" /><param name="src" value="http://listen.grooveshark.com/widget.swf" /><embed type="application/x-shockwave-flash" width="499" height="299" src="http://listen.grooveshark.com/widget.swf" flashvars="hostname=cowbell.grooveshark.com&amp;widgetID=22085608&amp;style=metal&amp;bbg=000000&amp;bfg=87a832&amp;bt=f5f5f5&amp;bth=000000&amp;pbg=f5f5f5&amp;pbgh=87a832&amp;pfg=000000&amp;pfgh=f5f5f5&amp;si=f5f5f5&amp;lbg=f5f5f5&amp;lbgh=87a832&amp;lfg=000000&amp;lfgh=f5f5f5&amp;sb=f5f5f5&amp;sbh=87a832&amp;p=0" allowscriptaccess="always" wmode="window"></embed></object></p>
<p>For those of you in Southern California, he will be performing at the Santa Barbara West Beach Festival in September!</p>
<h3>Like What You Hear?</h3>
<ul>
<li><a href="http://www.prettylightsmusic.com/" target="_blank">Official Site</a></li>
<li><a href="http://www.myspace.com/prettylights" target="_blank">Myspace Music</a></li>
<li><a href="http://www.facebook.com/PrettyLights" target="_blank">Facebook Fan Page</a></li>
<li><a href="http://www.blastro.com/player/prettylightsinterview.html" target="_blank">Exclusive Interview &amp; Live Performance</a></li>
</ul>
<h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://www.sohtanaka.com/web-design/inspiration-fridays-ronald-jenkees/" title="Inspiration Fridays &#8211; Ronald Jenkees">Inspiration Fridays &#8211; Ronald Jenkees</a></li><li><a href="http://www.sohtanaka.com/web-design/the-glitch-mob/" title="The Glitch Mob">The Glitch Mob</a></li><li><a href="http://www.sohtanaka.com/web-design/dub-fx-the-future-of-beat-boxing/" title="Dub FX &#8211; The Future of Beat Boxing">Dub FX &#8211; The Future of Beat Boxing</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.sohtanaka.com/web-design/inspiration-fridays-pretty-lights/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Win a Free Membership to Vandelay Premier!</title>
		<link>http://www.sohtanaka.com/web-design/win-a-free-membership-to-vandelay-premier/</link>
		<comments>http://www.sohtanaka.com/web-design/win-a-free-membership-to-vandelay-premier/#comments</comments>
		<pubDate>Wed, 04 Aug 2010 05:28:17 +0000</pubDate>
		<dc:creator>Soh</dc:creator>
				<category><![CDATA[Downloads]]></category>

		<guid isPermaLink="false">http://www.sohtanaka.com/?p=4398</guid>
		<description><![CDATA[I recently created a simple one page HTML/CSS/jQuery portfolio template for Vandelay Premier and they have offered a free one-year account for three lucky winners! Vandelay Premier was created by Steven Snell of Vandelay Design and serves as a membership-based community for designers. They provide web and graphic designers with premium-quality design resources that make [...]]]></description>
			<content:encoded><![CDATA[<p>I recently created a simple one page HTML/CSS/jQuery portfolio template for <a href="http://vandelaypremier.com/" target="_blank">Vandelay Premier</a> and they have offered a free one-year account for three lucky winners! <span id="more-4398"></span></p>
<p><a href="http://vandelaypremier.com/" target="_blank"><img class="center" title="Free Template" src="http://stblog.tanaka.netdna-cdn.com/wp-content/uploads/template.jpg" alt="Free Template" width="496" height="300" /></a></p>
<p>Vandelay Premier was created by Steven Snell of <a href="http://vandelaydesign.com/" target="_blank">Vandelay Design</a> and serves as a membership-based community for designers. They provide web and graphic designers with premium-quality design resources that make their lives easier, plus they offer career resources to help designers and freelancers with all facets of career and business. Members also get other perks like access to the exclusive marketplace discounts on products and services relevant to web designers.</p>
<p>&raquo; <a href="http://vandelaypremier.com/" target="_blank">Visit Vandelay Premier</a></p>
<p><a href="http://vandelaypremier.com/" target="_blank"><img class="center" title=" Premium Design Resources &amp; Community" src="http://stblog.tanaka.netdna-cdn.com/wp-content/uploads/vandelay_preview.jpg" alt=" Premium Design Resources &amp; Community" width="496" height="300" /></a></p>
<h3>Membership Details</h3>
<ul>
<li>Provides a variety of premium quality design resources including textures, brushes, vectors, PSD files and more.</li>
<li>Provides career resources, such as interviews, reports, and short e-books to help designers with the business and career aspect of design.</li>
<li>Will be updated with new items multiple times per week.</li>
<li>Resources from a variety of talented designers.</li>
<li>Members have access to a marketplace with discounts on products and services like hosting, PSD to HTML coding, WordPress themes, stock photos, and much more.</li>
<li>Cost is $9 per month or $79 per year (For those who want to purchase a membership).</li>
</ul>
<h3>How to Enter?</h3>
<p>Since this blog is dedicated to sharing my experiences, to enter, share one experience/advice that you feel benefited you in your career. For students, it can be an experience/advice that benefited you in school. The contest will end on Friday August 13th, 2010.</p>
<p>1. Drop your REAL name<br />
2. Use a legit email account where we can contact you<br />
3. Share an experience/adivce.</p>
<h2  class="related_post_title">Popular Posts</h2><ul class="related_post"><li><a href="http://www.sohtanaka.com/web-design/simple-tabs-w-css-jquery/" title="Simple Tabs w/ CSS &#038; jQuery">Simple Tabs w/ CSS &#038; jQuery</a></li><li><a href="http://www.sohtanaka.com/web-design/fancy-thumbnail-hover-effect-w-jquery/" title="Fancy Thumbnail Hover Effect w/ jQuery">Fancy Thumbnail Hover Effect w/ jQuery</a></li><li><a href="http://www.sohtanaka.com/web-design/mega-drop-downs-w-css-jquery/" title="Mega Drop Down Menus w/ CSS &#038; jQuery">Mega Drop Down Menus w/ CSS &#038; jQuery</a></li><li><a href="http://www.sohtanaka.com/web-design/simple-page-peel-effect-with-jquery-css/" title="Simple Page Peel Effect with jQuery &#038; CSS">Simple Page Peel Effect with jQuery &#038; CSS</a></li><li><a href="http://www.sohtanaka.com/web-design/easy-toggle-jquery-tutorial/" title="Simple Toggle with CSS &#038; jQuery">Simple Toggle with CSS &#038; jQuery</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.sohtanaka.com/web-design/win-a-free-membership-to-vandelay-premier/feed/</wfw:commentRss>
		<slash:comments>38</slash:comments>
		</item>
		<item>
		<title>Popout Details on Hover w/ CSS</title>
		<link>http://www.sohtanaka.com/web-design/popout-details-on-hover-w-css/</link>
		<comments>http://www.sohtanaka.com/web-design/popout-details-on-hover-w-css/#comments</comments>
		<pubDate>Tue, 03 Aug 2010 05:05:54 +0000</pubDate>
		<dc:creator>Soh</dc:creator>
				<category><![CDATA[HTML/CSS Tutorials]]></category>
		<category><![CDATA[Intermediate]]></category>

		<guid isPermaLink="false">http://www.sohtanaka.com/?p=4188</guid>
		<description><![CDATA[I recently saw a hover over trick that caught my eye and I thought it was a pretty clever way of showing more details on an element. I decided to give it a try and the solution was quite simple. View Demo HTML The columns are made up of unordered list items, within each list [...]]]></description>
			<content:encoded><![CDATA[<p>I recently saw a hover over trick that caught my eye and I thought it was a pretty clever way of showing more details on an element. I decided to give it a try and the solution was quite simple.<span id="more-4188"></span><br />
<a href="http://www.sohtanaka.com/web-design/examples/popoutdetails/" target="_blank"><img class="center" title="Popout Details on Hover w/ CSS" src="http://stblog.tanaka.netdna-cdn.com/wp-content/uploads/demo1.jpg" alt="Popout Details on Hover w/ CSS" width="496" height="300" /></a></p>
<div class="highlight">
<p><a class="view" href="http://www.sohtanaka.com/web-design/examples/popoutdetails/" target="_blank">View Demo</a></p>
</div>
<h3>HTML</h3>
<p>The columns are made up of unordered list items, within each list item is the thumbnail image and the details of the item wrapped in a class of <code>"info"</code>.</p>
<pre>&lt;ul class="columns"&gt;
    &lt;li&gt;
    	&lt;a href="#"&gt;&lt;img src="thumbnail.jpg" alt="" /&gt;&lt;/a&gt;
        &lt;div class="info"&gt;
            &lt;h2&gt;Title&lt;/h2&gt;
            &lt;p&gt;Short Description&lt;/p&gt;
        &lt;/div&gt;
    &lt;/li&gt;
&lt;/ul&gt;</pre>
<p><img class="center" title="Popout Details on Hover w/ CSS" src="http://stblog.tanaka.netdna-cdn.com/wp-content/uploads/htmldemo2.jpg" alt="Popout Details on Hover w/ CSS" width="496" height="347" /></p>
<h3>CSS</h3>
<p>Start by styling the list items. Notice we add <code><a href="http://www.smashingmagazine.com/2009/10/05/mastering-css-coding-getting-started/#CSS-Basics7" target="_blank">position: relative;</a></code> to the list item, and on hover we raise the <code><a href="http://www.w3schools.com/css/pr_pos_z-index.asp" target="_blank">z-index</a></code> to 99 so it lifts over the other elements.</p>
<pre><span style="color: #777;">/*--Column Styles--*/</span>
ul.columns {
	width: 960px;
	list-style: none;
	margin: 0 auto; padding: 0;
}
ul.columns li {
	width: 220px;
	float: left; display: inline;
	margin: 10px; padding: 0;
	position: relative;
}
ul.columns li:hover {z-index: 99;}</pre>
<p>We add a <code>position: relative;</code> to the image as well, so we can control the <code>z-index</code> value on hover. What we want to do here is to lower the opacity of the image by default to 30% then on hover, turn up the opacity to 100% and lift the image by increasing the <code>z-index</code> value to 999. This will allow the thumbnail to sit on top of the <code>.info</code> elements.</p>
<pre><span style="color: #777;">/*--Thumbnail Styles--*/</span>
ul.columns li img {
	position: relative;
	filter: alpha(opacity=30);
	opacity: 0.3;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)"; <span style="color: #777;">/*--IE8 Specific--*/</span>
}
ul.columns li:hover img{
	z-index: 999;
	filter: alpha(opacity=100);
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}</pre>
<p>Use absolute positioning to shift the <code>.info</code> class -10px to the left and -10px to the top.  Since <code>.info</code> is using an absolute positioning, we must have enough top padding so the content within does not overlap the thumbnail. To do this, the top padding is measured by adding 10px to the height of the thumbnail (200px in my demo). Some CSS3 was added for the rounded corners. We will hide <code>.info</code> by default, and show it on hover.</p>
<p><img class="center" title="Popout Details on Hover w/ CSS" src="http://stblog.tanaka.netdna-cdn.com/wp-content/uploads/css_demo2.jpg" alt="Popout Details on Hover w/ CSS" width="496" height="347" /></p>
<pre><span style="color: #777;">/*--Details Style--*/</span>
ul.columns li .info {
	position: absolute;
	left: -10px; top: -10px;
	padding: 210px 10px 20px;
	width: 220px;
	display: none;
	background: #fff;
	font-size: 1.2em;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
ul.columns li:hover .info {display: block;}

ul.columns li h2 {
	font-size: 1.2em;
	font-weight: normal;
	text-transform: uppercase;
	margin: 0; padding: 10px 0;
}
ul.columns li p {padding: 0; margin: 0; font-size: 0.9em;}</pre>
<h3>Final Thoughts</h3>
<p>Go ahead and experiment with this technique! If you have any questions or concerns please don&#8217;t hesitate to let me know. For those concerned with this technique working on IE6, you can use some <a href="http://www.learningjquery.com/2007/02/quick-tip-set-hover-class-for-anything" target="_blank">jQuery tricks</a> to get around the hover issue.</p>
<p><a href="http://www.sohtanaka.com/web-design/examples/popoutdetails/" target="_blank"><img class="center" title="Popout Details on Hover w/ CSS" src="http://stblog.tanaka.netdna-cdn.com/wp-content/uploads/demo1.jpg" alt="Popout Details on Hover w/ CSS" width="496" height="300" /></a></p>
<div class="highlight">
<p><a class="view" href="http://www.sohtanaka.com/web-design/examples/popoutdetails/" target="_blank">View Demo</a></p>
</div>
<h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://www.sohtanaka.com/web-design/advanced-columns-w-css/" title="Advanced Columns w/ CSS">Advanced Columns w/ CSS</a></li><li><a href="http://www.sohtanaka.com/web-design/inline-modal-window-w-css-and-jquery/" title="Inline Modal Window w/ CSS and jQuery">Inline Modal Window w/ CSS and jQuery</a></li><li><a href="http://www.sohtanaka.com/web-design/automatic-image-slider-w-css-jquery/" title="Automatic Image Slider w/ CSS &#038; jQuery">Automatic Image Slider w/ CSS &#038; jQuery</a></li><li><a href="http://www.sohtanaka.com/web-design/facebook-style-footer-admin-panel-part-2/" title="Facebook Style Footer Admin Panel Part 2">Facebook Style Footer Admin Panel Part 2</a></li><li><a href="http://www.sohtanaka.com/web-design/facebook-style-footer-admin-panel-part-1/" title="Facebook Style Footer Admin Panel Part 1">Facebook Style Footer Admin Panel Part 1</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.sohtanaka.com/web-design/popout-details-on-hover-w-css/feed/</wfw:commentRss>
		<slash:comments>55</slash:comments>
		</item>
		<item>
		<title>Inspiration Fridays &#8211; Rodney Mullen</title>
		<link>http://www.sohtanaka.com/web-design/inspiration-fridays-rodney-mullen/</link>
		<comments>http://www.sohtanaka.com/web-design/inspiration-fridays-rodney-mullen/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 15:20:10 +0000</pubDate>
		<dc:creator>Soh</dc:creator>
				<category><![CDATA[This is Sick!]]></category>
		<category><![CDATA[Skateboarding]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://www.sohtanaka.com/?p=4269</guid>
		<description><![CDATA[I used to be obsessed with skateboarding back in my middle school and highschool days. I had quit after highschool and never thought I would be back into it, but early this year I picked it back up and now loving it more than ever. Its a great stress reliever and it gets my creative [...]]]></description>
			<content:encoded><![CDATA[<p>I used to be obsessed with skateboarding back in my middle school and highschool days. I had quit after highschool and never thought I would be back into it, but early this year I picked it back up and now loving it more than ever. Its a great stress reliever and it gets my creative juices flowing.<span id="more-4269"></span></p>
<p>I wanted to share a piece of history with legendary skater Rodney Mullen from South Bay Los Angeles. I chose to feature him since he is considered one of the most important and influential skaters in skateboarding&#8217;s history. Rodney Mullen was primarily known for his freestyle tricks, but later on he had a huge impact on street skating. Creating street skating foundations like the <strong>flat ground <a href="http://en.wikipedia.org/wiki/Ollie_(skateboarding_trick)" target="_blank">ollie</a></strong>, kick flip, heel flip, 360 flip, and many more, he took skateboarding to a new level.</p>
<blockquote><p>&#8220;Do what you love and try not to look at what other people occupy themselves with. Most people seem restless and bounce around too much to focus or even pay attention enough to themselves to figure out exactly what they really do love, as opposed to what the people that surround them are doing.&#8221;<br />
- <em>Rodney Mullen</em></p></blockquote>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="500" height="405" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/PMSoc7h5Wk0&amp;hl=en_US&amp;fs=1?rel=0&amp;color1=0x3a3a3a&amp;color2=0x999999&amp;border=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="500" height="405" src="http://www.youtube.com/v/PMSoc7h5Wk0&amp;hl=en_US&amp;fs=1?rel=0&amp;color1=0x3a3a3a&amp;color2=0x999999&amp;border=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="500" height="405" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/ERFChONGLWQ&amp;hl=en_US&amp;fs=1?rel=0&amp;color1=0x3a3a3a&amp;color2=0x999999&amp;border=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="500" height="405" src="http://www.youtube.com/v/ERFChONGLWQ&amp;hl=en_US&amp;fs=1?rel=0&amp;color1=0x3a3a3a&amp;color2=0x999999&amp;border=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="500" height="405" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/fM2M6r_KgNg&amp;hl=en_US&amp;fs=1?rel=0&amp;color1=0x3a3a3a&amp;color2=0x999999&amp;border=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="500" height="405" src="http://www.youtube.com/v/fM2M6r_KgNg&amp;hl=en_US&amp;fs=1?rel=0&amp;color1=0x3a3a3a&amp;color2=0x999999&amp;border=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="500" height="405" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/axR4JdYGniI&amp;hl=en_US&amp;fs=1?rel=0&amp;color1=0x3a3a3a&amp;color2=0x999999&amp;border=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="500" height="405" src="http://www.youtube.com/v/axR4JdYGniI&amp;hl=en_US&amp;fs=1?rel=0&amp;color1=0x3a3a3a&amp;color2=0x999999&amp;border=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="500" height="405" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/A2nZ-R1HYPQ&amp;hl=en_US&amp;fs=1?rel=0&amp;color1=0x3a3a3a&amp;color2=0x999999&amp;border=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="500" height="405" src="http://www.youtube.com/v/A2nZ-R1HYPQ&amp;hl=en_US&amp;fs=1?rel=0&amp;color1=0x3a3a3a&amp;color2=0x999999&amp;border=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Skateboarding was once looked at as just a fad in the 70&#8242;s-80&#8242;s but since the 90&#8242;s it has become a prime extreme sport, and I hope it continues to grow and inspire the next generation to continue.</p>
<h3>Like What You See?</h3>
<ul>
<li><a href="http://skateboard.about.com/od/proskaterinterviews/a/RodenyMullenInt.htm" target="_blank">Rodney Mullen Interview &#8211; Talking with The King of Skateboarding</a></li>
<li><a href="http://www.facebook.com/pages/Rodney-Mullen/9804068673" target="_blank">Rodney Mullen on Facebook</a></li>
<li><a href="http://www.almostawebsite.com/" target="_blank">Almost Skateboards</a></li>
<li><a href="http://www.globe.tv/us/team/skate/rodney-mullen/" target="_blank">Globe Shoes</a></li>
<li><a href="http://www.tensortrucks.com/" target="_blank">Tensor Trucks</a></li>
<li><a href="http://en.wikipedia.org/wiki/Rodney_Mullen" target="_blank">Rodney Mullen on Wikipedia</a></li>
<li><a href="http://www.rodneymullen.net/" target="_blank">Rodney Mullen Fan Site</a></li>
</ul>
<h3>Other Resources on History of Skateboarding</h3>
<ul>
<li><a href="http://www.vbs.tv/watch/epicly-later-d-lakai/guy-mariano-1-of-4" target="_blank">Epicly Later&#8217;d &#8211; Guy Mariano Video 1 of 4</a></li>
<li><a href="http://www.vbs.tv/watch/epicly-later-d-lakai/guy-mariano-2-of-4" target="_blank">Epicly Later&#8217;d &#8211; Guy Mariano Video 2 of 4</a></li>
<li><a href="http://www.vbs.tv/watch/epicly-later-d-lakai/guy-mariano-3-of-4" target="_blank">Epicly Later&#8217;d &#8211; Guy Mariano Video 3 of 4</a></li>
<li><a href="http://www.vbs.tv/watch/epicly-later-d-lakai/guy-mariano-4-of-4" target="_blank">Epicly Later&#8217;d &#8211; Guy Mariano Video 4 of 4</a></li>
<li><a href="http://en.wikipedia.org/wiki/Street_skateboarding" target="_blank">History of Street Skateboarding</a></li>
</ul>
<h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://www.sohtanaka.com/web-design/inspiration-fridays-ronald-jenkees/" title="Inspiration Fridays &#8211; Ronald Jenkees">Inspiration Fridays &#8211; Ronald Jenkees</a></li><li><a href="http://www.sohtanaka.com/web-design/exit-through-the-gift-shop-documentary/" title="Exit Through The Gift Shop">Exit Through The Gift Shop</a></li><li><a href="http://www.sohtanaka.com/web-design/the-glitch-mob/" title="The Glitch Mob">The Glitch Mob</a></li><li><a href="http://www.sohtanaka.com/web-design/dub-fx-the-future-of-beat-boxing/" title="Dub FX &#8211; The Future of Beat Boxing">Dub FX &#8211; The Future of Beat Boxing</a></li><li><a href="http://www.sohtanaka.com/web-design/search-engine-rap-battle/" title="Search Engine Rap Battle">Search Engine Rap Battle</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.sohtanaka.com/web-design/inspiration-fridays-rodney-mullen/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Recommended: The Big Web Show</title>
		<link>http://www.sohtanaka.com/web-design/recommended-the-big-web-show/</link>
		<comments>http://www.sohtanaka.com/web-design/recommended-the-big-web-show/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 22:02:17 +0000</pubDate>
		<dc:creator>Soh</dc:creator>
				<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Recommended]]></category>

		<guid isPermaLink="false">http://www.sohtanaka.com/?p=4318</guid>
		<description><![CDATA[If you have not heard of The Big Web Show, you are definitely missing out. I&#8217;ve been hooked since the first round of interviews and I highly recommend subscribing and tuning into their weekly show. Hosted by Dan Benjamin and Jeffrey Zeldman, it&#8217;s filled with great resources from top professionals telling their stories and perspectives [...]]]></description>
			<content:encoded><![CDATA[<p>If you have not heard of <a href="http://5by5.tv/" target="_blank">The Big Web Show</a>, you are definitely missing out. I&#8217;ve been hooked since the first round of interviews and I highly recommend subscribing and tuning into their weekly show.</p>
<p>Hosted by <a href="http://5by5.tv/people/dan-benjamin" target="_blank">Dan Benjamin</a> and <a href="http://5by5.tv/people/jeffrey-zeldman" target="_blank">Jeffrey Zeldman</a>, it&#8217;s filled with great resources from top professionals telling their stories and perspectives on the industry and their craft.<span id="more-4318"></span></p>
<p><a href="http://5by5.tv/" target="_blank"><img class="center" title="The Big Web Show" src="http://stblog.tanaka.netdna-cdn.com/wp-content/uploads/bigwebshow.jpg" alt="The Big Web Show" width="496" height="266" /></a></p>
<p>I&#8217;ve actually liked it so much that I have been listening to their show in my car while driving to work. The great thing is that you can download each interview and take them with your in your ipod/MP3 player. If you haven&#8217;t tuned in yet, go <a href="http://5by5.tv/" target="_blank">do it now</a>. Enjoy!</p>
<h2  class="related_post_title">Popular Posts</h2><ul class="related_post"><li><a href="http://www.sohtanaka.com/web-design/simple-tabs-w-css-jquery/" title="Simple Tabs w/ CSS &#038; jQuery">Simple Tabs w/ CSS &#038; jQuery</a></li><li><a href="http://www.sohtanaka.com/web-design/fancy-thumbnail-hover-effect-w-jquery/" title="Fancy Thumbnail Hover Effect w/ jQuery">Fancy Thumbnail Hover Effect w/ jQuery</a></li><li><a href="http://www.sohtanaka.com/web-design/mega-drop-downs-w-css-jquery/" title="Mega Drop Down Menus w/ CSS &#038; jQuery">Mega Drop Down Menus w/ CSS &#038; jQuery</a></li><li><a href="http://www.sohtanaka.com/web-design/simple-page-peel-effect-with-jquery-css/" title="Simple Page Peel Effect with jQuery &#038; CSS">Simple Page Peel Effect with jQuery &#038; CSS</a></li><li><a href="http://www.sohtanaka.com/web-design/easy-toggle-jquery-tutorial/" title="Simple Toggle with CSS &#038; jQuery">Simple Toggle with CSS &#038; jQuery</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.sohtanaka.com/web-design/recommended-the-big-web-show/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Noise Texture in Photoshop</title>
		<link>http://www.sohtanaka.com/web-design/noise-texture-in-photoshop/</link>
		<comments>http://www.sohtanaka.com/web-design/noise-texture-in-photoshop/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 06:17:15 +0000</pubDate>
		<dc:creator>Soh</dc:creator>
				<category><![CDATA[Design Tutorials]]></category>
		<category><![CDATA[Beginner]]></category>
		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://www.sohtanaka.com/?p=4196</guid>
		<description><![CDATA[I wanted to switch it up this week to do a quick tip on how to create noise (grainy) textures with Photoshop to add subtle detail to your next project. A lot of times I feel that its the small and subtle details that really makes a project shine. Let&#8217;s get started. 1. Fill Base [...]]]></description>
			<content:encoded><![CDATA[<p>I wanted to switch it up this week to do a quick tip on how to create noise (grainy) textures with Photoshop to add subtle detail to your next project. A lot of times I feel that its the small and subtle details that really makes a project shine. Let&#8217;s get started.<span id="more-4196"></span></p>
<p><img class="center" title="Grainy Noise Texture in Photoshop Tutorial" src="http://stblog.tanaka.netdna-cdn.com/wp-content/uploads/demo.jpg" alt="Grainy Noise Texture in Photoshop Tutorial" /></p>
<h3>1. Fill Base Layer</h3>
<p>Create a new document and create a new layer. Fill the the new layer with the base color of your choice. In my example I used blue (#142e51) for my base color.<br />
<img class="center" title="Noise Grainy Texture in Photoshop Tutorial" src="http://stblog.tanaka.netdna-cdn.com/wp-content/uploads/step1.jpg" alt="Noise Grainy Texture in Photoshop Tutorial" /></p>
<h3>3. Create Noise Layer</h3>
<p>Create a new layer and fill this layer with white (#ffffff). Then add your noise filter to this layer (Filter &gt; Noise &gt; Add Noise&#8230;).<br />
<img class="center" title="Noise Grainy Texture in Photoshop Tutorial" src="http://stblog.tanaka.netdna-cdn.com/wp-content/uploads/step2.jpg" alt="Noise Grainy Texture in Photoshop Tutorial" /></p>
<p>You can set the amount to 25%. The higher you go, the more noisy it will get. I like to keep mine minimal and not too harsh.<br />
<img class="center" title="Noise Grainy Texture in Photoshop Tutorial" src="http://stblog.tanaka.netdna-cdn.com/wp-content/uploads/step2b.jpg" alt="Noise Grainy Texture in Photoshop Tutorial" /></p>
<p>You will notice when you add noise, there are many small pixalated colors scattered on your layer. To make this gray scale, you must adjust your noise layer saturation level (Layer &gt; New Layer Adjustment &gt; Hue/Saturation&#8230;) or short cut (Ctrl + U) on a PC.</p>
<p><img class="center" title="Noise Texture Photoshop Tutorial" src="http://stblog.tanaka.netdna-cdn.com/wp-content/uploads/step2c.jpg" alt="Noise Texture Photoshop Tutorial" /></p>
<p>The window will popup to adjust your saturation. Turn the saturation level all the way down to -100.</p>
<p><img class="center" title="Noise Texture Photoshop Tutorial" src="http://stblog.tanaka.netdna-cdn.com/wp-content/uploads/step2d.jpg" alt="Noise Texture Photoshop Tutorial" /></p>
<h3>4. Blend</h3>
<p>Now its time to blend the two layers together. You can do this by selecting the noise layer and experimenting with your blending mode. Since I used dark blue for my base color, I invert my noise layer (Image &gt; Adjustments &gt; Invert) first before I experiment with my blending mode.</p>
<p><strong>Note*</strong> if you chose a light base color, you can simply change your blending mode to multiply and adjust your opacity settings to get the effect to your liking without inverting your layer.<br />
<img class="center" title="Noise Texture Photoshop Tutorial" src="http://stblog.tanaka.netdna-cdn.com/wp-content/uploads/step3.jpg" alt="Noise Texture Photoshop Tutorial" /></p>
<p>Once you inverted your noise layer, now go ahead and experiment with the blending mode. I chose the Linear Dodge mode with the opacity set to 45%.<br />
<img class="center" title="Noise Texture Photoshop Tutorial" src="http://stblog.tanaka.netdna-cdn.com/wp-content/uploads/step3a.jpg" alt="Noise Texture Photoshop Tutorial" /></p>
<h3>Final</h3>
<p>Here is the final image. I would like to encourage you to experiment and have fun with this technique!<br />
<img class="center" title="Noise Texture Photoshop Tutorial" src="http://stblog.tanaka.netdna-cdn.com/wp-content/uploads/final2.gif" alt="Noise Texture Photoshop Tutorial" width="496" height="266" /></p>
<h3>Inspiration &#8211; Examples in the Real World</h3>
<p><a href="http://www.designbombs.com/portfolio/billy-tamplin/" target="_blank"><img class="center" title="Billy Tamplin Grainy Texture" src="http://stblog.tanaka.netdna-cdn.com/wp-content/uploads/billytamplin.jpg" alt="Billy Tamplin Grainy Texture" width="496" height="266" /></a></p>
<p><a href="http://www.designbombs.com/clean-websites/dconstruct-2010/" target="_blank"><img class="center" title="dconstruct Noise Texture Photoshop Tutorial" src="http://stblog.tanaka.netdna-cdn.com/wp-content/uploads/dconstruct.jpg" alt="dconstruct Noise Texture Photoshop Tutorial" width="496" height="266" /></a></p>
<p><a href="http://www.designbombs.com/community/dribbble/" target="_blank"><img class="center" title="dribbble Noise Texture Photoshop Tutorial" src="http://stblog.tanaka.netdna-cdn.com/wp-content/uploads/dribbble.jpg" alt="dribbble Noise Texture Photoshop Tutorial" width="496" height="266" /></a></p>
<p><a href="http://www.designbombs.com/blog/hey-indy/" target="_blank"><img class="center" title="hey indy Noise Texture Photoshop Tutorial" src="http://stblog.tanaka.netdna-cdn.com/wp-content/uploads/heyindy.jpg" alt="hey indy Noise Texture Photoshop Tutorial" width="496" height="266" /></a></p>
<p><a href="http://www.designbombs.com/illustrations/kenny-meyers/" target="_blank"><img class="center" title="kenny meyers Noise Texture Photoshop Tutorial" src="http://stblog.tanaka.netdna-cdn.com/wp-content/uploads/kennymeyers.jpg" alt="kenny meyers Noise Texture Photoshop Tutorial" width="496" height="266" /></a></p>
<h3>Related Articles</h3>
<ul>
<li><a href="http://bjango.com/articles/noise/" target="_blank">Noise and textures</a></li>
<li><a href="http://abduzeedo.com/web-design-grain-texture" target="_blank">Web Design: Grain Texture</a></li>
</ul>
<h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://www.sohtanaka.com/web-design/cropping-backgrounds-of-vehicles-photoshop-tutorial/" title="Cropping Backgrounds of Vehicles">Cropping Backgrounds of Vehicles</a></li><li><a href="http://www.sohtanaka.com/web-design/glossy-beveled-buttons-photoshop-tutorial/" title="Glossy &#038; Beveled Buttons &#8211; Photoshop Tutorial">Glossy &#038; Beveled Buttons &#8211; Photoshop Tutorial</a></li><li><a href="http://www.sohtanaka.com/web-design/css-border-tricks-tutorial/" title="Have Fun w/ Borders &#8211; Beveled, Pressed, &#038; More!">Have Fun w/ Borders &#8211; Beveled, Pressed, &#038; More!</a></li><li><a href="http://www.sohtanaka.com/web-design/css-sprites-wout-background-images/" title="CSS Sprites w/out Using Background Images">CSS Sprites w/out Using Background Images</a></li><li><a href="http://www.sohtanaka.com/web-design/simple-accordion-w-css-and-jquery/" title="Simple Accordion w/ CSS and jQuery">Simple Accordion w/ CSS and jQuery</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.sohtanaka.com/web-design/noise-texture-in-photoshop/feed/</wfw:commentRss>
		<slash:comments>37</slash:comments>
		</item>
		<item>
		<title>Featured on Designer&#8217;s Interviews</title>
		<link>http://www.sohtanaka.com/web-design/featured-on-designer-interview/</link>
		<comments>http://www.sohtanaka.com/web-design/featured-on-designer-interview/#comments</comments>
		<pubDate>Fri, 23 Jul 2010 01:16:27 +0000</pubDate>
		<dc:creator>Soh</dc:creator>
				<category><![CDATA[Featured On]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Interviews]]></category>

		<guid isPermaLink="false">http://www.sohtanaka.com/?p=4257</guid>
		<description><![CDATA[I had the pleasure of interviewing with Lillian Wells from DesignInterviews.com a few weeks ago and was featured on the site early this week. I was a bit intimidated being on the site with great designers like Yaron Schoen, Nick La, Rob Palmer, Rich Brown and many more, but it was quite an honor to [...]]]></description>
			<content:encoded><![CDATA[<p>I had the pleasure of interviewing with <a href="http://twitter.com/liliwells" target="_blank">Lillian Wells</a> from <a href="http://www.designinterviews.com/" target="_blank">DesignInterviews.com</a> a few weeks ago and was featured on the site early this week. I was a bit intimidated being on the site with great designers like <a href="http://www.designinterviews.com/interviews/yaron-schoen-promoting-collaboration-in-design-world" target="_blank">Yaron Schoen</a>, <a href="http://www.designinterviews.com/interviews/Nick-La-Read-Experiment-and-Follow-the-Big-Designers" target="_blank">Nick La</a>, <a href="http://www.designinterviews.com/interviews/rob-palmer" target="_blank">Rob Palmer</a>, <a href="http://www.designinterviews.com/interviews/rich-brown-of-brown-and-white" target="_blank">Rich Brown</a> and many more, but it was quite an honor to be able to participate.<span id="more-4257"></span></p>
<p><a href="http://www.designinterviews.com/interviews/soh-tanaka-dedicated-to-sharing-experience" target="_blank"><img class="center" title="Soh Tanaka: Dedicated to Sharing Experience" src="http://stblog.tanaka.netdna-cdn.com/wp-content/uploads/designerinterview_view.jpg" alt="Soh Tanaka: Dedicated to Sharing Experience" /></a></p>
<p>The site is packed with great interviews from a variety of people with different backgrounds and specialties, definitely a great place to subscribe to and check out for updates.</p>
<p>If anyone is interested you can check out my <a href="http://www.designinterviews.com/interviews/soh-tanaka-dedicated-to-sharing-experience" target="_blank">interview here</a>.</p>
<h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://www.sohtanaka.com/web-design/quick-interview-pv-m-garage/" title="Quick Interview @ PV.M Garage">Quick Interview @ PV.M Garage</a></li><li><a href="http://www.sohtanaka.com/web-design/quick-interview-with-yours-truly/" title="Quick Interview with Yours Truly">Quick Interview with Yours Truly</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.sohtanaka.com/web-design/featured-on-designer-interview/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Have Fun w/ Borders &#8211; Beveled, Pressed, &amp; More!</title>
		<link>http://www.sohtanaka.com/web-design/css-border-tricks-tutorial/</link>
		<comments>http://www.sohtanaka.com/web-design/css-border-tricks-tutorial/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 01:19:03 +0000</pubDate>
		<dc:creator>Soh</dc:creator>
				<category><![CDATA[HTML/CSS Tutorials]]></category>
		<category><![CDATA[Beginner]]></category>
		<category><![CDATA[Quick Tip]]></category>

		<guid isPermaLink="false">http://www.sohtanaka.com/?p=4197</guid>
		<description><![CDATA[Since I released my new redesigned blog, a lot of people have asked me how I styled the pressed effect on my category navigation. I would like to share some simple border style tricks to get various effects for your next project. View Demo Light Shadow A simple light shadow effect can be achieved with [...]]]></description>
			<content:encoded><![CDATA[<p>Since I released my new redesigned blog, a lot of people have asked me how I styled the pressed effect on my category navigation. I would like to share some simple border style tricks to get various effects for your next project.<span id="more-4197"></span></p>
<div class="highlight">
<p><a class="view" href="http://www.sohtanaka.com/web-design/examples/css-borders/" target="_blank">View Demo</a></p>
</div>
<h3>Light Shadow</h3>
<p><a href="http://www.sohtanaka.com/web-design/examples/css-borders/#shadow" target="_blank"><img class="center" title="CSS Borders Light Shadow" src="http://stblog.tanaka.netdna-cdn.com/wp-content/uploads/lightshadow.gif" alt="CSS Borders Light Shadow" width="496" height="245" /></a><br />
A simple light shadow effect can be achieved with using shades of grey with borders. With CSS3 you can achieve a real shadow effect using <a href="http://brightcove.vo.llnwd.net/pd11/media/87100853001/87100853001_89213746001_TVM-N002-CSS3-AdvBoxShadow.mp4" target="_blank">box shadow</a>, but this is a clean and simple way that works in all browsers.</p>
<h5>CSS</h5>
<pre>.shadow {
	padding: 20px;
	border: 1px solid #f0f0f0;
	border-bottom: 2px solid #ccc;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}</pre>
<h3>Pressed</h3>
<p><a href="http://www.sohtanaka.com/web-design/examples/css-borders/#pressed" target="_blank"><br />
<img class="center" title="CSS Borders  - Pressed" src="http://stblog.tanaka.netdna-cdn.com/wp-content/uploads/pressed.gif" alt="CSS Borders  - Pressed" width="496" height="245" /></a><br />
The pressed effect is very similar to the <a href="http://line25.com/tutorials/create-a-letterpress-effect-with-css-text-shadow" target="_blank">CSS Letter Press</a> technique but we rely solely on border colors to achieve the effect. Add some <a href="http://www.the-art-of-web.com/css/border-radius/" target="_blank">CSS3 rounded corners</a> and you can achieve a very clean pressed look to your layouts.</p>
<h5>CSS</h5>
<pre>.pressed {
	color: #fff;
	padding: 20px;
	background: #111;
	border: 1px solid #000;
	border-right: 1px solid #353535;
	border-bottom: 1px solid #353535;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}</pre>
<h3>Beveled</h3>
<p><a href="http://www.sohtanaka.com/web-design/examples/css-borders/#beveled" target="_blank"><br />
<img class="center" title="CSS Borders - Beveled Images" src="http://stblog.tanaka.netdna-cdn.com/wp-content/uploads/beveled.gif" alt="CSS Borders - Beveled Images" width="496" height="245" /></a><br />
This technique is very similar to your <a href="http://cssglobe.com/post/1330/custom-double-solid-borders-for-images" target="_blank">double border technique</a> commonly used with images. With a little bit of tinkering, you can achieve a subtle beveled effect using the <code>outline</code> property.<br />
<strong>CSS</strong></p>
<pre>img.light {
	outline: 1px solid #ddd;
	border-top: 1px solid #fff;
	padding: 10px;
	background: #f0f0f0;
}
img.dark {
	outline: 1px solid #111;
	border-top: 1px solid #555;
	padding: 10px;
	background: #333;
}</pre>
<h3>Indented Lines</h3>
<p><a href="http://www.sohtanaka.com/web-design/examples/css-borders/#indented" target="_blank"><br />
<img class="center" title="CSS Borders - Indented Lines" src="http://stblog.tanaka.netdna-cdn.com/wp-content/uploads/indented.gif" alt="CSS Borders - Indented Lines" width="496" height="245" /></a><br />
I use this technique often when creating vertical menus and lists. Its a simple combination of top and bottom borders with different shades of the background color. Keep in mind the <code>first-child</code> and <code>last-child</code> CSS selectors are not supported by older browsers. You can read more about this <a href="http://www.quirksmode.org/css/firstchild.html" target="_blank">here</a>. To get around it, you can use some <a href="http://api.jquery.com/category/selectors/child-filter-selectors/" target="_blank">jQuery</a> to support older browsers.<br />
<strong>CSS</strong></p>
<pre>#indented ul{
	margin: 20px 0; padding: 0;
	list-style: none;
}
#indented ul li {
	border-top: 1px solid #333;
	border-bottom: 1px solid #111;
}
#indented ul li:first-child {border-top: none;}
#indented ul li:last-child {border-bottom: none;}
#indented ul li a {
	padding: 10px;
	display: block;
	color: #fff;
	text-decoration: none;
}
#indented ul li a:hover {background: #111;}</pre>
<h4>Related Articles</h4>
<ul>
<li><a href="http://net.tutsplus.com/tutorials/html-css-techniques/quick-tip-multiple-borders-with-simple-css/" target="_blank">Quick Tip: Multiple Borders with Simple CSS</a></li>
<li><a href="http://nicolasgallagher.com/multiple-backgrounds-and-borders-with-css2/" target="_blank">Multiple Backgrounds and Borders with CSS 2.1</a></li>
<li><a href="http://css-tricks.com/css-trick-creating-a-body-border/" target="_blank">CSS Trick: Creating a Body-Border</a></li>
<li><a href="http://www.vanseodesign.com/css/creating-shapes-with-css-borders/" target="_blank">Creating Shapes With CSS Borders</a></li>
<li><a href="http://desandro.com/resources/css-speech-bubble-icon/" target="_blank">CSS SPEECH BUBBLE</a></li>
</ul>
<h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://www.sohtanaka.com/web-design/css-overflow-property-quick-tip/" title="Correcting Orphans w/ Overflow">Correcting Orphans w/ Overflow</a></li><li><a href="http://www.sohtanaka.com/web-design/noise-texture-in-photoshop/" title="Noise Texture in Photoshop">Noise Texture in Photoshop</a></li><li><a href="http://www.sohtanaka.com/web-design/css-sprites-wout-background-images/" title="CSS Sprites w/out Using Background Images">CSS Sprites w/out Using Background Images</a></li><li><a href="http://www.sohtanaka.com/web-design/simple-accordion-w-css-and-jquery/" title="Simple Accordion w/ CSS and jQuery">Simple Accordion w/ CSS and jQuery</a></li><li><a href="http://www.sohtanaka.com/web-design/mastering-css-getting-started-guest-post/" title="Mastering CSS : Getting Started &#8211; Guest Post">Mastering CSS : Getting Started &#8211; Guest Post</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.sohtanaka.com/web-design/css-border-tricks-tutorial/feed/</wfw:commentRss>
		<slash:comments>53</slash:comments>
		</item>
		<item>
		<title>Inspiration Fridays &#8211; Ronald Jenkees</title>
		<link>http://www.sohtanaka.com/web-design/inspiration-fridays-ronald-jenkees/</link>
		<comments>http://www.sohtanaka.com/web-design/inspiration-fridays-ronald-jenkees/#comments</comments>
		<pubDate>Fri, 04 Jun 2010 08:42:20 +0000</pubDate>
		<dc:creator>Soh</dc:creator>
				<category><![CDATA[This is Sick!]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://www.sohtanaka.com/?p=4168</guid>
		<description><![CDATA[I absolutely love watching talent that comes from the soul. I mean people who can bust, flow, freestyle, jam, whatever you want to call it straight out of feeling alone. Being a dancer I have learned to appreciate different kinds of talents out there that is driven by the soul. Whether you are a musician, [...]]]></description>
			<content:encoded><![CDATA[<p>I absolutely love watching talent that comes from the soul. I mean people who can bust, flow, freestyle, jam, whatever you want to call it straight out of feeling alone. Being a dancer I have learned to appreciate different kinds of talents out<span id="more-4168"></span> there that is driven by the soul. Whether you are a musician, artist, dancer, or singer, its beautiful when its coming from your heart and your mind is completely free.  When I watch Ronald Jenkees, I can just see how free he is&#8230; <a href="http://www.ronaldjenkees.com/" target="_blank">Ronald Jenkees</a> is off the hook. Enjoy!</p>
<blockquote><p>&#8220;Ronald Jenkees first gained fame on the site YouTube when he posted a series of videos of himself playing his Korg Triton LE and/or Yamaha Motif XS8 keyboards, often accompanied by beats he composed using FL Studio. The performances were often improvised and are influenced primarily by hip-hop and jazz.&#8221;</p></blockquote>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="500" height="405" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/lg8LfoyDFUM&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;border=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="500" height="405" src="http://www.youtube.com/v/lg8LfoyDFUM&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;border=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="500" height="405" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/0O2aH4XLbto&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;border=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="500" height="405" src="http://www.youtube.com/v/0O2aH4XLbto&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;border=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="500" height="405" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/WEcckX1kHWI&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;border=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="500" height="405" src="http://www.youtube.com/v/WEcckX1kHWI&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;border=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="500" height="405" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/smE-uIljiGo&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;border=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="500" height="405" src="http://www.youtube.com/v/smE-uIljiGo&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;border=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h3>Like What You Hear?</h3>
<ul>
<li><a href="http://www.ronaldjenkees.com/" target="_blank">Official Website and Blog</a></li>
<li><a href="http://www.youtube.com/user/ronaldjenkees" target="_blank">Youtube Channel</a></li>
<li><a href="http://www.last.fm/music/Ronald+Jenkees" target="_blank">LastFM Radio</a></li>
</ul>
<p><a href="http://www.ronaldjenkees.com/"><img class="center" title="Ronald Jenkees" src="http://stblog.tanaka.netdna-cdn.com/wp-content/uploads/ronald-jenkees.jpg" alt="Ronald Jenkees" /></a></p>
<h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://www.sohtanaka.com/web-design/the-glitch-mob/" title="The Glitch Mob">The Glitch Mob</a></li><li><a href="http://www.sohtanaka.com/web-design/dub-fx-the-future-of-beat-boxing/" title="Dub FX &#8211; The Future of Beat Boxing">Dub FX &#8211; The Future of Beat Boxing</a></li><li><a href="http://www.sohtanaka.com/web-design/inspiration-fridays-pretty-lights/" title="Inspiration Fridays &#8211; Pretty Lights">Inspiration Fridays &#8211; Pretty Lights</a></li><li><a href="http://www.sohtanaka.com/web-design/inspiration-fridays-rodney-mullen/" title="Inspiration Fridays &#8211; Rodney Mullen">Inspiration Fridays &#8211; Rodney Mullen</a></li><li><a href="http://www.sohtanaka.com/web-design/exit-through-the-gift-shop-documentary/" title="Exit Through The Gift Shop">Exit Through The Gift Shop</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.sohtanaka.com/web-design/inspiration-fridays-ronald-jenkees/feed/</wfw:commentRss>
		<slash:comments>25</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced) (user agent is rejected)
Content Delivery Network via stblog.tanaka.netdna-cdn.com

Served from: www.sohtanaka.com @ 2010-09-02 15:24:42 -->