<?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>TutWow &#187; Tips</title>
	<atom:link href="http://www.tutwow.com/category/tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tutwow.com</link>
	<description>Playing Creativity Tag</description>
	<lastBuildDate>Mon, 30 Jan 2012 17:48:27 +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>CSS Remove Textarea Scrollbar</title>
		<link>http://www.tutwow.com/htmlcss/css-remove-textarea-scrollbar/</link>
		<comments>http://www.tutwow.com/htmlcss/css-remove-textarea-scrollbar/#comments</comments>
		<pubDate>Thu, 23 Jun 2011 18:33:58 +0000</pubDate>
		<dc:creator>Ben Lind</dc:creator>
				<category><![CDATA[HTML/CSS]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.tutwow.com/?p=1359</guid>
		<description><![CDATA[One of the frustrations of browser testing is that Internet Explorer often renders elements of the page in ways you would never expect. This article will show you how to remove the nasty "disabled" scrollbar from textareas with CSS.]]></description>
			<content:encoded><![CDATA[<p>One of the frustrations of browser testing is that Internet Explorer often renders elements of the page in ways you would never expect. One such example is in scrollbars on textareas. IE (and some other browsers) likes to throw scrollbars into your textareas even when they&#8217;re not necessary.</p>
<p>Thankfully, there is a very simple and easy way to fix this.</p>
<h1>The Solution</h1>
<p>To fix this little annoyance, just add this one line of code to your textarea&#8217;s CSS:</p>
<pre>textarea {
     overflow: auto;
}</pre>
<p>That&#8217;s it! Easy, right? Now the scrollbar will only show when it&#8217;s <em>necessary</em>. In other words, it will be invisible until enough text is written in the textarea to grow beyond its bounds, in which case the bar will be shown.</p>
<h1>Want to <em>really</em> kill that scrollbar?</h1>
<p>Just add this line of code to your textarea&#8217;s CSS, and the scrollbar will <em>never</em> be shown, even if the user fills up the textarea!</p>
<pre>textarea {
     overflow: hidden;
}</pre>
<p>I wouldn&#8217;t recommend doing that unless you have a good reason, though, because you won&#8217;t be able to see what you&#8217;re typing into a textarea with that CSS. It can be useful sometimes, though. Try it out!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tutwow.com/htmlcss/css-remove-textarea-scrollbar/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Turn Your Mac Menu Bar Black</title>
		<link>http://www.tutwow.com/mac/turn-your-mac-menu-bar-black/</link>
		<comments>http://www.tutwow.com/mac/turn-your-mac-menu-bar-black/#comments</comments>
		<pubDate>Tue, 10 Aug 2010 01:45:05 +0000</pubDate>
		<dc:creator>Ben Lind</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.tutwow.com/?p=1160</guid>
		<description><![CDATA[Mac OS is, in my opinion, the most beautiful operating system out there. Today I will show you how to turn the menu bar black instead of the usual gray.]]></description>
			<content:encoded><![CDATA[<p>Mac OS is, in my opinion, the most beautiful operating system out there. I won&#8217;t go into the reasons why I think this for the sake of limiting hot discussion, but I truly do love its design and user experience.</p>
<p>That being said, there are always those of us who like to customize our computers to crazy lengths just so that they look different from the &#8220;normal&#8221;. Thankfully, Mac has a lot of ways of doing just this (some of which I hope to write about in future articles), and one of them is by turning the menu bar at the top of the screen black with white text instead of the usual gray with black text.</p>
<h1>How?</h1>
<p>Let&#8217;s get down to the details:</p>
<ol>
<li>Go download the <a href="http://docs.blacktree.com/nocturne/nocturne">Nocturne app</a> from <a href="http://blacktree.com/">Blacktree</a>.</li>
<li>Install the app by dragging it into the Applications folder on your Mac.</li>
<li>Start the app and open up the preferences by pressing Cmd + , (comma).</li>
<li>Under the &#8220;Menu bar&#8221; section, click the box that says &#8220;Invert menu bar&#8221;.</li>
<li>Enjoy!</li>
</ol>
<h1>Why not use a different theming app?</h1>
<p>You might be wondering why I chose to use a big program like Nocturne (that has many other features besides menu bar inversion) instead of using an app specifically designed for changing the appearance of a mac (like ThemePark). The reason is that even though apps like ThemePark can change the menu bar background, they can&#8217;t change the menu bar font. So if you used ThemePark to make the menu bar black, the font would remain black as well, making the menus impossible to read. Nocturne, on the other hand, simply inverts the entire menu bar; so if you start out with a white menu bar with black text, you will end up with a black menu bar with white text.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tutwow.com/mac/turn-your-mac-menu-bar-black/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Fix the YAPB &#8220;File Does Not Exist&#8221; Problem</title>
		<link>http://www.tutwow.com/tips/fix-the-yapb-file-does-not-exist-problem/</link>
		<comments>http://www.tutwow.com/tips/fix-the-yapb-file-does-not-exist-problem/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 17:57:08 +0000</pubDate>
		<dc:creator>Ben Lind</dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.tutwow.com/?p=1149</guid>
		<description><![CDATA[Recently I installed the Wordpress "Yet Another Photoblog" (YAPB) plugin to use on my up-and-coming photoblog. I had heard a lot about it all over the web, and I figured that if it was so popular, I might as well give it a try.]]></description>
			<content:encoded><![CDATA[<p>Recently I installed the WordPress &#8220;Yet Another Photoblog&#8221; (YAPB) plugin to use on my up-and-coming photoblog. I had heard a lot about it all over the web, and I figured that if it was so popular, I might as well give it a try.</p>
<h1>The Problem</h1>
<p>Everything went well with YAPB until I decided to upload my first photo to my blog. I created a new post, added a title, image, and description, and pressed submit. Then I waited. And waited. And waited. After quite a while, the web page decided to load for me and it spewed a rather cryptic error that went along the lines of &#8220;Warning: unlink() [function.unlink]: No such file or directory&#8221;. Below that it simply said &#8220;Error: file does not exist!&#8221; My super-geeky brain didn&#8217;t seem to be working well that day, so I couldn&#8217;t seem to decipher the error until I turned to my extra-super-geeky friend Google and asked him what I should do.</p>
<p>A quick search showed that many other people seemed to be having the same problem, and when I searched a bit deeper, I managed to trace the solution.</p>
<h1>The Solution</h1>
<p>It&#8217;s quite simple, really:</p>
<ol>
<li><strong>Login</strong> to your WordPress admin area.</li>
<li>Navigate to <strong>Settings &gt; Miscellaneous</strong>.</li>
<li>In the <em>Store uploads in this folder</em> text box, enter &#8220;wp-content/uploads&#8221;.</li>
<li>Click the <em>Save Changes</em> button.</li>
</ol>
<p>That&#8217;s it! For some reason, when WordPress says that the default upload folder is wp-content/uploads, it&#8217;s really lying. Either that, or YAPB is holding a knife to its back and <em>making</em> it lie. Either way, the above steps should solve your problem once and for all. You can now upload photos to your photoblog happily ever after.</p>
<p>Let me know in the comments if this solution works for you!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tutwow.com/tips/fix-the-yapb-file-does-not-exist-problem/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>The Problem with Inline Comment Replies</title>
		<link>http://www.tutwow.com/tips/the-problem-with-inline-comment-replies/</link>
		<comments>http://www.tutwow.com/tips/the-problem-with-inline-comment-replies/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 15:52:31 +0000</pubDate>
		<dc:creator>Ben Lind</dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.tutwow.com/?p=929</guid>
		<description><![CDATA[Inline comment replies are great if you want to reply to a comment on a blog, but are they all they are cracked up to be?  This article explains why they just might not be.]]></description>
			<content:encoded><![CDATA[<p>When <a href="http://www.tutwow.com/wordpress/wordpress-27/">WordPress 2.7</a> was released, everyone was happy and excited that it included a new feature called inline comment replies.  For most people, it was an answer to prayer, but for others it turned out to be not so great.</p>
<h2>What are inline comment replies?</h2>
<p><img class="alignnone" title="Inline Comment Replies Preview" src="http://img.tutwow.com/InlineReplies/InlineExample.jpg" alt="" width="540" height="200" /></p>
<p>Inline comment replies is a feature that lets you reply to comments on a blog, and have your reply show up directly below the comment you are replying to.</p>
<p>Imagine this scenario: you&#8217;re reading an interesting article on one of your favorite topics, and after you finish reading, you decide to read through the comments and see what other people are saying about it.  You start going through the comments, and see one towards the top that&#8217;s from a guy who has a question about the article.  Since you have a lot of experience on the article&#8217;s topic, you immediately know the answer to his question and decide to answer it.  There&#8217;s only one problem &#8211; after that guy posted his question, 50 other people posted comments below his.  Now, if you were to post a comment in reply to his question, it would be so far away that he probably wouldn&#8217;t ever see it.  This is a pretty big problem, right?</p>
<p><em>Enter inline comment replies</em>.  Now, if the blog you&#8217;re reading has this feature installed, you can simply click &#8220;reply&#8221; on the guy&#8217;s question, type your answer, and your comment will show up right below his (indented a bit so it stands out from all the other comments).  Pretty nice, right?  Or is it?</p>
<h2>The problem</h2>
<p>Though this may sound like a great feature, and in fact it is useful most of the time, there is one problem with it.  If you have an extremely popular blog that gets tons of comments within seconds of a new article being posted, then everyone is going to want to be one of the first to comment so that their website link is clicked most.  Normally, you could only do this if you literally sat on the site and clicked refresh every couple of seconds until a new article showed up, and then typed a comment as fast as you could.  However, with inline replies, you can just reply to the first comment on a post, and your reply is displayed right below the first comment.</p>
<p>If the first comment is an actual question, and the reply is an answer to that question, then this is fine.  But if the reply is nothing more than a way to get a link to the top of the comment list, then this can become a problem.</p>
<h2>The solution?</h2>
<p>The obvious solution for this is to simply not use inline comment replies on your blog.  However, sometimes it is a nice feature to have on your blog, and you don&#8217;t want to give it up.  So what do you do?</p>
<p>One thing you can do is manually delete comments that are obviously from people trying to just get to the top of the comment list.  The problem with this is the 1) the commenter might wonder where his comment went and get angry at you for deleting it or 2) the comment could actually have some good content in it, but doesn&#8217;t have anything to do with the comment it&#8217;s in reply to.  Deleting it would be removing legitimate content.</p>
<p>Another thing you could do is just move the reply comment to the bottom of the list.  The commenter might get annoyed that his comment was moved, but at least he didn&#8217;t get away with his scheme.</p>
<p>So now I ask you &#8211; do you worry about this on your blog, and if so, how do you prevent it from happening?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tutwow.com/tips/the-problem-with-inline-comment-replies/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Make the Most of Your 140 Twitter Characters</title>
		<link>http://www.tutwow.com/twitter/make-the-most-of-your-140-twitter-characters/</link>
		<comments>http://www.tutwow.com/twitter/make-the-most-of-your-140-twitter-characters/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 20:37:59 +0000</pubDate>
		<dc:creator>Ben Lind</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.tutwow.com/?p=910</guid>
		<description><![CDATA[When you answer Twitter's "What are you doing?" question, you can only use 140 characters.  There are many ways to make the most of this space, and I list a few of them in this article.]]></description>
			<content:encoded><![CDATA[<p><a href="http://twitter.com/">Twitter</a>, the ever faster growing social network, is famous for its &#8220;What are you doing?&#8221; question.  You just type in what you&#8217;re currently doing, click update, and your message gets sent off to all your followers and friends.  There is one catch, though, and that is that you have to describe what you&#8217;re doing in less than 140 characters.</p>
<p>This can be extremely hard to do, especially if you have a lot of things to say, and a lot of people don&#8217;t even bother to sign up because of it.  Don&#8217;t give up on Twitter yet, however.  Though it may be hard to sum up your thoughts in 140 characters, there are ways that you slim them down without really removing any content.  I like to call it &#8220;making the most of your 140 characters&#8221;, and below I have listed a few of the ways you can do just that.</p>
<h2>1. Shorten URLs</h2>
<p><img class="alignnone" title="Short URL" src="http://img.tutwow.com/MakeTheMostOfYourTweets/ShortURL.jpg" alt="" width="540" height="200" /></p>
<p>If you&#8217;re posting a URL in your tweet, then the best way you can cut down space is by using a URL shortening service.  Basically, you type your long URL into one of these services, and out pops a tiny URL that you can use in your tweets.  Here are a few of my favorite shorteners and why I like them:</p>
<ul>
<li><a href="http://u.nu/">u.nu</a>
<ul>
<li>It is the <em>absolute shortest</em> URL possible.  No url can be shorter than three characters, and that is exactly what u.nu is.  If you&#8217;re looking to make your URLs as short as you can, then this is the service for you.</li>
<li>After you shorten a URL, it gives you the shortened link, HTML code for the link, and even BBCODE for the link so you can use it on a website of forum without typing code.</li>
<li>To see information about a URL shortened with u.nu, simply put a question mark, &#8220;?&#8221;, at the end of it.  This shows you where the URL redirects to, when it was shortened, and how many people have clicked on it.</li>
</ul>
</li>
<li><a href="http://tr.im/">tr.im</a>
<ul>
<li>It has lots of extensions that let you access it from FireFox, your Mac dashboard, or any other browser.</li>
<li>It is very fast, which means you can shorten URLs with lightning speed.</li>
<li>After you shorten and post a URL to Twitter, you can see statistics on how many people clicked the link, where they are from, and more.</li>
<li>You can customize it so that it works just like you need it to.</li>
</ul>
</li>
<li><a href="http://is.gd/">is.gd</a>
<ul>
<li>It also has lots of extensions like a FireFox plugin, bookmarklet, Dashboard widget, and Mac app.</li>
<li>You can preview a shortened URL (see where it redirects to without actually going there) by putting a hyphen, &#8216;-&#8217;, at the end of the is.gd URL.</li>
</ul>
</li>
<li><a href="http://bit.ly/">bit.ly</a>
<ul>
<li>Just like the two mentioned above, it gives you extensions like a FireFox plugin, bookmarklet, <a href="http://bit.ly/pages/tools">sidebar</a>, and even a Gmail gadget.</li>
<li>You can see real-time analytics of how your links are doing, like how many people are clicking on them.</li>
<li>You can save your preferences and always use it the way you want.</li>
</ul>
</li>
</ul>
<p>Though those shorteners have extremely short domain names,</p>
<p><em>Note:</em> If you&#8217;re looking for some good Twitter apps for your Mac, you should read another post here at TutWow named <a href="http://www.tutwow.com/roundups/5-free-twitter-apps-for-your-mac/">7 Free Twitter Apps for Your Mac</a>.</p>
<h2>2. Remove multiple RT sources</h2>
<p><img class="alignnone" title="Infinite RTs" src="http://img.tutwow.com/MakeTheMostOfYourTweets/InfiniteRTs.jpg" alt="" width="540" height="200" /></p>
<p>In Twitter, when someone else tweets something cool and you want to tweet the same thing, you use something called a &#8220;Retweet&#8221;.  This is how it works: your friend Joe (username joe987) posts a link to an amazing portfolio, and you want to spread it around among your followers.  To do this, you copy his tweet, post it into a new tweet, and add &#8220;RT @joe987&#8243; to the front of it.  This not only shows the cool tweet, but it also gives credit to the original tweeter.</p>
<p>Sometimes you see a retweet, or a tweet that already has a &#8220;RT @username&#8221; on it, but you want to share the tweet with your friends as well.  Most people just add another RT onto the front of the tweet (&#8220;RT @one RT @two <em>tweet</em>&#8220;), but this adds a bunch of extra characters that aren&#8217;t really necessary.  The important thing is that you give credit to the original tweeter, so to make the most of your tweet space, you should remove the first RT.  So if you had &#8220;RT @secondary RT @original <em>tweet</em>&#8220;, you would change it to just &#8220;RT @original <em>tweet</em>&#8220;.</p>
<h2>3. Use one space at the end of sentences</h2>
<p><img class="alignnone" title="Two spaces are bad. One spacee is good." src="http://img.tutwow.com/MakeTheMostOfYourTweets/TwoSpaces.jpg" alt="" width="540" height="200" /></p>
<p>As your grammar teacher used to tell you, &#8220;always use two spaces at the end of your sentences&#8221;.  This is great, if you&#8217;re writing articles or papers, but for Twitter, it just grows your tweets.  Though this may not save tons of space, it can help if you&#8217;re really pressed for characters.  For example, take a look at this tweet:</p>
<p><em>Hey tweeple!  How&#8217;s your day going?  I&#8217;m feeling great today, and I hope you are too.  I&#8217;m working on a new article for my blog.  How about you?</em></p>
<p>If you put that into Twitter, you&#8217;ll see that it&#8217;s four characters too long.  But if you remove the extra space between the sentences, you come out with an even 140 characters.  Not huge, but useful!</p>
<h2>4. Use Contractions</h2>
<p><img class="alignnone" title="I will use contractions." src="http://img.tutwow.com/MakeTheMostOfYourTweets/IWillUseContractions.jpg" alt="" width="540" height="200" /></p>
<p>Often, when tweeting, you talk about yourself, saying things like &#8220;I am eating spaghetti&#8221; or &#8220;I will go for a walk tomorrow&#8221;.  To save extra space, use contractions as often as possible.  So instead of the previous tweets, you would say &#8220;I&#8217;m eating spaghetti&#8221; or &#8220;I&#8217;ll go for a walk tomorrow&#8221;.</p>
<h2>5. Substitute Letters for Words</h2>
<p><img class="alignnone" title="C U 2morrow!" src="http://img.tutwow.com/MakeTheMostOfYourTweets/CU2Morrow.jpg" alt="" width="540" height="200" /></p>
<p>Though I don&#8217;t recommend it since it looks rather unprofessional, you can replace words like &#8220;you&#8221; and &#8220;are&#8221; with their sound-alike letters &#8220;U&#8221; and &#8220;R&#8221;.  This saves lots of space, but as I said, you shouldn&#8217;t do it if you&#8217;re trying to sound professional.</p>
<p>One thing you can do that doesn&#8217;t look as unprofessional is use the &#8220;&amp;&#8221; and &#8220;@&#8221; signs in place of &#8220;and&#8221; and &#8220;at&#8221;.  Since most people are used to reading these symbols every day, they won&#8217;t notice the difference as easily. (thanks <a title="SpinnakerPro" href="http://www.spinnakerpro.com/">Chris</a> and <a href="http://www.malcolmcoles.co.uk/">Malcolm Coles</a> for sharing this tip in the comments!)</p>
<p>A good website that does this for you automatically is <a title="Update Twitter Using Shorthand Language" href="http://twonvert.com/">Twonvert</a>.  You just type in your original, long tweet, and Twonvert converts it to SMS shorthand on the fly.</p>
<h2>6. Use multiple tweets</h2>
<p><img class="alignnone" title="Read this second." src="http://img.tutwow.com/MakeTheMostOfYourTweets/ReadThisSecond.jpg" alt="" width="540" height="200" /></p>
<p>Ok, this might not be a way to make the most of your 140 characters, but the fact is, if you have something great on your mind and you can&#8217;t possibly let it out in 140 characters, then you&#8217;re going to need multiple tweets to convey your message clearly.  To do this, post the first half of your thought in the first tweet and the second half in the second.  True, this makes people read bottom up, but sometimes it&#8217;s necessary.</p>
<h2>7. Remove unnecessary words</h2>
<p><img class="alignnone" title="Remove unnecessary words." src="http://img.tutwow.com/MakeTheMostOfYourTweets/RemoveWords.jpg" alt="" width="540" height="200" /></p>
<p>When we write, we often use words that aren&#8217;t really necessary or could be removed without taking away from our meaning.  As I said above, this can be good if you&#8217;re writing articles or a paper, but it doesn&#8217;t make sense for Twitter.  When tweeting, you should remove your flowery language and post just the basic meaning of what you&#8217;re trying to say.</p>
<p>For example, instead of writing &#8220;I am being filled with such an awesome sensation of joy and gratefulness that I can barely portray it with mere words&#8221;, you could just say &#8220;I&#8217;m happy&#8221;, or &#8220;I&#8217;m so happy I can&#8217;t describe it&#8221;.  See the difference in length?</p>
<p><em>Note:</em> Thanks to <a href="http://techshots.net/">Jaremy</a> in the comments for this tip.</p>
<h2>More?</h2>
<p>There are many ways to shorten your tweets, as you can see.  Did I miss one of your favorite techniques?  Let me know in the comments below, and I&#8217;ll add it to the list.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tutwow.com/twitter/make-the-most-of-your-140-twitter-characters/feed/</wfw:commentRss>
		<slash:comments>42</slash:comments>
		</item>
		<item>
		<title>Secret Photoshop Layer Styles Shortcut</title>
		<link>http://www.tutwow.com/photoshop/secret-photoshop-layer-styles-shortcut/</link>
		<comments>http://www.tutwow.com/photoshop/secret-photoshop-layer-styles-shortcut/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 20:23:03 +0000</pubDate>
		<dc:creator>Ben Lind</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.tutwow.com/?p=638</guid>
		<description><![CDATA[Photoshop is known for its almost endless supply of shortcut commands that speed up the process of working with images.  I've found that I can do most everything without even touching the mouse.  Here's a new shortcut I found recently.]]></description>
			<content:encoded><![CDATA[<p>Photoshop is known for its almost endless supply of shortcut commands that speed up the process of working with images.  I&#8217;ve found that I can do almost everything I need without even touching the mouse, which is not only fast, but is easy and fun to show off to other people.</p>
<p>Though most of the shortcut commands are documented in the Photoshop &#8220;Keyboard Shortcuts&#8221; dialog (see below), there are some &#8220;secret shortcuts&#8221; that aren&#8217;t documented anywhere.  Many of these shortcuts have already been found, and there are articles about them on <a title="Photoshop Secret Shortcuts" href="http://www.webdesignerwall.com/tutorials/photoshop-secret-shortcuts/" target="_blank">Web Designer Wall</a> and <a title="101 Hidden Tips &amp; Secrets for Photoshop" href="http://www.11amdesign.com/faq/index.php?sid=1708%C3%A2%C5%92%C2%A9=en&amp;action=artikel&amp;cat=1&amp;id=343&amp;artlang=en" target="_blank">11AM Design</a>, to name a few.  However, I&#8217;m sure there are many other shortcuts that we haven&#8217;t found out about yet (and Adobe keeps adding more in each release).  I found a new one today, and I call it the &#8220;secret layer styles shortcut&#8221;.</p>
<p><img class="alignnone size-large wp-image-707" title="Photoshop Keyboard Shortcuts Editor" src="http://www.tutwow.com/wp-content/uploads/2009/03/keyboard-shortcuts-and-menus-1-540x242.jpg" alt="Photoshop Keyboard Shortcuts Editor" width="540" height="242" /><span id="more-638"></span></p>
<h2>Switching Between Style Dialogs</h2>
<p>Here&#8217;s how you can use the new shortcut:  In Photoshop, double-click on a layer that you want to add styles to.  This will bring up the</p>
<p>When in the Photoshop layer styles dialog, you can press Cmd (Ctrl) + 0-9 and it will switch to the style corresponding with that number.  For example, if I have some text that I want to add an Outer Glow to, I would double-click on the text layer to open up the Blending Options dialog, press Cmd + 3 to switch to the Outer Glow tab, and enter the settings I want.</p>
<p><img class="alignnone" title="Layer Style Shortcut" src="http://img.tutwow.com/scaled_Layer_Style.jpg" alt="" width="540" height="411" /></p>
<p>Sure, it might not be the most revolutionary shortcut in the world, but it can help to speed up your projects a bit, which is always great.</p>
<p><em>(thank you <a title="Everaldo" href="http://www.everaldo.com/" target="_blank">Everaldo</a> for the key icon)</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tutwow.com/photoshop/secret-photoshop-layer-styles-shortcut/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>10 Ways to Get the News Out About Your Blog</title>
		<link>http://www.tutwow.com/tips/10-ways-to-get-the-news-out-about-your-blog/</link>
		<comments>http://www.tutwow.com/tips/10-ways-to-get-the-news-out-about-your-blog/#comments</comments>
		<pubDate>Mon, 03 Nov 2008 22:43:41 +0000</pubDate>
		<dc:creator>Ben Lind</dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.tutwow.com/?p=367</guid>
		<description><![CDATA[With the increasing amount of blogs showing up everywhere, everyone wants theirs to be the most popular.  This is hard by definition, but there are a few ways to make it easier to get the news out about your blog.]]></description>
			<content:encoded><![CDATA[<p>In this day and age, everyone is turning to the internet to satisfy their communication needs.  Over the past few decades, &#8220;social&#8221; sites such as        My space, Facebook, and Twitter have made it extremely easy to stay in contact with friends, family, and whoever else you want.</p>
<p>Now, a new age has arisen, the age of the blog.  Everyone seems to have one &#8211; may it be from WordPress, Blogger, Drupal, LiveJournal, or countless others &#8211; and they use it to talk about whatever they feel like &#8211; politics, entertainment, education, or that wonderful tortellini they had last night.  With the millions of blogs on the internet, many people wonder how they can give their blog a boost in traffic, get a good page ranking in search engines, or simply spread the word about it.</p>
<p>Below, I&#8217;ve put together 10 ways that you can get more traffic to and spread the news about your blog.  Enjoy!</p>
<p><span id="more-367"></span></p>
<h1>1. Have Good and Relevant Content</h1>
<p>The number one thing that you can do to ensure that visitors come to your blog, stay on your blog, and tell their friends about your blog, is to have good, relevant content.  No matter how good your design is, how much you tell other people about it, or even how high your page rank is, no one will come back to a blog that has junky content.  Notice that I also said <em>relevant</em> content, which is just as important.  If someone comes to your blog expecting to read about art, and they find themselves reading about your latest get-rich-quick scheme, they aren&#8217;t very likely to come back again.</p>
<h1>2. Optimize for Search Engines</h1>
<p>Search engine optimization (SEO) is a hot topic among web designers today.  Basically, it is a way to give your blog a higher rank on search engines such as <a title="Google Search" href="http://www.google.com/" target="_blank">Google</a>, <a title="Yahoo! Search" href="http://search.yahoo.com/" target="_blank">Yahoo!</a>, <a title="Microsoft Live Search" href="http://www.live.com/" target="_blank">Live</a>, and <a title="Ask Search" href="http://www.ask.com/" target="_blank">Ask</a>.  This is accomplished by doing things such as placing meta information at the top of your HTML files, not using too much Flash, and, as I said before, writing relevant content.  Here are a few articles to help you learn more about this interesting subject:</p>
<p><a title="Do-It-Yourself Search Engine Optimization" href="http://lorelle.wordpress.com/2006/01/15/dyi-search-engine-optimization/" target="_blank">http://lorelle.wordpress.com/2006/01/15/dyi-search-engine-optimization/</a></p>
<p><a title="SEO Guide for Designers" href="http://www.webdesignerwall.com/general/seo-guide-for-designers/" target="_blank">http://www.webdesignerwall.com/general/seo-guide-for-designers/</a></p>
<p><a title="4 Ways CSS Can Improve Your SEO" href="http://www.cssnewbie.com/4-ways-css-can-improve-your-seo/" target="_blank">http://www.cssnewbie.com/4-ways-css-can-improve-your-seo/</a></p>
<h1>3. Set Up an RSS Feed for Your Posts</h1>
<p>People are busy &#8211; they might love your blog and plan on coming back, but most likely they will forget.  So you need a way to remind them about it.  Meet the RSS feed.  If someone &#8220;subscribes&#8221; to your RSS feed, then whenever you post new content to your blog, they will either get an email about it, or they will see the new content in a <a title="List of Feed Readers (Aggregators)" href="http://en.wikipedia.org/wiki/List_of_feed_aggregators" target="_blank">feed reader</a>.</p>
<p>There are many different ways to set up an RSS feed for your blog, but my favorite is <a title="FeedBurner" href="http://www.feedburner.com/" target="_blank">FeedBurner</a> because it is extremely easy to use and set up.  Most of the blogging platforms mentioned earlier (WordPress, Blogger, etc.) come built in with RSS feeds set up, but they give you very limited customization and analytics.  Feedburner, on the other hand, takes those bland feeds, and spices them up with lots of different options like email subscription, social bookmarking, ad imbedding, and many, many more.</p>
<h1>4. Write Articles for Other Sites</h1>
<p>Although this might be taking away content from your own site, if you write articles for other websites, then that will generate more traffic to your own website.  Make sure that the websites that you write for are big and get a lot of traffic; otherwise, you will just be taking away good content from your own blog.</p>
<h1>5. Add Social Bookmarking Links to Your Posts</h1>
<p>At the bottom of all of your posts, you should add links that &#8220;push&#8221; your article to the top of some of the most popular social bookmarking sites.  This way, if someone likes your post and &#8220;diggs&#8221; it, then it has more of a chance of being at the top of Digg (or whatever site), and more chance of generating traffic.  Here are the most popular social bookmarking sites:</p>
<p><a title="Digg" href="http://www.digg.com/" target="_blank">Digg</a></p>
<p><a title="Del.icio.us" href="http://del.icio.us/" target="_blank">Del.icio.us</a></p>
<p><a title="Reddit" href="http://www.reddit.com/" target="_blank">Reddit</a></p>
<p><a title="Stumbleupon" href="http://www.stumbleupon.com/" target="_blank">Stumbleupon</a></p>
<p><a title="Design Float" href="http://www.designfloat.com/" target="_blank">Design Float</a> (if your blog has design-related content)</p>
<h1>6. Submit Your Blog to a CSS Gallery</h1>
<p>A CSS gallery is a website that showcases great use of CSS in design.  Of course, before you can submit your blog to one of these galleries, you will have to have a good CSS design, but if you do, then you will get a lot of traffic.  Here are some of my favorite galleries:</p>
<p><a title="CSS Loaf" href="http://www.cssloaf.com/" target="_blank">CSS Loaf</a></p>
<p><a title="Best Web Gallery" href="http://bestwebgallery.com/page/5/" target="_blank">Best Web Gallery</a></p>
<p><a title="CSS Drive" href="http://www.cssdrive.com/" target="_blank">CSS Drive</a></p>
<p><a title="CSS Beauty" href="http://www.cssbeauty.com/gallery/" target="_blank">CSS Beauty</a></p>
<p><a title="CSS Vault" href="http://cssvault.com/" target="_blank">CSS Vault</a></p>
<h1>7. Submit Your Tutorials to a Tutorial Listing Site</h1>
<p>Do you write tutorials on your blog?  If so, there are a lot of sites that will list them for you, giving you some extra traffic.  Here are some of the major ones:</p>
<p><a title="P2L" href="http://www.pixel2life.com/" target="_blank">Pixel2Life</a></p>
<p><a title="Good-Tutorials" href="http://www.good-tutorials.com/" target="_blank">Good-Tutorials</a></p>
<p><a title="Tutorialized" href="http://www.tutorialized.com/" target="_blank">Tutorialized</a></p>
<p><a title="Tut City" href="http://www.tutcity.com/" target="_blank">Tutcity</a></p>
<h1>8. Start an Email Newsletter</h1>
<p>As I said before, many people might love your blog&#8217;s content, but forget about it after a few weeks.  Another way to stop this from happening is to start a monthly email newsletter that gives news about the site, new articles, freebies, or whatever else you think might interest the readers.  Granted, some people might not actually read the entire newsletter, but they will be reminded of your blog, and hopefully come back.</p>
<h1>9. Get Your Link in Anywhere</h1>
<p>Put your blog&#8217;s link in your email signature, in your forum signature, in your forum &#8220;bios&#8221;, in the comments that you write for other blogs (in the text box that says &#8220;URL&#8221;, not the actual comment, or your comment might get marked as spam), in your IM status messages, on your t-shirt along with a funny quote, or anywhere else that you (legally) can.  True, some of these things might not generate that much traffic, but anything helps.</p>
<h1>10. Tell Your Friends!</h1>
<p>As simple as it may seem, telling your friends about your &#8220;cool new site&#8221; could actually rake in some more traffic.  If you tell your friends, and they tell their friends, etc., then this could be a great option.  Of course, it depends on if your blog has good content, if your friends are interested in the topics, and if your friends have a lot of friends. <img src='http://www.tutwow.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.tutwow.com/tips/10-ways-to-get-the-news-out-about-your-blog/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>Quick Tip:  Glow Style Problems in Photoshop</title>
		<link>http://www.tutwow.com/photoshop/quick-tip-glow-style-problems-in-photoshop/</link>
		<comments>http://www.tutwow.com/photoshop/quick-tip-glow-style-problems-in-photoshop/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 17:04:16 +0000</pubDate>
		<dc:creator>Ben Lind</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.tutwow.com/?p=244</guid>
		<description><![CDATA[After all the years that I've used Photoshop, you'd think that I would have it all down by now, right? I thought so too! Until I stumbled upon a great new tool, right in the familiar old Layer Styles dialog.]]></description>
			<content:encoded><![CDATA[<p>After all the years that I&#8217;ve used Photoshop, you&#8217;d think that I would have it all down by now, right?  I thought so too!  Until, that is, I stumbled upon a great tool that I always wanted, right in the familiar old Layer Styles dialog.  That&#8217;s right, there&#8217;s an option there that I haven&#8217;t tried out until now!</p>
<p>Up till now, I always got frustrated over the Outer and Inner Glow styles not working the way I wanted them to.  I would create some random shape, and then set the outer and inner glow styles so that the shape would look something like a lightsaber, but it never worked quite how I wanted it.  Take, for example, the shape below:</p>
<p><a href="http://www.tutwow.com/WP25/wp-content/uploads/2008/09/shape.jpg" rel="lightbox[244]"><img class="alignnone size-full wp-image-245" title="Shape" src="http://www.tutwow.com/WP25/wp-content/uploads/2008/09/shape.jpg" alt="" width="500" height="291" /></a></p>
<p><span id="more-244"></span></p>
<p>As you can see, it has some tight angles, and if I put these styles onto it:</p>
<h3>Blending Options</h3>
<p><a href="http://www.tutwow.com/WP25/wp-content/uploads/2008/09/blendingoptions1.jpg" rel="lightbox[244]"><img class="alignnone size-full wp-image-247" title="Blending Options" src="http://www.tutwow.com/WP25/wp-content/uploads/2008/09/blendingoptions1.jpg" alt="" width="500" height="373" /></a></p>
<h3>Outer Glow</h3>
<p><a href="http://www.tutwow.com/WP25/wp-content/uploads/2008/09/outerglowsoft.jpg" rel="lightbox[244]"><img class="alignnone size-full wp-image-248" title="Outer Glow" src="http://www.tutwow.com/WP25/wp-content/uploads/2008/09/outerglowsoft.jpg" alt="" width="500" height="373" /></a></p>
<h3>Inner Glow</h3>
<p><a href="http://www.tutwow.com/WP25/wp-content/uploads/2008/09/innerglowsoft.jpg" rel="lightbox[244]"><img class="alignnone size-full wp-image-249" title="Inner Glow" src="http://www.tutwow.com/WP25/wp-content/uploads/2008/09/innerglowsoft.jpg" alt="" width="500" height="373" /></a></p>
<p>But that gives us the image below.  As you can see, there are white points poking out at almost all the corners.</p>
<p><a href="http://www.tutwow.com/WP25/wp-content/uploads/2008/09/whitepoints.jpg" rel="lightbox[244]"><img class="alignnone size-full wp-image-250" title="White Points" src="http://www.tutwow.com/WP25/wp-content/uploads/2008/09/whitepoints.jpg" alt="" width="500" height="273" /></a></p>
<p>So how do we fix this?  Well, as I found out, all you have to do is go into the Outer and Inner Glow options, and change the Technique from Softer to Precise.  That&#8217;s it!  So if we change the glow settings to this:</p>
<h3>Outer Glow</h3>
<p><a href="http://www.tutwow.com/WP25/wp-content/uploads/2008/09/outerglowprecise.jpg" rel="lightbox[244]"><img class="alignnone size-full wp-image-252" title="Outer Glow Precise" src="http://www.tutwow.com/WP25/wp-content/uploads/2008/09/outerglowprecise.jpg" alt="" width="500" height="373" /></a></p>
<h3>Inner Glow</h3>
<p><a href="http://www.tutwow.com/WP25/wp-content/uploads/2008/09/innerglowprecise.jpg" rel="lightbox[244]"><img class="alignnone size-full wp-image-253" title="Inner Glow Precise" src="http://www.tutwow.com/WP25/wp-content/uploads/2008/09/innerglowprecise.jpg" alt="" width="500" height="373" /></a></p>
<p>After we change those two settings, we get this:</p>
<p><a href="http://www.tutwow.com/WP25/wp-content/uploads/2008/09/final.jpg" rel="lightbox[244]"><img class="alignnone size-full wp-image-254" title="Fixed!" src="http://www.tutwow.com/WP25/wp-content/uploads/2008/09/final.jpg" alt="" width="500" height="282" /></a></p>
<p>And it&#8217;s fixed!  Now our shape is a nice glowing lightsaber, with no white corners poking out anywhere.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tutwow.com/photoshop/quick-tip-glow-style-problems-in-photoshop/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Site Analytics with Woopra</title>
		<link>http://www.tutwow.com/tips/site-analytics-with-woopra/</link>
		<comments>http://www.tutwow.com/tips/site-analytics-with-woopra/#comments</comments>
		<pubDate>Sat, 13 Sep 2008 15:39:58 +0000</pubDate>
		<dc:creator>Ben Lind</dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.tutwow.com/?p=222</guid>
		<description><![CDATA[Woopra is one of the best up-and-coming website analytics programs.  It has great features like real-time analytics, wordpress integration, live visitor tracking, and more.]]></description>
			<content:encoded><![CDATA[<p>When I first started blogging with Tutorial Wow, I didn&#8217;t consider using an analytics program for it &#8211; it just never really crossed my mind.  Then, one day, I ran across <a title="Google Analytics" href="http://www.google.com/analytics/" target="_blank">Google Analytics</a>, and that all changed.  I used that every day, going there and seeing how I was doing on traffic and visitors, and it worked great.  But I thought I was missing something.  I thought there should be some feature so that you could see how many people were on your site right then, and I couldn&#8217;t find anything like that.  I was a little bit disappointed.</p>
<p>Then, after settling to be content with Google Analytics, I read an article on one of my RSS feeds that talked about a great new analytics program called Woopra that was still in Beta.  I thought it sounded interesting, so I headed over to <a title="Woopra.com" href="http://www.woopra.com/" target="_blank">the official Woopra website</a> to take a look at the new rage.  What I found was truly amazing.  Not only was their website design awesome, but when I downloaded the actual <a title="Woopra Desktop Download" href="http://www.woopra.com/download/" target="_blank">Woopra Desktop Version</a>, I just sat there with my mouth open.  Never before have I seen a program so extremely slick as this!</p>
<p><span id="more-222"></span></p>
<p>After I got past the first &#8220;wow&#8221; of the design aspect, I got another big &#8220;wow&#8221; out of the functionality of the program.  As I said before, I had always wanted to be able to see what visitors were on my website right at the moment I was on, but Google Analytics didn&#8217;t have anything like that.  However, when I downloaded Woopra, that was one of the first things I noticed.  Now, whenever I open up the Woopra Desktop Client, I go right to the &#8220;Live&#8221; tab, and see who&#8217;s on my website right at that moment.  Pretty cool, huh?</p>
<p>And that&#8217;s not all!  There are many, many other cool features of Woopra, some of which I&#8217;ve listed below:</p>
<ul>
<li>Website Statistics (obviously) &#8211; Total Visitors, Average Time Spent per Page, Page Views/Visit, Visits Today, New Visitors Today, Total Page Views, etc.</li>
<li>Real-Time Analytics &#8211; You can see what people are doing right now.</li>
<li>Easy Installation with WordPress &#8211; Just install the plugin, and you&#8217;re good to go!</li>
<li>Real-Time Notifications &#8211; You can set up events that pop up when certain things happen &#8211; someone comes to your website, views a certain page, etc.</li>
<li>Live Visitor Chatting &#8211;  If you see someone on your website that you want to have a conversation with, just click the &#8220;Start a Conservation&#8221; button in Woopra, and you can have a live chat with them!</li>
<li>Visitor Tagging &#8211; If you know that one of your visitors is your friend, then you can &#8220;tag&#8221;, or &#8220;name&#8221; him something so that you will always know that it&#8217;s him.</li>
<li>Impressive Search &#8211; You can search every visitor that every came to your website, find out his browser, OS, country, and language.</li>
<li>Track Multiple Websites &#8211; You don&#8217;t have to just track one website, you can track <em>all</em> of your websites.</li>
</ul>
<p>So that&#8217;s pretty much it.  If you haven&#8217;t tried out Woopra for yourself yet, then I <em>really</em> encourage you to head over to <a title="Woopra.com" href="http://www.woopra.com/" target="_blank">Their Website</a> and take a look.  You won&#8217;t be disappointed!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tutwow.com/tips/site-analytics-with-woopra/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Quick Tip: CSS 100% Height</title>
		<link>http://www.tutwow.com/htmlcss/quick-tip-css-100-height/</link>
		<comments>http://www.tutwow.com/htmlcss/quick-tip-css-100-height/#comments</comments>
		<pubDate>Thu, 11 Sep 2008 17:53:39 +0000</pubDate>
		<dc:creator>Ben Lind</dc:creator>
				<category><![CDATA[HTML/CSS]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.tutwow.com/?p=186</guid>
		<description><![CDATA[A common problem among designers is how to get a div to stretch 100% of the window's height.  There are a few different techniques out there, but I came up with one that is my personal favorite, which I will share with you today.]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t know about you, but I always get frustrated trying to figure out how to get my layout to stretch vertically to 100% of the page.  I have a div that I want to stretch, but it just doesn&#8217;t stretch.  Now why wouldn&#8217;t it do that?  Today I will share the solution with you.</p>
<p>Say you have coded an HTML file like this:</p>
<pre>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt;

&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;
&lt;head&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /&gt;

&lt;title&gt;CSS 100% Height&lt;/title&gt;
&lt;link rel="stylesheet" type="text/css" href="style.css" /&gt;
&lt;/head&gt;

&lt;body&gt;
&lt;div id="content"&gt;
Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Vestibulum mollis mauris enim. Morbi euismod magna ac lorem rutrum elementum. Donec viverra auctor lobortis. Pellentesque eu est a nulla placerat dignissim. Morbi a enim in magna semper bibendum.&lt;br /&gt;&lt;br /&gt;
Etiam scelerisque, nunc ac egestas consequat, odio nibh euismod nulla, eget auctor orci nibh vel nisi. Aliquam erat volutpat. Mauris vel neque sit amet nunc gravida congue sed sit amet purus. Quisque lacus quam, egestas ac tincidunt a, lacinia vel velit. Aenean facilisis nulla vitae urna tincidunt congue sed ut dui. Morbi malesuada nulla nec purus convallis consequat. Vivamus id mollis quam. Morbi ac commodo nulla. In condimentum orci id nisl volutpat bibendum. Quisque commodo hendrerit lorem quis egestas. Maecenas quis tortor arcu. Vivamus rutrum nunc non neque consectetur quis placerat neque lobortis. Nam vestibulum, arcu sodales feugiat consectetur, nisl orci bibendum elit, eu euismod magna sapien ut nibh. Donec semper quam scelerisque tortor dictum gravida. In hac habitasse platea dictumst. Nam pulvinar, odio sed rhoncus suscipit, sem diam ultrices mauris, eu consequat purus metus eu velit. Proin metus odio, aliquam eget molestie nec, gravida ut sapien.&lt;br /&gt;&lt;br /&gt;
Phasellus quis est sed turpis sollicitudin venenatis sed eu odio. Praesent eget neque eu eros interdum malesuada non vel leo. Sed fringilla porta ligula egestas tincidunt. Nullam risus magna, ornare vitae varius eget, scelerisque a libero. Morbi eu porttitor ipsum. Nullam lorem nisi, posuere quis volutpat eget, luctus nec massa. Quisque eget odio ac lectus vestibulum faucibus eget in metus. In pellentesque faucibus vestibulum. Nulla at nulla justo, eget luctus tortor. Nulla facilisi. Duis aliquet egestas purus in blandit. Curabitur vulputate, ligula lacinia scelerisque tempor, lacus lacus ornare ante, ac egestas est urna sit amet arcu. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Sed molestie augue sit amet leo consequat posuere. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Proin vel ante a orci tempus eleifend ut et magna. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus luctus urna sed urna ultricies ac tempor dui sagittis. In condimentum facilisis porta. Sed nec diam eu diam mattis viverra. Nulla fringilla, orci ac euismod semper, magna diam porttitor mauris, quis sollicitudin sapien justo in libero. Vestibulum mollis mauris enim. Morbi euismod magna ac lorem rutrum elementum. Donec viverra auctor lobortis. Pellentesque eu est a nulla placerat dignissim. Morbi a enim in magna semper bibendum. Etiam scelerisque, nunc ac egestas consequat, odio nibh euismod nulla, eget auctor orci nibh vel nisi. Aliquam erat volutpat. Mauris vel neque sit amet nunc gravida congue sed sit amet purus.&lt;br /&gt;&lt;br /&gt;
Quisque lacus quam, egestas ac tincidunt a, lacinia vel velit. Aenean facilisis nulla vitae urna tincidunt congue sed ut dui. Morbi malesuada nulla nec purus convallis consequat. Vivamus id mollis quam. Morbi ac commodo nulla. In condimentum orci id nisl volutpat bibendum. Quisque commodo hendrerit lorem quis egestas. Maecenas quis tortor arcu. Vivamus rutrum nunc non neque consectetur quis placerat neque lobortis. Nam vestibulum, arcu sodales feugiat consectetur, nisl orci bibendum elit, eu euismod magna sapien ut nibh. Donec semper quam scelerisque tortor dictum gravida. In hac habitasse platea dictumst. Nam pulvinar, odio sed rhoncus suscipit, sem diam ultrices mauris, eu consequat purus metus eu velit. Proin metus odio, aliquam eget molestie nec, gravida ut sapien. Phasellus quis est sed turpis sollicitudin venenatis sed eu odio. Praesent eget neque eu eros interdum malesuada non vel leo. Sed fringilla porta ligula egestas tincidunt. Nullam risus magna, ornare vitae varius eget, scelerisque a libero. Morbi eu porttitor ipsum. Nullam lorem nisi, posuere quis volutpat eget, luctus nec massa. Pellentesque aliquam lacinia tellus sit amet bibendum. Ut posuere justo in enim pretium scelerisque. Etiam ornare vehicula euismod. Vestibulum at risus augue. Sed non semper dolor. Sed fringilla consequat velit a porta. Pellentesque sed lectus pharetra ipsum ultricies commodo non sit amet velit. Suspendisse volutpat lobortis ipsum, in scelerisque nisi iaculis a. Duis pulvinar lacinia commodo. Integer in lorem id nibh luctus aliquam. Sed elementum, est ac sagittis porttitor, neque metus ultricies ante, in accumsan massa nisl non.
&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p><span id="more-186"></span></p>
<p><span>And you have a CSS file like this:</span></p>
<pre>body {
	margin: 0;
	padding: 0;
}
#content {
	background: #EEE;
	border-left: 1px solid #000;
	border-right: 1px solid #000;
	padding: 0 20px 0 20px;
	margin: auto;
	font: 1.5em arial, verdana, sans-serif;
	width: 960px;
	height: 100%;
}</pre>
<p>That gives you <a title="Example 1" href="http://img.tutwow.com/VerticalStretch/Example1/VerticalStretch.html" target="_blank">this example file</a>.  As you can see, the content box on that page doesn&#8217;t stretch to the whole height of the page, even though we added the &#8220;height: 100%;&#8221; line to the CSS file.  Why is that?</p>
<p>Let me give you a different way of thinking about HTML.  HTML is pretty much just a bunch of containers stacked inside each other.  So in our page, first we have the &lt;html&gt; container, then the &lt;body&gt; container inside of that, and finally the &lt;div id=&#8221;content&#8221;&gt; container inside of <em>that</em>.  When we put content into one of those boxes, it stretches that box and all the boxes containing that box so that they can hold the new content.  So when we put our text into the &lt;div id=&#8221;content&#8221;&gt; box, that box streches, which in turn stretches all of the boxes that it is in (in our case the &lt;body&gt; and &lt;html&gt; boxes).</p>
<p>When we put the &#8220;height: 100%;&#8221; style onto the &lt;div id=&#8221;content&#8221;&gt; box, what we are doing is telling it to stretch to the full height <em>of the box that it is in</em>.  In this example, the box that it is in is the &lt;body&gt; box.  So the &lt;div id=&#8221;content&#8221;&gt; box is 100% of the height of the &lt;body&gt; box.  Well, how tall is the &lt;body&gt; box?  It&#8217;s just as tall as the &lt;div id=&#8221;content&#8221;&gt; box, because we never told it how tall it should be!  So when we put the &#8220;height: 100%;&#8221; style onto the &lt;div id=&#8221;content&#8221;&gt; box, we are just telling it to be as tall as itself!</p>
<p>To fix this, we need to tell the &lt;body&gt; box to get bigger.  But then we run into the same problem with the &lt;html&gt; box &#8211; it is only as big as the &lt;body&gt; box!  So to fix our problem (to get the &lt;div id=&#8221;content&#8221;&gt; box to stretch the whole height of the page), we need to tell the &lt;html&gt; and &lt;body&gt; boxes to be the full height of the page.</p>
<p>So if we change our CSS file to this:</p>
<pre>html {
	height: 100%;
}
body {
	margin: 0;
	padding: 0;
	height: 100%;
}
#content {
	background: #EEE;
	border-left: 1px solid #000;
	border-right: 1px solid #000;
	padding: 0 20px 0 20px;
	margin: auto;
	font: 1.5em arial, verdana, sans-serif;
	width: 960px;
	min-height: 100%;
}</pre>
<p>And that&#8217;s it!  <a title="Example 2" href="http://img.tutwow.com/VerticalStretch/Example2/VerticalStretch.html" target="_blank">This is what we have now</a>.  The content box is now stretched to the full height of the page!</p>
<p><strong>Update:</strong> Thanks to some very helpful comments, I have updated the final CSS so that the #content div now has &#8220;min-height: 100%&#8221; instead of just &#8220;height: 100%&#8221;. This is so that if the content of the #content div extends beyond the height of the window, the background will expand as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tutwow.com/htmlcss/quick-tip-css-100-height/feed/</wfw:commentRss>
		<slash:comments>224</slash:comments>
		</item>
	</channel>
</rss>

