<?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>Onward! Studios&#187; Tutorials</title>
	<atom:link href="http://onwardstudios.com/blog/category/tutorial/feed/" rel="self" type="application/rss+xml" />
	<link>http://onwardstudios.com</link>
	<description>unleashing potential</description>
	<lastBuildDate>Sun, 05 Feb 2012 19:39:00 +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 Types: Tags, Classes, IDs</title>
		<link>http://onwardstudios.com/blog/css-types-tags-classes-ids/</link>
		<comments>http://onwardstudios.com/blog/css-types-tags-classes-ids/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 07:25:51 +0000</pubDate>
		<dc:creator>Carma</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://onwardstudios.com/?p=753</guid>
		<description><![CDATA[WordPress is a great tool for setting up websites. One of its strong points is not having to know code. But, I have found it is incredibly useful to know something about CSS. For every WordPress site I&#8217;ve done, I&#8217;ve had to tweak the CSS code at least. In this post, we&#8217;ll look at the [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress is a great tool for setting up websites. One of its strong points is not having to know code. But, I have found it is incredibly useful to know something about CSS. For every WordPress site I&#8217;ve done, I&#8217;ve had to tweak the CSS code at least. In this post, we&#8217;ll look at the different CSS types.</p>
<p>If you&#8217;ve done anything with CSS you have come across IDs, classes, tags, and compounds. These are types of CSS rules.</p>
<p>Let&#8217;s cover each one.</p>
<h3>Tags</h3>
<p>A CSS tag type is used when we are redefining an HTML tag. For example,</p>
<pre>h1 {
   font-size: 24px;
   margin: 12px 0 12px 0;
}</pre>
<p>We want the h1 headings to be at 24px with a top and bottom margin of 12px. We can use a CSS tag style for redefining almost any html tag. Some of the more common ones are body, paragraph &lt;p&gt;, heading tags&lt;h1&gt;..&lt;h6&gt;, and links &lt;a&gt;.</p>
<h3>Classes and IDs</h3>
<p>Classes (and IDs) take CSS to another level. It&#8217;s great to be able to redefine html tags, but classes and IDs let us create our own tags. The difference between classes and IDs is that one is used only once on a page (IDs) and the other can be used multiple times (classes).</p>
<h4>Classes</h4>
<p>Let&#8217;s say I want to emphasize certain text by using a red color and a bold font. And, I want to  emphasize text several times on a page. I would set up a class as follows:</p>
<pre>.redbold {
   color: red;
   font-weight: bold;
}</pre>
<p>Classes always begin with a period. When I want to use this class on the page it would look like this:</p>
<pre>&lt;p&gt; This is text on a page. &lt;span class="redbold"&gt;And this is in red.&lt;/span&gt;&lt;/p&gt;</pre>
<p>Another use of classes that I&#8217;ve done regularly is creating boxes on the right side. I set up a class to create the box and then use that as many times as needed on the web page. The class would include height and width attributes. See posts below for more info.</p>
<h4>IDs</h4>
<p>IDs are very similar to classes except that they are used only once on a page (theoretically) and they always begin with the # sign.</p>
<p>For example</p>
<pre>#container {
   width: 960px;
}</pre>
<p>To use the above ID on a web page I would add the id to a div tag:</p>
<div>
<pre>&lt;div id="container"&gt;
all the information inside the container goes here....including text and html tags
&lt;/div&gt;</pre>
<h3>Bonus: Compounds</h3>
<p>Compounds are a combination of classes and IDs. For example, let&#8217;s say I want the H1 tag to be red when it&#8217;s used in a right side bar, but not in the main content area.</p>
<p>After setting up an ID for the right side bar:</p>
<pre>#rightsidebar {
    width: 250px;
    float: right;
}</pre>
<p>I can then add another CSS rule, a compound, that looks like this;</p>
<pre>#rightsidebar h1 {
     color: red;
}</pre>
<p>Now if I use the h1 tag any place inside the &lt;div id=&#8221;rightsidebar&#8221;&gt; code, it will be a red heading.</p>
<p>This is a very simplistic example, but it gives you an idea how you can specify formatting options within sections of your webpage by using Compound CSS rules. Very powerful.</p>
<p><strong>What questions or helpful comments do you have? What has helped you learn the CSS types?</strong></p>
<p>&nbsp;</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://onwardstudios.com/blog/css-types-tags-classes-ids/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creately: Online Diagrams and Flowcharts</title>
		<link>http://onwardstudios.com/blog/creately-online-diagrams-and-flowcharts/</link>
		<comments>http://onwardstudios.com/blog/creately-online-diagrams-and-flowcharts/#comments</comments>
		<pubDate>Thu, 06 Oct 2011 06:38:21 +0000</pubDate>
		<dc:creator>Carma</dc:creator>
				<category><![CDATA[Creative Professional]]></category>
		<category><![CDATA[Entrepreneurship]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[charts]]></category>
		<category><![CDATA[diagrams]]></category>
		<category><![CDATA[flowcharts]]></category>
		<category><![CDATA[org charts]]></category>

		<guid isPermaLink="false">http://onwardstudios.com/?p=1311</guid>
		<description><![CDATA[Creately is an online diagramming tool for flowcharts, mindmaps, wireframes, and more. It has an extensive library of object sets and ready-made templates. It has built-in collaboration options that let you share, review, update and track online diagrams. Creately&#8217;s inuitive interface makes it quick and easy to create diagrams. It has a myriad of shapes [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-1326" title="creately" src="http://onwardstudios.com/chaifrapisbest/wp-content/uploads/2011/08/creately.jpg" alt="" width="600" height="324" /></p>
<p><a href="http://creately.com" target="_blank">Creately </a>is an online diagramming tool for flowcharts, mindmaps, wireframes, and more. It has an extensive library of object sets and ready-made templates. It has built-in collaboration options that let you share, review, update and track online diagrams.</p>
<p><img class="aligncenter size-full wp-image-1314" title="openingScreen" src="http://onwardstudios.com/chaifrapisbest/wp-content/uploads/2011/08/openingScreen1.jpg" alt="" width="550" height="348" /></p>
<p>Creately&#8217;s inuitive interface makes it quick and easy to create diagrams.</p>
<p><img class="size-full wp-image-1315 alignleft" style="margin-left: 15px; margin-right: 15px;" title="shapesSymbols" src="http://onwardstudios.com/chaifrapisbest/wp-content/uploads/2011/08/shapesSymbols.jpg" alt="" width="132" height="400" /></p>
<p>It has a myriad of shapes and symbols to choose from ranging from basic shapes to org charts to people shapes to SWOT templates, etc. Here are just a few of the samples:</p>
<p><img class="alignleft size-full wp-image-1316" title="businessShapes" src="http://onwardstudios.com/chaifrapisbest/wp-content/uploads/2011/08/businessShapes.jpg" alt="" width="157" height="171" />    <img class="alignleft size-full wp-image-1318" title="SWOT" src="http://onwardstudios.com/chaifrapisbest/wp-content/uploads/2011/08/SWOT.jpg" alt="" width="149" height="166" />   <img class="alignleft size-full wp-image-1317" title="peopleShapes" src="http://onwardstudios.com/chaifrapisbest/wp-content/uploads/2011/08/peopleShapes.jpg" alt="" width="125" height="200" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><img class="alignright size-full wp-image-1319" style="border: 1px solid black; margin-left: 10px; margin-right: 10px;" title="clickDrag" src="http://onwardstudios.com/chaifrapisbest/wp-content/uploads/2011/08/clickDrag.jpg" alt="" width="232" height="212" />Click and drag the symbols of your choice to the diagram window.  Need to move the symbol after placing it your diagram? Simple. Click and drag to the new location. The specific x,y coordinates will show up as you drag the object.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>After add<img class="alignleft size-full wp-image-1321" style="margin-left: 15px; margin-right: 15px; border: 1px solid black;" title="editText" src="http://onwardstudios.com/chaifrapisbest/wp-content/uploads/2011/08/editText.jpg" alt="" width="176" height="187" />ing an object you can also, add text below the object, add a connector, define the stacking order, or add a duplicate object.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><img class="alignleft size-full wp-image-1322" style="margin-left: 15px; margin-right: 15px; border: 1px solid black;" title="connect" src="http://onwardstudios.com/chaifrapisbest/wp-content/uploads/2011/08/connect.jpg" alt="" width="370" height="252" />To connect an object to another object simply click on the 2nd object on the desired side. Creately adds the connecting lines.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><img class="aligncenter size-full wp-image-1329" title="menu" src="http://onwardstudios.com/chaifrapisbest/wp-content/uploads/2011/08/menu.jpg" alt="" width="550" height="45" /></p>
<p>At the top of the working area is the normal menu options. You can add your own lines, text, and images. You can specify fill and stroke colors for your shapes.</p>
<p>&nbsp;</p>
<p><img class="alignleft size-full wp-image-1330" style="margin-left: 15px; margin-right: 15px;" title="share" src="http://onwardstudios.com/chaifrapisbest/wp-content/uploads/2011/08/share.jpg" alt="" width="219" height="450" />When you are ready to share your diagram with others, click on the share option at the right of the workspace area.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Easily send emails to your reviewers by entering their email addresses.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Enable a view link for your diagram for your reviewers to preview your work.</p>
<p>&nbsp;</p>
<p>When you are done with the diagram, you can publish it and share on Facebook, LinkedIn, Twitter, or embed it on your website.</p>
<p>Check <a href="http://creately.com" target="_blank">Creately</a> out.  It&#8217;s free and they provide an online demo version for your to experiment with.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://onwardstudios.com/blog/creately-online-diagrams-and-flowcharts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress: How to Find Images for Your Blog Post</title>
		<link>http://onwardstudios.com/blog/wordpress-how-to-find-images-for-your-blog-post/</link>
		<comments>http://onwardstudios.com/blog/wordpress-how-to-find-images-for-your-blog-post/#comments</comments>
		<pubDate>Tue, 04 Oct 2011 06:56:31 +0000</pubDate>
		<dc:creator>Carma</dc:creator>
				<category><![CDATA[Creative Professional]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://onwardstudios.com/?p=1709</guid>
		<description><![CDATA[Need to find an image for your blog post? Watch this video to learn how to use Flickr to find images that enhance your post. And, find out about istockphotos. View more WordPress How To Videos. What has been your experience with Flickr or istockphotos? What other services would you recommend?]]></description>
			<content:encoded><![CDATA[<p>Need to find an image for your blog post? Watch this video to learn how to use Flickr to find images that enhance your post. And, find out about istockphotos.</p>
<p><iframe src="http://www.youtube.com/embed/q3e3NVPqR6Q" frameborder="0" width="480" height="360"></iframe></p>
<p>View more <a href="http://onwardstudios.com/blog/category/wordpress">WordPress How To Videos.</a></p>
<p>What has been your experience with Flickr or istockphotos? What other services would you recommend?</p>
]]></content:encoded>
			<wfw:commentRss>http://onwardstudios.com/blog/wordpress-how-to-find-images-for-your-blog-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress: How to Add Pages</title>
		<link>http://onwardstudios.com/blog/wordpress-how-to-add-pages/</link>
		<comments>http://onwardstudios.com/blog/wordpress-how-to-add-pages/#comments</comments>
		<pubDate>Thu, 15 Sep 2011 06:02:44 +0000</pubDate>
		<dc:creator>Carma</dc:creator>
				<category><![CDATA[Creative Professional]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[WordPress Videos]]></category>
		<category><![CDATA[adding a page]]></category>
		<category><![CDATA[multiple pages]]></category>
		<category><![CDATA[pages]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://onwardstudios.com/?p=1534</guid>
		<description><![CDATA[WordPress is one of the top choices for a Content Management System (CMS). A CMS lets you maintain your site. In this video you will learn how to add pages to your site. View more WordPress How To Videos.]]></description>
			<content:encoded><![CDATA[<p>WordPress is one of the top choices for a Content Management System (CMS). A CMS lets you maintain your site. In this video you will learn how to add pages to your site.</p>
<p><iframe src="http://www.youtube.com/embed/rXq33LvzN24?hl=en&amp;fs=1" frameborder="0" width="425" height="349"></iframe></p>
<p>View more <a href="http://onwardstudios.com/blog/category/wordpress">WordPress How To Videos.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://onwardstudios.com/blog/wordpress-how-to-add-pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress: Selecting a Theme</title>
		<link>http://onwardstudios.com/blog/wordpress-selecting-a-theme/</link>
		<comments>http://onwardstudios.com/blog/wordpress-selecting-a-theme/#comments</comments>
		<pubDate>Tue, 13 Sep 2011 06:53:53 +0000</pubDate>
		<dc:creator>Carma</dc:creator>
				<category><![CDATA[Creative Professional]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[WordPress Videos]]></category>
		<category><![CDATA[selecting a theme]]></category>
		<category><![CDATA[theme selection]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://onwardstudios.com/?p=1536</guid>
		<description><![CDATA[Choose how you want your website to look by selecting a WordPress Theme. Themes vary from color to layout to functionality to SEO capabilities. The options are many. This video shows how to select a theme and how to narrow down the selection to fit your website. View more WordPress How To Videos.]]></description>
			<content:encoded><![CDATA[<p>Choose how you want your website to look by selecting a WordPress Theme. Themes vary from color to layout to functionality to SEO capabilities. The options are many. This video shows how to select a theme and how to narrow down the selection to fit your website.</p>
<p><iframe src="http://www.youtube.com/embed/Ibnu0NFEBI4" frameborder="0" width="420" height="345"></iframe></p>
<p>View more <a href="http://onwardstudios.com/blog/category/wordpress">WordPress How To Videos.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://onwardstudios.com/blog/wordpress-selecting-a-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress: How To Set Up Posts as Drafts</title>
		<link>http://onwardstudios.com/blog/wordpress-setting-up-posts-as-drafts/</link>
		<comments>http://onwardstudios.com/blog/wordpress-setting-up-posts-as-drafts/#comments</comments>
		<pubDate>Tue, 30 Aug 2011 06:44:48 +0000</pubDate>
		<dc:creator>Carma</dc:creator>
				<category><![CDATA[Creative Professional]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[WordPress Videos]]></category>

		<guid isPermaLink="false">http://onwardstudios.com/?p=1395</guid>
		<description><![CDATA[This video is part of our Quick Video Series for WordPress. Posts don&#8217;t have to be posted immediately. Instead, save them as Drafts. Come back and edit them as your ideas develop. Then, when you are ready, you can either publish the post immediately, or schedule it to be posted at a later date. To [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-1432 aligncenter" title="draftPostsL" src="http://onwardstudios.com/chaifrapisbest/wp-content/uploads/2011/08/draftPostsL.jpg" alt="" width="500" height="373" /></p>
<p>This video is part of our Quick Video Series for WordPress.</p>
<p>Posts don&#8217;t have to be posted immediately. Instead, save them as Drafts. Come back and edit them as your ideas develop. Then, when you are ready, you can either publish the post immediately, or schedule it to be posted at a later date. To learn more, check out this video.</p>
<p><iframe width="500" height="375" src="http://www.youtube.com/embed/9_iseXWerOk?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p>View more <a href="http://onwardstudios.com/blog/category/wordpress">WordPress How To Videos.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://onwardstudios.com/blog/wordpress-setting-up-posts-as-drafts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 7 Quick Photoshop Tips</title>
		<link>http://onwardstudios.com/blog/top-7-quick-photoshop-tips/</link>
		<comments>http://onwardstudios.com/blog/top-7-quick-photoshop-tips/#comments</comments>
		<pubDate>Tue, 16 Aug 2011 06:41:59 +0000</pubDate>
		<dc:creator>Carma</dc:creator>
				<category><![CDATA[Creative Professional]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://onwardstudios.com/?p=598</guid>
		<description><![CDATA[Having used Photoshop for many years, I find there are specific tricks I do over and over. Here are my 5 of my favorites: Multiple Undo&#8217;s What I love about Photoshop is there always something new to learn. I think this feature has been there for a long time, but I found it just in [...]]]></description>
			<content:encoded><![CDATA[<p>Having used Photoshop for many years, I find there are specific tricks I do over and over. Here are my 5 of my favorites:</p>
<h3>Multiple Undo&#8217;s</h3>
<p>What I love about Photoshop is there always something new to learn. I think this feature has been there for a long time, but I found it just in the past year. We are all familiar with the ctrl-z keyboard shortcut to undo the last step. Did you know if you add the alt key it will continue to undo previous steps? Pressing crl-alt-z multiple times will continue to go back multiple steps. Actually, keeping ctrl-alt pressed and just clicking on z will continue to go back.</p>
<h3>Copy Layer Style</h3>
<div class="boxArea"><img class="alignleft size-full wp-image-599" title="Copy Layer Style" src="http://onwardstudios.com/chaifrapisbest/wp-content/uploads/2011/06/copyLayerStyle.jpg" alt="" width="615" height="325" /></div>
<p>There are multiple ways to do this, but my favorite is to hold down the alt key, click on the &#8216;fx&#8217; icon on the layer that has the style I want to copy, then drag the &#8216;fx&#8217; icon to the layer I want to apply the same style. Walla!</p>
<h3>Copy Layer</h3>
<div class="boxArea"><a href="http://onwardstudios.com/?attachment_id=602" rel="attachment wp-att-602"><img class="alignleft size-full wp-image-602" title="Copy Layer" src="http://onwardstudios.com/chaifrapisbest/wp-content/uploads/2011/06/copyLayer.jpg" alt="" width="615" height="325" /></a></div>
<p>Although this one is very common, it&#8217;s always good to mention it again. I use it all the time.</p>
<p>Highlight the layer you want to copy in the Layers panel. Press ctrl-j. A copy of the layer will show up above the original layer. By default, the name of the layer will be the same name as the original layer with -copy at the end of it.</p>
<h3>Trim Image</h3>
<div class="boxArea"><a href="http://onwardstudios.com/?attachment_id=603" rel="attachment wp-att-603"><img class="alignleft size-full wp-image-603" title="Trim Image" src="http://onwardstudios.com/chaifrapisbest/wp-content/uploads/2011/06/trim.jpg" alt="" width="615" height="325" /></a></div>
<p>I use this technique for getting rid of extra space around an image.</p>
<p>This can be used to remove transparency or a solid color.</p>
<p>To do this technique, choose Image/Trim. Select the either transparency or color (top left or bottom right color). Click ok and walla!</p>
<div class="boxArea"><a href="http://onwardstudios.com/blog/top-7-quick-photoshop-tips/trimmedimage/" rel="attachment wp-att-604"><img class="alignleft size-full wp-image-604" title="Trimmed Image" src="http://onwardstudios.com/chaifrapisbest/wp-content/uploads/2011/06/trimmedImage.jpg" alt="" width="360" height="233" /></a></div>
<p>You can also select which side of the image you want to trim. I don&#8217;t think I&#8217;ve ever changed the default settings which is to trim all sides.</p>
<h3></h3>
<h3></h3>
<h3></h3>
<h3></h3>
<h3></h3>
<h3>Solo Layer</h3>
<div class="boxArea"><a href="http://onwardstudios.com/?attachment_id=609" rel="attachment wp-att-609"><img class="alignleft size-full wp-image-609" title="Solo Layer" src="http://onwardstudios.com/chaifrapisbest/wp-content/uploads/2011/06/soloLayer.jpg" alt="" width="615" height="325" /></a></div>
<p>I don&#8217;t use this technique as often as some of the others, but when I need it, I am glad I have it in my repertoire of techniques.</p>
<p>If I just want to preview one layer, I hold down the alt key and click on the eye icon for that specific layer. All the other layers turn &#8216;off&#8217;.</p>
<h3>Go Back to Last Saved Version</h3>
<p>This handy menu it<img class="alignleft size-full wp-image-1182" style="margin-left: 10px; margin-right: 10px;" title="revert" src="http://onwardstudios.com/chaifrapisbest/wp-content/uploads/2011/08/revert.jpg" alt="" width="238" height="271" />em can save you from having to close the file and re-open it when you want to go back to the last saved version.</p>
<p>Click on the File menu and notice the Revert option. This option quickly takes you back to the last saved version.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<h3>Select a Layer Automatically</h3>
<p><img class="size-full wp-image-1183 alignleft" title="autoSelect" src="http://onwardstudios.com/chaifrapisbest/wp-content/uploads/2011/08/autoSelect.jpg" alt="" width="500" height="226" /></p>
<p>I am throwing this one in here because it comes up a lot when I am training. This is a life saver for some of my students. If you are not used to having to select the desired layer from the layers panel, you&#8217;ll love this option.</p>
<p>There is an easy-to-miss check box in the control panel (below the main menu). To see this, you have to be on the move tool (the black arrow at the top of the tool box). Notice in the control panel to the far left a very simple checkbox called Auto Select. That&#8217;s it! Turn that on and you will be able to click anywhere in your document and Photoshop will automatically select the layer underneath your cursor. This setting is especially handy if you are working with text and you just want to click and update your text.</p>
<p><strong>Another Layer Select Technique</strong></p>
<p>This technique saves you from having to select the desired layer in the layers panel. It&#8217;s especially handy when you have layers on top of layers in your document. Make sure the Move Tool (black arrow at top of toolbox) is the active tool. Mouse over the area of your document that has the desired layer. Right-click. A context menu pops up showing you all the layers underneath your cursor. Select the desired layer.</p>
<p>Those are tips I use often. What are your favorites? What have I missed?</p>
]]></content:encoded>
			<wfw:commentRss>http://onwardstudios.com/blog/top-7-quick-photoshop-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Layout Generator</title>
		<link>http://onwardstudios.com/blog/css-layout-generator/</link>
		<comments>http://onwardstudios.com/blog/css-layout-generator/#comments</comments>
		<pubDate>Tue, 09 Aug 2011 06:30:56 +0000</pubDate>
		<dc:creator>Carma</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Dreamweaver]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://onwardstudios.com/?p=846</guid>
		<description><![CDATA[For those just learning CSS, here is a fantastic tool to help you generate page layouts: CSS Portal. The result is rather generic but it provides a great basis to build on. They offer more than just CSS for page layouts. On the same site, they offer tools to generate your buttons and your menus. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://onwardstudios.com/blog/css-layout-generator/cssportal/" rel="attachment wp-att-858"><img class="aligncenter size-full wp-image-858" title="cssPortal" src="http://onwardstudios.com/chaifrapisbest/wp-content/uploads/2011/07/cssPortal.jpg" alt="" width="500" height="350" /></a></p>
<p>For those just learning CSS, here is a fantastic tool to help you generate page layouts: <a href="http://www.cssportal.com/layout-generator/" target="_blank">CSS Portal</a>. The result is rather generic but it provides a great basis to build on.</p>
<p>They offer more than just CSS for page layouts. On the same site, they offer tools to generate your <a href="http://www.cssportal.com/button-maker/" target="_blank">buttons</a> and your <a href="http://www.cssportal.com/css-menu-generator/" target="_blank">menus</a>. Fantastic!<span id="more-846"></span></p>
<p>I didn&#8217;t spend much time with the button generator, but between the layout generator and the menu generator you could very quickly come up with the shell of a website.</p>
<p>As with any tool, I&#8217;m sure it has it&#8217;s quirks, but what a great way to get a quick jumpstart on a website.</p>
<p>There are other layout generator options also available. Check out the section titled &#8220;CSS Layout Tools&#8221; in this article: <a href="http://www.noupe.com/css/50-useful-css-tools-and-generators-for-developers.html" target="_blank">50 Useful CSS Tools and Generators for Developers</a>.</p>
<p>They have a list of eight layout generators, but I found CSS Portal to be the most user-friendly. Be sure to check <a href="http://www.cssportal.com" target="_blank">it</a> out!</p>
<p>What&#8217;s your experience with CSS Layout Generators?</p>
]]></content:encoded>
			<wfw:commentRss>http://onwardstudios.com/blog/css-layout-generator/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>QR Codes</title>
		<link>http://onwardstudios.com/blog/qr-codes/</link>
		<comments>http://onwardstudios.com/blog/qr-codes/#comments</comments>
		<pubDate>Thu, 28 Jul 2011 04:00:48 +0000</pubDate>
		<dc:creator>Carma</dc:creator>
				<category><![CDATA[Promoting Your Business]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://onwardstudios.com/?p=823</guid>
		<description><![CDATA[QR Codes are becoming rather commonplace. Let&#8217;s discuss what they are and why you might want to use them. QR codes are form of a barcode. The main difference between a &#8216;normal&#8217; barcode and a QR code is that a QR code is two dimensional &#8211; which means it can hold a lot more data. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://onwardstudios.com/qr-codes/qrcodes/" rel="attachment wp-att-824"><img class="aligncenter size-full wp-image-824" title="qrcodes" src="http://onwardstudios.com/chaifrapisbest/wp-content/uploads/2011/07/qrcodes.jpg" alt="" width="500" height="350" /></a></p>
<p>QR Codes are becoming rather commonplace. Let&#8217;s discuss what they are and why you might want to use them.</p>
<p>QR codes are form of a barcode. The main difference between a &#8216;normal&#8217; barcode and a QR code is that a QR code is two dimensional &#8211; which means it can hold a lot more data. QR is short for Quick Response. Their ability to<strong> hold more information </strong>and their ease of use makes them practical for small businesses.<span id="more-823"></span></p>
<p>The beauty of QR codes is that they can be read by smartphones. Apps that read QR codes are readily available. Digital information such as a website address can be stored in a QR code, read by a smartphone and the smartphone user is immediately taken to a website.</p>
<p>Two things are needed to start using QR codes: 1) QR code generator, and 2) QR Code reader.</p>
<h3>QR Code Generator</h3>
<p><a href="http://onwardstudios.com/qr-codes/qrcode/" rel="attachment wp-att-827"><img class="alignleft size-full wp-image-827" style="margin-left: 19px; margin-right: 19px;" title="qrcode" src="http://onwardstudios.com/chaifrapisbest/wp-content/uploads/2011/07/qrcode.png" alt="" width="162" height="162" /></a>Google &#8216;QR Code generator&#8217; and you&#8217;ll get a number of results. Most of them are free. Some generators allow for more design and color in the QR code than others. A couple of recommend sites are <a href="http://qrcode.kaywa.com/" target="_blank">Kaywa,</a> <a href="http://keremerkan.net/qr-code-and-2d-code-generator/" target="_blank">Keremerkan</a>, and <a href="http://myqr.co/" target="_blank">myQR</a>. The code on the left is from <a href="http://myqr.co" target="_blank">myQR</a>. At each site you can choose whether you want a website address (URI), an email, a text message, or other options in your QR code. You enter the desired information, click a button, and walla, there&#8217;s your QR code! You can download it and place it wherever you&#8217;d like.</p>
<h3>QR Code Reader</h3>
<p>Google &#8216;QR code readers&#8217; and you&#8217;ll have a number of options for apps that read QR codes. <a href="http://reader.kaywa.com/" target="_blank">Kaywa</a> has its own reader, but there are others available. <a href="http://www.mobile-barcodes.com/qr-code-software/" target="_blank">Mobile-Barcodes</a> has a list of the &#8216;best QR-Code reading software available&#8217;. QR code readers are available for most smartphones.</p>
<p>In a future posting, we&#8217;ll discuss the many different ways to use QR codes for marketing your business. In the meantime, go create your own QR code!</p>
]]></content:encoded>
			<wfw:commentRss>http://onwardstudios.com/blog/qr-codes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS3 Maker</title>
		<link>http://onwardstudios.com/blog/css3-maker/</link>
		<comments>http://onwardstudios.com/blog/css3-maker/#comments</comments>
		<pubDate>Thu, 21 Jul 2011 04:00:39 +0000</pubDate>
		<dc:creator>Carma</dc:creator>
				<category><![CDATA[Creative Professional]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Dreamweaver]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://onwardstudios.com/?p=649</guid>
		<description><![CDATA[If you are into the latest CSS options, check out CSS3 Maker. This very useful site lets you experiment with various CSS settings, then gives you the option to download the CSS. Beautiful! And, that&#8217;s just the beginning. Remember, these CSS options are CSS3 &#8211; meaning they may not work in older browsers. But, it [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://css3maker.com" target="_blank"><img class="aligncenter size-full wp-image-650" title="CSS3 Maker Website" src="http://onwardstudios.com/chaifrapisbest/wp-content/uploads/2011/06/site.jpg" alt="" width="500" height="400" /></a>If you are into the latest CSS options, check out <a title="CSS3 Maker" href="http://www.css3maker.com/" target="_blank">CSS3 Maker</a>.</p>
<p>This very useful site lets you experiment with various CSS settings, then gives you the option to download the CSS. Beautiful!</p>
<p>And, that&#8217;s just the beginning.<span id="more-649"></span></p>
<p>Remember, these CSS options are CSS3 &#8211; meaning they may not work in older browsers. But, it even helps with that by displaying on the site which versions of browsers the current feature you are working on will work in.  And, it even shows mobile compatibility. Nice!</p>
<p><a rel="attachment wp-att-651" href="http://onwardstudios.com/css3-maker/compatibility/"><img class="aligncenter size-full wp-image-651" title="Browser Compatibility" src="http://onwardstudios.com/chaifrapisbest/wp-content/uploads/2011/06/compatibility.jpg" alt="" width="454" height="309" /></a></p>
<p>At the top left of the website is a drop down. Choose the specific CSS3 feature from this list.</p>
<p><a rel="attachment wp-att-652" href="http://onwardstudios.com/css3-maker/dropdown/"><img class="aligncenter size-full wp-image-652" title="CSS3 features dropdown list" src="http://onwardstudios.com/chaifrapisbest/wp-content/uploads/2011/06/dropDown.jpg" alt="" width="315" height="242" /></a></p>
<p>You can also choose a feature from the options across the top:</p>
<p><a rel="attachment wp-att-653" href="http://onwardstudios.com/?attachment_id=653"></a><a rel="attachment wp-att-654" href="http://onwardstudios.com/css3-maker/buttonoptions/"><img class="aligncenter size-full wp-image-654" title="buttonOptions" src="http://onwardstudios.com/chaifrapisbest/wp-content/uploads/2011/06/buttonOptions.jpg" alt="" width="538" height="342" /></a></p>
<p>At the top left of the screen, below the drop down feature list, are the parameters for the selected CSS3 property. Experiment with these till you get the look you want.</p>
<p><a rel="attachment wp-att-655" href="http://onwardstudios.com/css3-maker/parameters/"><img class="aligncenter size-full wp-image-655" title="CSS3 Properties" src="http://onwardstudios.com/chaifrapisbest/wp-content/uploads/2011/06/parameters.jpg" alt="" width="504" height="365" /></a></p>
<p>After setting the properties, I always glance at the Browser Compatibility section to be sure I understand which browsers will handle this CSS3 feature.</p>
<p>At the top right, it shows the code for this feature, and an option to download the code. The Download option will save it as a zip file, making it easy to copy and paste code into your website.</p>
<p><a rel="attachment wp-att-656" href="http://onwardstudios.com/css3-maker/code/"><img class="aligncenter size-full wp-image-656" title="CSS3 Code" src="http://onwardstudios.com/chaifrapisbest/wp-content/uploads/2011/06/code.jpg" alt="" width="337" height="265" /></a>And that, my friends, is CSS3 Maker.</p>
<p><a title="CSS3 Maker" href="http://css3maker.com" target="_blank">Visit the site</a> and experiment with the latest CSS3 features.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://onwardstudios.com/blog/css3-maker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

