<?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>kmdesign &#187; tutorial</title>
	<atom:link href="http://blog.karentsui.com/tag/tutorial/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.karentsui.com</link>
	<description></description>
	<lastBuildDate>Fri, 12 Mar 2010 07:37:18 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.3</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>40 CSS Navigation &amp; Menu Design Tutorials</title>
		<link>http://blog.karentsui.com/40-css-navigation-menu-design-tutorials/</link>
		<comments>http://blog.karentsui.com/40-css-navigation-menu-design-tutorials/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 07:35:06 +0000</pubDate>
		<dc:creator>kmdesign</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://blog.karentsui.com/?p=1993</guid>
		<description><![CDATA[Please refer to the below article:
http://www.51flash.cn/?p=1108
]]></description>
			<content:encoded><![CDATA[<p>Please refer to the below article:</p>
<p><a href="http://www.51flash.cn/?p=1108" target="_blank">http://www.51flash.cn/?p=1108</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.karentsui.com/40-css-navigation-menu-design-tutorials/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tutorial: Page Peel Advertising Effect (non-flash method)</title>
		<link>http://blog.karentsui.com/tutorial-page-peel-advertising-effect-non-flash-method/</link>
		<comments>http://blog.karentsui.com/tutorial-page-peel-advertising-effect-non-flash-method/#comments</comments>
		<pubDate>Mon, 10 Aug 2009 07:06:35 +0000</pubDate>
		<dc:creator>kmdesign</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[page peel ad]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://blog.karentsui.com/?p=1069</guid>
		<description><![CDATA[You should have seen those page peel advertising effect with flash before. But actually this effect can be done with CSS and jQuery. Let&#8217;s see how we can make them out!
First, let us see the live demo here:
[Live Demo]

[Live Demo]
Step1: HTML – Page Peel Wireframe
The “pageflip” div will act as the container, mainly used to establish the relative positioning. Then nest the image and the span class of “msg_block” wrapped in an  tag.

&#60;div id="pageflip"&#62;
	&#60;a href="#"&#62;
		&#60;img src="page_flip.png" alt="" /&#62;
		&#60;span&#62;Subscribe via RSS&#60;/span&#62;
	&#60;/a&#62;
&#60;/div&#62;

Step 2: CSS – Page Peel Styles
Set the image property ...]]></description>
			<content:encoded><![CDATA[<p>You should have seen those page peel advertising effect with flash before. But actually this effect can be done with CSS and jQuery. Let&#8217;s see how we can make them out!</p>
<p>First, let us see the live demo here:<span id="more-1069"></span></p>
<h3 style="text-align: center;"><img class="no_border" src="http://blog.karentsui.com/wp-content/uploads/2009/08/live_demo.jpg" width="50" height="41" /><a href="http://blog.karentsui.com/demo/pagepeel/" target="_blank">[Live Demo]</a></h3>
<p><img class="alignnone size-full wp-image-1071" title="pagepeel_full_demo" src="http://blog.karentsui.com/wp-content/uploads/2009/08/pagepeel_full_demo.jpg" alt="pagepeel_full_demo" width="590" height="266" /></p>
<h3 style="text-align: center;"><img class="no_border" src="http://blog.karentsui.com/wp-content/uploads/live_demo.jpg" width="50" height="41" /><a href="http://blog.karentsui.com/demo/pagepeel/" target="_blank">[Live Demo]</a></h3>
<h2>Step1: HTML – Page Peel Wireframe</h2>
<p>The “pageflip” div will act as the container, mainly used to establish the relative positioning. Then nest the image and the span class of “msg_block” wrapped in an <a> tag.</a></p>
<blockquote>
<pre>&lt;div id="pageflip"&gt;
	&lt;a href="#"&gt;
		&lt;img src="page_flip.png" alt="" /&gt;
		&lt;span&gt;Subscribe via RSS&lt;/span&gt;
	&lt;/a&gt;
&lt;/div&gt;</pre>
</blockquote>
<h2>Step 2: CSS – Page Peel Styles</h2>
<p>Set the image property to a smaller size (30&#215;30px in my demo) and set the absolute positioning to be in the top right corner. The image will be used similar to the “masking” technique in Photoshop, where it will be placed on top of the hidden message, so only a portion of the message will be shown.</p>
<p><img class="alignnone size-full wp-image-1070" title="pagepeel_step2" src="http://blog.karentsui.com/wp-content/uploads/2009/08/pagepeel_step2.jpg" alt="pagepeel_step2" width="590" height="266" /></p>
<blockquote>
<pre>#pageflip {
	position: relative;
}
#pageflip img {
	width: 30px; height: 32px;
	z-index: 99;
	position: absolute;
	right: 0; top: 0;
	-ms-interpolation-mode: bicubic;
}
#pageflip .msg_block {
	width: 30px; height: 30px;
	position: absolute;
	z-index: 50;
	right: 0; top: 0;
	background: url(subscribe.png) no-repeat right top;
	text-indent: -9999px;
}</pre>
</blockquote>
<h2>Step 3: jQuery – Animating Page Peel</h2>
<blockquote>
<pre>$("#pageflip").hover(function() { <span style="color: #999999;"> </span>
	$("#pageflip img , .msg_block").stop()
		.animate({
			width: '307px',
			height: '319px'
		}, 500);
	} , function() {
	$("#pageflip img").stop() <span style="color: #999999;">
//On hover out, go back to original size 30x32</span>
		.animate({
			width: '30px',
			height: '32px'
		}, 220);
	$(".msg_block").stop() <span style="color: #999999;">
//On hover out, go back to original size 30x30</span>
		.animate({
			width: '30px',
			height: '30px'
		}, 200); <span style="color: #999999;">
//Note this one retracts a bit faster (to prevent glitching in IE)</span>
});</pre>
</blockquote>
<p><img title="pagepeel_full_demo" src="http://blog.karentsui.com/wp-content/uploads/2009/08/pagepeel_full_demo.jpg" alt="pagepeel_full_demo" width="590" height="265" /></p>
<h3 style="text-align: center;"><img class="no_border" src="http://blog.karentsui.com/wp-content/uploads/live_demo.jpg" width="50" height="41" /><a href="http://blog.karentsui.com/demo/pagepeel/" target="_blank">[Live Demo]</a></h3>
<p style="text-align: left;">Hope you like this tutorial and find this useful!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.karentsui.com/tutorial-page-peel-advertising-effect-non-flash-method/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Tutorial: Create a digital clock with Photoshop</title>
		<link>http://blog.karentsui.com/create-digital-clock-with-photoshop/</link>
		<comments>http://blog.karentsui.com/create-digital-clock-with-photoshop/#comments</comments>
		<pubDate>Sun, 19 Jul 2009 15:54:21 +0000</pubDate>
		<dc:creator>kmdesign</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://blog.karentsui.com/?p=717</guid>
		<description><![CDATA[In this tutorial, we are going to create a digital clock interface in 3 steps.

Step one: Create the screen of the digital clock
Create a new document with size of 300 x 150 pixels. Fill the background in #767A65.

Step two: Add some digital fonts
After preparing the background of the digital clock, we are going to write the base of the clock letter. Select the Horizontal Type Tool and type 88:88 with size of 130px and color in #6D715C. [Download font]

Then press [Ctrl+J] to duplicate the &#8220;88:88&#8243; layer and put it on ...]]></description>
			<content:encoded><![CDATA[<p>In this tutorial, we are going to create a digital clock interface in 3 steps.<br />
<span id="more-717"></span></p>
<h2>Step one: Create the screen of the digital clock</h2>
<p>Create a new document with size of 300 x 150 pixels. Fill the background in #767A65.</p>
<p><img class="alignnone size-full wp-image-729" title="Background of digital clock" src="http://blog.karentsui.com/wp-content/uploads/2009/07/background_of_digital_clock.jpg" alt="Background of digital clock" width="300" height="150" /></p>
<h2>Step two: Add some digital fonts</h2>
<p>After preparing the background of the digital clock, we are going to write the base of the clock letter. Select the <strong>Horizontal Type Tool</strong> and type 88:88 with size of 130px and color in #6D715C. [<a title="DS Digital font" href="/wp-content/uploads/2009/07/ds_digital.zip" target="_blank">Download font</a>]</p>
<p><img class="alignnone size-full wp-image-730" title="Digital clock base letter" src="http://blog.karentsui.com/wp-content/uploads/2009/07/digital_clock_base_letter.jpg" alt="Digital clock base letter" width="300" height="150" /></p>
<p>Then press [<strong>Ctrl+J</strong>] to duplicate the &#8220;88:88&#8243; layer and put it on top of the original layer. Change the color of the duplicate &#8220;88:88&#8243; to #252525 and change &#8220;88:88&#8243; to &#8220;20:34&#8243;.</p>
<p><img class="alignnone size-full wp-image-731" title="Digital letter" src="http://blog.karentsui.com/wp-content/uploads/2009/07/digital_letter.jpg" alt="Digital letter" width="300" height="150" /></p>
<h2>Final step: Finalize the effect the digital letter</h2>
<p>Open the <strong>Layer Style</strong> box by double clicking the &#8220;20:34&#8243; digital letter layer. Set the style as shown in the following image. Now the digital clock is finished.</p>
<p><img class="size-full wp-image-733" title="Finalize setting" src="http://blog.karentsui.com/wp-content/uploads/2009/07/finalize_setting.jpg" alt="Finalize setting" width="540" height="400" /></p>
<p>Digital Clock<br />
<img class="alignnone size-full wp-image-734" title="Digital clock" src="http://blog.karentsui.com/wp-content/uploads/2009/07/digital_clock.gif" alt="Digital clock" width="300" height="150" /></p>
<p>Other samples:</p>
<p><img class="alignnone size-full wp-image-738" title="Digital clock sample 1" src="http://blog.karentsui.com/wp-content/uploads/2009/07/digital_clock_sample_1.jpg" alt="Digital clock sample 1" width="500" height="257" /></p>
<p><img class="alignnone size-full wp-image-739" title="Digital clock sample 2" src="http://blog.karentsui.com/wp-content/uploads/2009/07/digital_clock_sample_2.jpg" alt="Digital clock sample 2" width="500" height="257" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.karentsui.com/create-digital-clock-with-photoshop/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Tutorial: Create a 3D pie chart with illustrator</title>
		<link>http://blog.karentsui.com/create-a-3d-pie-chart-with-illustrator/</link>
		<comments>http://blog.karentsui.com/create-a-3d-pie-chart-with-illustrator/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 12:35:12 +0000</pubDate>
		<dc:creator>kmdesign</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[illustrator]]></category>
		<category><![CDATA[pie chart]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://blog.karentsui.com/?p=310</guid>
		<description><![CDATA[Are you tired of using 2D pie chart in your PowerPoint? Follow this tutorial, you can try to create an attractive 3D pie chart with illustrator.

Step one: Prepare data for you pie chart
Select the Pie Graph Tool, and click on the artboard. Enter 300&#215;300 pixel. 
After that, a graph data table will pop up. You can enter you data directly into this data table or import some existing data for generating your pie chart.
In this tutorial, we will import existing data. Click  and select a existing data. We choose ...]]></description>
			<content:encoded><![CDATA[<p>Are you tired of using 2D pie chart in your PowerPoint? Follow this tutorial, you can try to create an attractive 3D pie chart with illustrator.<br />
<span id="more-310"></span></p>
<h2>Step one: Prepare data for you pie chart</h2>
<p>Select the <strong>Pie Graph Tool</strong>, and click on the artboard. Enter 300&#215;300 pixel. <img class="alignnone size-full wp-image-525" title="Create new document" src="http://blog.karentsui.com/wp-content/uploads/2009/06/create-new-document.jpg" alt="Create new document" width="255" height="112" /></p>
<p>After that, a graph data table will pop up. You can enter you data directly into this data table or import some existing data for generating your pie chart.<img class="alignnone size-full wp-image-526" title="Graph data table" src="http://blog.karentsui.com/wp-content/uploads/2009/06/graph-data-table.jpg" alt="Graph data table" width="381" height="304" /></p>
<p>In this tutorial, we will import existing data. Click <img class="alignnone size-full wp-image-524" title="Import graph data " src="http://blog.karentsui.com/wp-content/uploads/2009/06/import-graph-data.jpg" alt="Import graph data " width="22" height="22" /> and select a existing data. We choose a <strong>CSV</strong> file. You can create your data in any <strong>spreadsheet</strong> software and save it as <strong>CSV</strong> file with &#8220;<strong>Tab</strong>&#8221; as <strong>field delimiter</strong> and no <strong>text delimited. </strong><a href="/wp-content/uploads/2009/06/browser_capabilities.zip" target="_blank">[Download CSV file]</a></p>
<p>Click <img class="alignnone size-full wp-image-530" title="ok" src="http://blog.karentsui.com/wp-content/uploads/2009/06/ok.jpg" alt="ok" width="22" height="22" /> to generate the pie chart.<img class="alignnone size-full wp-image-531" title="pie chart" src="http://blog.karentsui.com/wp-content/uploads/2009/06/pie-chart.jpg" alt="pie chart" width="532" height="360" /></p>
<h2><strong>Step two: Ungroup the pie chart</strong></h2>
<p>We need to break the pie chart in pieces in order to apply color and effect to each piece. Select the graph and go to <strong>Object</strong> -&gt; <strong>Ungroup</strong> or press [<strong>Ctrl+Shift+G</strong>] to ungroup it. Now, the text and the graph is ungrouped. We need select the pie chart and apply ungroup one more time to ungroup the pieces of the pie chart.</p>
<p>Now, we can change the color of each piece.<img class="alignnone size-full wp-image-538" title="Colored graph" src="http://blog.karentsui.com/wp-content/uploads/2009/06/colored-graph.jpg" alt="Colored graph" width="532" height="360" /></p>
<p>Since each piece of pie chart  and its remark are joined together, we need to ungroup them in order to applying effect to each piece. Select all pieces and go to <strong>Object</strong> -&gt; <strong>Ungroup</strong>.</p>
<h2>Step three: Apply &#8220;Extrude &amp; Bevel&#8221; effect</h2>
<p>Select all pieces and go to <strong>Effect</strong> -&gt; <strong>3D</strong> -&gt; <strong>Extrude &amp; Bevel</strong>. Click <strong>More Options</strong> to show all settings. Now you can drag the cube to specify the X-Y-Z Axis values or enter the values manually. For this tutorial, 37° for X-axis, 10° for Y-axis and 0° for Z-axis. Enter 20pt for Extrude Depth. Finally, add one more light source by clicking on New Light icon and drag it as shown below.<br />
<img class="alignnone size-full wp-image-545" title="Extrude bevel setting" src="http://blog.karentsui.com/wp-content/uploads/2009/06/extrude-bevel-setting.jpg" alt="Extrude bevel setting" width="433" height="654" /></p>
<p>You will get this result.<img class="alignnone size-full wp-image-547" title="3d chart" src="http://blog.karentsui.com/wp-content/uploads/2009/06/3d-chart.jpg" alt="3d chart" width="532" height="360" /></p>
<h2>Final step: Reposit the pieces</h2>
<p>After applying the <strong>Extrude &amp; Bevel</strong> effect, the pie is off a bit, select the pieces and reposit them.<img class="alignnone size-full wp-image-555" title="3D pie chart" src="http://blog.karentsui.com/wp-content/uploads/2009/06/3d-pie-chart.jpg" alt="3D pie chart" width="532" height="360" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.karentsui.com/create-a-3d-pie-chart-with-illustrator/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Tutorial: How to create a realistic post chop in photoshop</title>
		<link>http://blog.karentsui.com/how-to-create-a-realistic-post-chop-in-photoshop/</link>
		<comments>http://blog.karentsui.com/how-to-create-a-realistic-post-chop-in-photoshop/#comments</comments>
		<pubDate>Sat, 27 Jun 2009 18:30:52 +0000</pubDate>
		<dc:creator>kmdesign</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[scale]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://blog.karentsui.com/?p=327</guid>
		<description><![CDATA[You may want to create a realistic post chop in your design, following this tutorial you will find the way to create one.
Step one: Prepare a paper texture
Create a new document with the size of 500 x 300 pixel and white background. Or, you can find a paper texture as the background. Open the prepared paper texture and drag it to the empty document created before. [Paper texture]
Step two: Create a chop outline a little bit larger than the original size
In this step, we will create a chop 20% &#8211; ...]]></description>
			<content:encoded><![CDATA[<p>You may want to create a <strong>realistic post chop</strong> in your <strong>design</strong>, following this tutorial you will find the way to create one.<span id="more-327"></span></p>
<h2>Step one: Prepare a paper <strong>texture</strong></h2>
<p>Create<strong> </strong>a new document with the size of 500 x 300 pixel and white background. Or, you can find a paper texture as the background. Open the prepared paper texture and drag it to the empty document created before. <a title="Paper texture" href="/wp-content/uploads/2009/06/paper_texture.jpg" target="_blank">[Paper texture]</a></p>
<div id="attachment_333" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-333" title="Drag and place the paper texture" src="http://blog.karentsui.com/wp-content/uploads/2009/06/drag_and_place_the_paper_texture.jpg" alt="Drag and place the paper texture" width="500" height="300" /><p class="wp-caption-text">Drag and place the paper texture</p></div>
<h2>Step two: Create a chop outline a little bit larger than the original size</h2>
<p>In this step, we will create a chop 20% &#8211; 30% larger than the size you desire, in order to decreasing it further to get a more realistic layout.</p>
<p>Create a new layer on top of the layer of paper texture. Use the Ellipse Tool to create a round shape with any color. It doesn&#8217;t matter which color you use.</p>
<div id="attachment_336" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-336" title="Create round path" src="http://blog.karentsui.com/wp-content/uploads/2009/06/create_round_path.jpg" alt="Create round path" width="500" height="300" /><p class="wp-caption-text">Create round path</p></div>
<p>Open the <strong>Layer Style</strong> window, set the fill opacity to 0% and the size of stroke to 5 px, color in black. <a title="Set fill opacity to zero" href="/wp-content/uploads/2009/06/fill_opacity_to_zero.jpg" target="_blank">[Fill opacity setting]</a> <a title="Stroke in black" href="/wp-content/uploads/2009/06/stroke_in_black.jpg" target="_blank">[Stroke setting]</a></p>
<div id="attachment_342" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-342" title="Fill opacity and stroke" src="http://blog.karentsui.com/wp-content/uploads/2009/06/fill_opacity_and_stroke.jpg" alt="Fill opacity and stroke" width="500" height="300" /><p class="wp-caption-text">Fill opacity and stroke</p></div>
<h2>Step three: Duplicate the inner circle of the chop</h2>
<p>Duplicate the layer of the black circle and make it a little bit smaller. To decrease the size the circle press [<strong>Ctrl+T</strong>] or go to <strong>Edit</strong> -&gt; <strong>Transform Path</strong> -&gt; <strong>Scale</strong>. Press and hold [<strong>ALT+Shift</strong>] to get the proportional decreasing.</p>
<div id="attachment_349" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-349" title="Proportional decreasing" src="http://blog.karentsui.com/wp-content/uploads/2009/06/proportional_decreasing.jpg" alt="Proportional decreasing" width="500" height="300" /><p class="wp-caption-text">Proportional decreasing</p></div>
<h2>Step four: Add some text into the chop</h2>
<p>Firstly, select the circle vector mark of the inner small circle layer [Select mask].</p>
<div id="attachment_358" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-358" title="Vector mask is selected" src="http://blog.karentsui.com/wp-content/uploads/2009/06/vector_mask_is_selected.jpg" alt="Vector mask is selected" width="500" height="300" /><p class="wp-caption-text">Vector mask is selected</p></div>
<p>Select the Vertical Type Tool and click on the path of inner circle and type some texts on it. After that, select the text you have typed and go to <strong>Edit</strong> -&gt; <strong>Transform Path</strong> -&gt; <strong>Scale. </strong>Press and hold [<strong>ALT+Shift</strong>] to get the proportional increasing. (Increase the size of  the new inner circle to the average size of original inner circle and outer circle.)</p>
<div id="attachment_360" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-360" title="Increase the size" src="http://blog.karentsui.com/wp-content/uploads/2009/06/increase_the_size_of_text.jpg" alt="Increase the size" width="500" height="300" /><p class="wp-caption-text">Increase the size</p></div>
<p>After that you will have something like this. <a title="Increased Text" href="/wp-content/uploads/2009/06/increased_text.jpg" target="_blank">[See]</a></p>
<p>After finishing the previous step, go to Edit -&gt; Transform Path -&gt; Rotate to rotate the text to a right position.</p>
<div id="attachment_363" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-363" title="Rotate text to right position" src="http://blog.karentsui.com/wp-content/uploads/2009/06/rotate_text_to_right_position.jpg" alt="Rotate text to right position" width="500" height="300" /><p class="wp-caption-text">Rotate text to right position</p></div>
<p>Add star signs and some text into the chop link. Select <strong>Custom Shape Tool</strong> for drawing the star sign. Choose the 5 point star from the standard <strong>Photoshop</strong> palette <a title="How to choose 5 point star" href="/wp-content/uploads/2009/06/choose_five_point_star.jpg" target="_blank">[How to choose 5 point star]</a>. Press [<strong>Ctrl+J</strong>] to copy two more star sign and move them to the position. After that, use <strong>Horizontal Type Tool</strong> to type some inside the small circle.</p>
<div id="attachment_364" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-364" title="Add star sign and text" src="http://blog.karentsui.com/wp-content/uploads/2009/06/add_star_and_text.jpg" alt="Add star sign and text" width="500" height="300" /><p class="wp-caption-text">Add star sign and text</p></div>
<h2>Step five: Make the chop more realistic</h2>
<p>After finish the last step, we have finished design of our chop. Now, we are going to add some effect to make it more realistic. Merge all layers except the background first. Then apply a <strong>Gradient Overlay</strong> style to it. <a title="Gradient Overlay Setting" href="/wp-content/uploads/2009/06/gradient_overlay_setting.jpg" target="_blank">[Gradient overlay setting]</a></p>
<p>Create a new layer under the chop layer and merge it to the chop layer to get all effects in one layer.</p>
<div id="attachment_367" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-367" title="Chop with gradient" src="http://blog.karentsui.com/wp-content/uploads/2009/06/chop_with_gradient.jpg" alt="Chop with gradient" width="500" height="300" /><p class="wp-caption-text">Chop with gradient</p></div>
<p>Use the <strong>Erase Tool</strong> with <strong>pencil mode</strong>, <strong>brush size</strong> of 1px and <strong>opacity</strong> of 100% and erase chaotically like this.</p>
<div id="attachment_368" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-368" title="Erase the chop chaotically" src="http://blog.karentsui.com/wp-content/uploads/2009/06/erase_the_chop.jpg" alt="Erase the chop chaotically" width="500" height="300" /><p class="wp-caption-text">Erase the chop chaotically</p></div>
<p>After that change the <strong>layer mode</strong> to <strong>Dissolve</strong>. Then, create a new layer below and merge it with the chop layer.</p>
<div id="attachment_369" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-369" title="Dissolve layer" src="http://blog.karentsui.com/wp-content/uploads/2009/06/dissolve_layer.jpg" alt="Dissolve layer" width="500" height="300" /><p class="wp-caption-text">Dissolve layer</p></div>
<p>Now, scale down the size of chop.</p>
<div id="attachment_370" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-370" title="Scale down the size of the chop" src="http://blog.karentsui.com/wp-content/uploads/2009/06/scale_the_chop_down.jpg" alt="Scale down the size of the chop" width="500" height="300" /><p class="wp-caption-text">Scale down the size of the chop</p></div>
<h2>Final step: Finalize the effect of the chop</h2>
<p>Now let&#8217;s go to add the final effect. There are last two thing we need to do for this final effect. We need to  spread the stamp in some place and make it combine to the paper texture.</p>
<p>Firstly, use the <strong>Smudge Tool</strong> with <strong>Normal mode</strong> and <strong>Strength</strong> of 50% to make some smearing.</p>
<div id="attachment_371" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-371" title="Smudge the chop" src="http://blog.karentsui.com/wp-content/uploads/2009/06/smudge_the_chop.jpg" alt="Smudge the chop" width="500" height="300" /><p class="wp-caption-text">Smudge the chop</p></div>
<p>Secondly, add <strong>Drop Shadow</strong> layer style to the chop layer. <a title="Drop shadow setting" href="/wp-content/uploads/2009/06/drop_shadow_setting.jpg" target="_blank">[Drop shadow setting]</a></p>
<div id="attachment_373" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-373" title="Add drop shadow style" src="http://blog.karentsui.com/wp-content/uploads/2009/06/add_drop_shadow_style.jpg" alt="Add drop shadow style" width="500" height="300" /><p class="wp-caption-text">Add drop shadow style</p></div>
<p>Hope you will like this tutorial!</p>
<p>Some exmaples</p>
<div id="attachment_374" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-374" title="Some examples" src="http://blog.karentsui.com/wp-content/uploads/2009/06/some_example.jpg" alt="Some examples" width="500" height="300" /><p class="wp-caption-text">Some examples</p></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.karentsui.com/how-to-create-a-realistic-post-chop-in-photoshop/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Create a glassy button with Adobe illustrator</title>
		<link>http://blog.karentsui.com/create-a-glassy-button-with-adobe-illustrator/</link>
		<comments>http://blog.karentsui.com/create-a-glassy-button-with-adobe-illustrator/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 06:46:00 +0000</pubDate>
		<dc:creator>kmdesign</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[blend tool]]></category>
		<category><![CDATA[blue rectangle]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[illustrator]]></category>
		<category><![CDATA[sky blue]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://blog.karentsui.com/?p=217</guid>
		<description><![CDATA[You may have already seen kind of this tutorial somewhere before with Photoshop. But this tutorial is going to show your here how to create it with Illustrator in some simple steps.

Step one: Create the path of the button
Select Rebounded Rectangle Tool on Tools bar and drag any size you need and fill it in blue with no stroke. Then copy [Ctrl+C] and paste [Ctrl+F] it in front. Scale it down to a small rectangle, fill it in sky blue and drag it slight below the center point of the ...]]></description>
			<content:encoded><![CDATA[<p>You may have already seen kind of this tutorial somewhere before with <strong>Photoshop</strong>. But this tutorial is going to show your here how to create it with <strong>Illustrator</strong> in some simple steps.<br />
<span id="more-217"></span></p>
<h2>Step one: Create the path of the button</h2>
<p>Select <strong>Rebounded Rectangle Tool </strong>on<strong> Tools</strong> bar and <strong>drag</strong> any size you need and fill it in blue with no stroke. Then copy [<strong>Ctrl+C</strong>] and paste [<strong>Ctrl+F</strong>] it in front. Scale it down to a small rectangle, fill it in sky blue and drag it slight below the center point of the big blue rectangle.</p>
<div id="attachment_274" class="wp-caption alignnone" style="width: 228px"><img class="size-full wp-image-274" title="Use rebounded retangle tool to create path" src="http://blog.karentsui.com/wp-content/uploads/2009/06/use_rebounded_retangle_tool_to_create_path.jpg" alt="Use rebounded retangle tool to create path" width="218" height="121" /><p class="wp-caption-text">Use rebounded rectangle tool to create path</p></div>
<h2>Step Two: Create gradient effect</h2>
<p>Firstly, select the <strong>Blend Tool</strong>. Then click the sky blue rectangle and the big blue rectangle. Or you can blend them by selecting both rectangles and go to <strong>Object</strong> -&gt; <strong>Blend</strong> -&gt; <strong>Make</strong> [<strong>Ctrl+Alt+B</strong>].</p>
<div id="attachment_292" class="wp-caption alignnone" style="width: 440px"><img class="size-full wp-image-292" title="Select and blend rectangle" src="http://blog.karentsui.com/wp-content/uploads/2009/06/select_and_blend_retangle.jpg" alt="Select and blend rectangle" width="430" height="128" /><p class="wp-caption-text">Select and blend rectangle</p></div>
<h2>Step Three: Add light reflection</h2>
<p>Make a small rebounded rectangle path and fill it with black &amp; white Gradient. Place it on top of the rectangles. Note if your color setting is CMYK, make sure the black for the gradient is full black[C=100, M=100, Y=100, K=100]. Select the small rebounded rectangle, go to <strong>Transparency</strong> pallate, select <strong>Screen</strong> Blend Mode. If your <strong>Transparency</strong> is not showing, go to <strong>Window</strong> -&gt; <strong>Transparency</strong> or press [<strong>Ctrl+Shift+F10</strong>].</p>
<div id="attachment_300" class="wp-caption alignnone" style="width: 433px"><img class="size-full wp-image-300" title="Final Image" src="http://blog.karentsui.com/wp-content/uploads/2009/06/final_image.jpg" alt="Final Image" width="423" height="191" /><p class="wp-caption-text">Final Image</p></div>
<div id="attachment_307" class="wp-caption alignnone" style="width: 282px"><img class="size-full wp-image-307" title="Glassy button" src="http://blog.karentsui.com/wp-content/uploads/2009/06/glassy_button.jpg" alt="Glassy button" width="272" height="123" /><p class="wp-caption-text">Glassy button</p></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.karentsui.com/create-a-glassy-button-with-adobe-illustrator/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Tutorial: Typographic Portrait using Photoshop</title>
		<link>http://blog.karentsui.com/tutorial-typographic-portrait-using-photoshop/</link>
		<comments>http://blog.karentsui.com/tutorial-typographic-portrait-using-photoshop/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 07:54:39 +0000</pubDate>
		<dc:creator>kmdesign</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[


]]></description>
			<content:encoded><![CDATA[<div><object width="480" height="385"></p><param name="movie" value="http://www.youtube.com/v/lzNxVZ24GQ4&#038;hl=zh_TW&#038;fs=1&#038;color1=0xcc2550&#038;color2=0xe87a9f"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param>
<embed src="http://www.youtube.com/v/lzNxVZ24GQ4&#038;hl=zh_TW&#038;fs=1&#038;color1=0xcc2550&#038;color2=0xe87a9f" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed><br />
</object></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.karentsui.com/tutorial-typographic-portrait-using-photoshop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
