<?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>PCandWEB &#187; Tutorials</title>
	<atom:link href="http://pcandweb.com/category/tutorials/feed" rel="self" type="application/rss+xml" />
	<link>http://pcandweb.com</link>
	<description>design, development and daytoday resources</description>
	<lastBuildDate>Tue, 29 Jun 2010 11:14:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>How To Embed Custom Font&#8217;s On Webpage</title>
		<link>http://pcandweb.com/tutorials/how-to-embed-custom-fonts-on-webpage.html</link>
		<comments>http://pcandweb.com/tutorials/how-to-embed-custom-fonts-on-webpage.html#comments</comments>
		<pubDate>Wed, 13 Jan 2010 10:57:16 +0000</pubDate>
		<dc:creator>Subhadeep</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Webdevelopment]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[cufon]]></category>
		<category><![CDATA[custom font]]></category>
		<category><![CDATA[embed]]></category>
		<category><![CDATA[embedding font]]></category>
		<category><![CDATA[font]]></category>
		<category><![CDATA[sifr]]></category>
		<category><![CDATA[typeface]]></category>
		<category><![CDATA[webpage]]></category>

		<guid isPermaLink="false">http://pcandweb.com/?p=1629</guid>
		<description><![CDATA[Know different ways you can embed custom fonts on your website without any server side processing and killing SEO in your pages. Typeface.js, Cufon, sIFR, CSS 3.0 know which one is best and easiest ways to embed fonts.


	
	
	
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-page-peel-advertisement-wordpress.html" rel="bookmark">
													
				How To Create A Page Peel Advertisement In WordPress !!</a>
			</li>
				
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-cool-web2-0-logo-for-black-background.html" rel="bookmark">
													
				How to Create Cool Web 2.0 Logo For Black Background</a>
			</li>
				
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-add-author-details-gravatar-wordpress-post.html" rel="bookmark">
													
				How To Add Author Details With Gravatar In WordPress Posts</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></description>
			<content:encoded><![CDATA[<p>In this tutorial i&#8217;ll show you different ways which you can use to embed custom font in your website. I&#8217;ll keep away from the old or rather obscure which is know as dynamic image replacement where graphics script used to do all the processing on the backend and convert the text to images. This method is somewhat obsolete as it is resource heavy and it doesn&#8217;t allow a many styling properties and moreover not suitable for basic servers without script support. </p>
<p>If you still want to know the process of dynamic image replacement you can check it here <a href="http://www.alistapart.com/articles/dynatext" rel="nofollow">AlistaPart</a>. <a href="http://facelift.mawhorter.net/" rel="nofollow">FLIR</a> is another great project on dynamic server side based image replacement. You can still use them if you need to, but in this article we&#8217;ll only concentrate on User Side Scripts with no backend processing and SEO friendly options.</p>
<p>What we&#8217;ll focus on instead on the 4 newer and better ways,</p>
<ol>
<li>Typeface.js</li>
<li>Cufon</li>
<li>sIFR 3</li>
<li>CSS 3</li>
</ol>
<p>The above mentioned ways have their own pros and cons which we&#8217;ll discuss as we go on, but most of the above listed ways are SEO friendly, with no server side processing and fast. But before we start i should mention most of the above mentioned methods are supported by recent browsers but older browsers will have rendering problem so depending on what you need you might want to check on the website as of the list of browsers supported.</p>
<h2>Typeface.js</h2>
<p>This works simply by using browsers capability to draw vectors in HTML documents. But before doing so the font must be converted to its internal format using the perl module.</p>
<p>1) Download Latest <a href="http://typeface.neocracy.org/download.html" rel="nofollow">Typeface.js</a>.</p>
<p>2) <a href="http://typeface.neocracy.org/fonts.html" rel="nofollow">Convert the Font</a> and download the js.</p>
<p>3) Link the js files in head.</p>
<pre><code >  &lt;script src="typeface-yourVer.js" type="text/javascript"&gt;&lt;/script&gt;
  &lt;script src="yourFont.typeface.js" type="text/javascript"&gt;&lt;/script&gt;</code></pre>
<p>4) Any HTML element you want to be rendered in typeface.js should have typeface-js in its class name and font-name in the CSS. If you are loading the style from external CSS make sure the CSS is linked on top of the js files. For my test i have used this.</p>
<pre><code >  &lt;body&gt;
    &lt;div align=center class="typeface-js" style="font-family: Gentilis;font-size: 24pt;"&gt;
      Test of Gentilis Selectable Font
    &lt;/div&gt;
  &lt;/body&gt;</code></pre>
<p>5) <a href="http://typeface.neocracy.org/examples.html" rel="nofollow">Demo Of The Above Method</a>. Also refer to <a href="http://typeface.neocracy.org/usage.html" rel="nofollow">Typeface Usage</a> for more details on its usage.</p>
<h2>Cufon</h2>
<p>This works similarly to Typeface, but main difference being the texts are NOT selectable which i think is a drawback, as far as embedding is concerned its almost same and as typeface, but the size in case of Cufon is less by some 40% with better loading time.</p>
<p>1) Download Latest <a href="http://cufon.shoqolate.com/js/cufon-yui.js" rel="nofollow">Cufon JS</a></p>
<p>2) <a href="http://cufon.shoqolate.com/generate/" rel="nofollow">Convert the font</a> and download JS</p>
<p>3) Link the js files in head, and just add the elements to replace in Cufon.replace(); css styles will be added from the predetermined stylesheet.</p>
<pre><code >&lt;head&gt;
&lt;script src="cufon-yui.js" type="text/javascript"&gt;&lt;/script&gt;
&lt;script src="yourFont.font.js" type="text/javascript"&gt;&lt;/script&gt;
&lt;script type="text/javascript"&gt;
	Cufon.replace('#cufon');
&lt;/script&gt;
&lt;/head&gt;</code></pre>
<p>4) Write the body as usual no need to stick to certain class.</p>
<pre><code >	&lt;body&gt;
		&lt;div id="cufon" align=center style="font-size: 24pt;"&gt;This text will be shown in Vegur.&lt;/div&gt;
	&lt;/body&gt;</code></pre>
<p>5) <a href="http://wiki.github.com/sorccu/cufon/demos" rel="nofollow">Demo Of The Above Method</a>. Also refer to <a href="http://wiki.github.com/sorccu/cufon/usage" rel="nofollow">Cufon Documentation</a> for more details on its usage.</p>
<h2>sIFR 3</h2>
<p>sIFR use Javascript, Flash and CSS to implement the display of custom font. Good thing is the text are selectable and this method is perfectly SEO friendly. Bad thing is it requires users to have flash plug-in installed to display the font, and also the size of the final file is pretty large by 20-30% from Typeface method.</p>
<p>The implementation is not as straight forward as other methods mentioned above, many steps are required and you need to have Adobe Flash on your machine on 1st place, follow the <a href="http://wiki.novemberborn.net/sifr3/How+to+use" rel="nofollow">Official Guide</a></p>
<p>Find here the <a href="http://dev.novemberborn.net/sifr3/beta/demo/" rel="nofollow">Official Demo</a></p>
<h2>CSS 3.0</h2>
<p>As earlier as CSS 2.0 in 1998 it was implemented but discontinued in CSS 2.1, but again in CSS 3.0 it has been re-introduced. Compatible with all major latest browsers, this is really the best method unless again it is discontinued by W3C. </p>
<p>1) Declare each font-family you want to use using @font-face rule and styles all in CSS</p>
<pre><code >@font-face {
	font-family: yourFont;
	src: url('yourFont.ttf');
}
h1 { font-family: yourFont, sans-serif; }</code></pre>
<p>4) Write the body as usual !!</p>
<pre><code >	&lt;body&gt;
		&lt;h1&gt;This text will be shown in Vegur.&lt;/h1&gt;
	&lt;/body&gt;</code></pre>
<p>5) For more references on @font-family visit <a href="http://www.w3.org/TR/css3-webfonts/#font-descriptions" rel="nofollow">W3C</a></p>
<h2>What To Use ??</h2>
<p>I&#8217;m sure this is the question which have aroused in your mind, and i&#8217;m also sure the answers in your mind too !! Dynamic Image Replacement methods like FLIR can be used if you are too creepy about rendering in different browsers and other compatibility problems in old browsers. But unless that&#8217;s not your case and you are ready to do cross browser experiments i&#8217;m sure CSS 3 is clear winner, but if i was in your place i&#8217;d wait for CSS 3 to become more mature before jumping on it, instead for now i&#8217;d use Typeface.js though its larger than Cufon i like that users can select the texts as usual, but if you are looking for something fast loading and small size i&#8217;d recommend Cufon, with all these options i doesn&#8217;t really recommend sIFR on any situation unless you really want to try something flashy (pun intended)</p>



	
	
	
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-page-peel-advertisement-wordpress.html" rel="bookmark">
													
				How To Create A Page Peel Advertisement In WordPress !!</a>
			</li>
				
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-cool-web2-0-logo-for-black-background.html" rel="bookmark">
													
				How to Create Cool Web 2.0 Logo For Black Background</a>
			</li>
				
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-add-author-details-gravatar-wordpress-post.html" rel="bookmark">
													
				How To Add Author Details With Gravatar In WordPress Posts</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></content:encoded>
			<wfw:commentRss>http://pcandweb.com/tutorials/how-to-embed-custom-fonts-on-webpage.html/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>How To Create Old Grudge Style Print Ready Business Card</title>
		<link>http://pcandweb.com/tutorials/how-to-create-old-grudge-style-print-ready-business-card.html</link>
		<comments>http://pcandweb.com/tutorials/how-to-create-old-grudge-style-print-ready-business-card.html#comments</comments>
		<pubDate>Fri, 08 Jan 2010 11:58:37 +0000</pubDate>
		<dc:creator>Subhadeep</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[business card template]]></category>
		<category><![CDATA[business card tutorial]]></category>
		<category><![CDATA[cool business cards]]></category>
		<category><![CDATA[create business card]]></category>
		<category><![CDATA[grudge business card]]></category>
		<category><![CDATA[old business card]]></category>
		<category><![CDATA[Photoshop Tutorials]]></category>

		<guid isPermaLink="false">http://pcandweb.com/?p=1530</guid>
		<description><![CDATA[Learn how you can create a cool old grudge looking print ready business card in photoshop and also learn some techniques which you can use in your future designs


	
	
	
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-cool-shattered-rainbow-text-effect-photoshop.html" rel="bookmark">
													
				How To Create Cool Shattered Rainbow Text Effect In Photoshop</a>
			</li>
				
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-cool-glossy-shiny-web20-heart-photoshop.html" rel="bookmark">
													
				How To Create A Cool Glossy Shiny Web 2.0 Heart in Photoshop</a>
			</li>
				
					<li>
				<a href="http://pcandweb.com/showcase/inspirational-cool-creative-business-card-designs-showcase-part-2.html" rel="bookmark">
													
				30+ Inspirational, Cool And Creative Business Card Designs Showcase (Part 2)</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></description>
			<content:encoded><![CDATA[<p>PS. The fastest way to start a site just like this one is to get yourself a premium <a title="Magazine WordPress Themes" href="http://magazinewordpresstheme.com/" target="_blank" rel="nofollow">Magazine WordPress Theme</a>. It will save you a lot of time.<a title="WordPress Gallery Themes" href="http://wordpressgallerytheme.com/" target="_blank" rel="nofollow"></a></p>
<p style="text-align: center;">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>Today i will guide and help you to create a cool old grudged business card in photoshop which is fully print ready with full bleed. The size of the business card we&#8217;ll be creating is standard US size of 3.5 X 2 inch. I&#8217;ll show you some techniques for working swiftly for any design you do in future and i promise you&#8217;ll learn something new in the tutorial.</p>
<h2><span style="color: #ff0000;">The Assets</span></h2>
<p>Before we start i want you to download the following files unless you already have them in your computer. This will be needed in the design process.</p>
<ul>
<li><a href="http://pcandweb.com/wp-content/uploads/2010/01/Business-Card-3.5x2-Template.zip">Business Card (Bleed Ready) Template</a></li>
<li><a href="http://mayang.com/textures/Manmade/images/Paper/rough_natural_paper_6222747.JPG" rel="nofollow">Rough Natural Paper Texture</a></li>
<li><a href="http://damnmachine.com/files/Calibri-all.rar" rel="nofollow">Calibri Font </a>(If you use Windows Vista or Above its already there)</li>
<li><a href="http://fonts.zaraf.ro/font771/Blackoak-Std.htm" rel="nofollow">Black Oak Std Font</a></li>
</ul>
<h2><span style="color: #ff0000;">Final Business Card Preview</span></h2>
<h2 style="text-align: left;"><a href="http://pcandweb.com/wp-content/uploads/2010/01/grudge_old_business_card.jpg"><img class="aligncenter imgborder" title="grudge_old_business_card" src="http://pcandweb.com/wp-content/uploads/2010/01/grudge_old_business_card.jpg" alt="Grudge Old Business Card Preview" width="620" height="383" /></a></h2>
<h2 style="text-align: left;"><span style="color: #ff0000;">The Basics</span></h2>
<p><strong><a href="http://pcandweb.com/wp-content/uploads/2010/01/Business-Card-3.5x2-Template.zip">Download the Business Card (Bleed Ready)</a> </strong>Template. I have created this for your ease, you can use this in any future design you&#8217;ll be doing. Let me go through the template first.</p>
<ul>
<li>Size 3.75&#215;2.25 &#8211; The extra 0.25 inch are used for the bleed. While printing the full bleed process will trim away the extra bits. I have marked the bleed lines and cut lines and safety margin using guides, so please enable guides from View&gt;Show&gt;Guides.</li>
<li>The Template is print ready with 300dpi resolution and CMYK colour.</li>
</ul>
<p style="text-align: center;"><img class="aligncenter imgborder" title="business_card_margins" src="http://pcandweb.com/wp-content/uploads/2010/01/business_card_margins.jpg" alt="Business Card Margins" width="562" height="336" /></p>
<h2><span style="color: #ff0000;">Creating The Layout</span></h2>
<p>1) I&#8217;d recommend you switch off the guides for now so that we can check out the uncluttered design. We&#8217;ll be creating the bare background first. Create a new layer and add gradient as shown below.</p>
<p style="text-align: center;"><img class="aligncenter imgborder" title="oldcard_gradient" src="http://pcandweb.com/wp-content/uploads/2010/01/oldcard_gradient.jpg" alt="Business Card Gradient Settings" width="620" height="340" /></p>
<p style="text-align: left;">2) Next we need to add slight noise using filters. Go to Filter&gt;Noise&gt;Add Noise, Amount: 2.45%, Distribution: Gaussian, Select Monochromatic.</p>
<p style="text-align: left;">3) Assuming that you know the basics of pen tool create 3 shapes top of each other following the image below. If you don&#8217;t know to use pen tool, just select pen tool and click on 4 corners, follow the images below. Create the shapes in 3 different layers one above other.</p>
<p style="text-align: center;"><img class="aligncenter imgborder" title="old_card_shapes1" src="http://pcandweb.com/wp-content/uploads/2010/01/old_card_shapes1.jpg" alt="" width="620" height="340" /></p>
<p style="text-align: center;"><img class="aligncenter imgborder" title="old_card_shapes2" src="http://pcandweb.com/wp-content/uploads/2010/01/old_card_shapes2.jpg" alt="" width="620" height="340" /></p>
<p style="text-align: center;"><img class="aligncenter imgborder" title="old_card_shapes3" src="http://pcandweb.com/wp-content/uploads/2010/01/old_card_shapes3.jpg" alt="" width="620" height="340" /></p>
<h2 style="text-align: left;"><span style="color: #ff0000;">Adding The Text</span></h2>
<p>1) Lets start with the name, using Black Oak Std font, you can also use any other font i had found this font on machine lying idle so i used it, but try to use old style fonts, type 18pt #db9628 text. You&#8217;ll notice the width of the font is very high, so what you need to do is Press CTRL+T (Transform) and lower the width. Also lower the line height to 18pt.</p>
<p style="text-align: center;"><img class="aligncenter imgborder" title="text_layout1" src="../wp-content/uploads/2010/01/text_layout1.jpg" alt="" width="620" height="340" /></p>
<p style="text-align: center;"><img class="aligncenter imgborder" title="text_layout2" src="http://pcandweb.com/wp-content/uploads/2010/01/text_layout2.jpg" alt="" width="620" height="340" /></p>
<p>2) Right Click the text layer and select convert to smart object. If you are using lower versions of photoshop and don&#8217;t have this option please rasterize the layer by right clicking and selecting rastarize layer. We need to do this to give the text the flow of the shapes. After converting press CTRL+T again.</p>
<p>3) Now this part is somewhat difficult and may require retries. Press ALT key in the keyboard and drag the corners of the transform box to the edge of the shape. You might want to try lowering the height of the text before doing this. Now press both Shift+ALT and and select one corner and drag it towards inside to lower the text size.</p>
<p style="text-align: center;"><img class="aligncenter imgborder" title="text_layout3" src="../wp-content/uploads/2010/01/text_layout3.jpg" alt="" width="620" height="340" /></p>
<p style="text-align: center;"><img class="aligncenter imgborder" title="text_layout4" src="../wp-content/uploads/2010/01/text_layout4.jpg" alt="" width="620" height="340" /></p>
<p>4) Then drag the text little down and readjust the corners pressing ALT until you come up with something shown below.</p>
<p style="text-align: center;"><img class="aligncenter imgborder" title="text_layout5" src="../wp-content/uploads/2010/01/text_layout5.jpg" alt="" width="620" height="340" /></p>
<p>5) Follow the same steps for the other texts too. Several retries will give you the wanted result. For the other texts i have use Calibri font. For the brown text the colour i have uses is #4b3613.</p>
<p style="text-align: center;"><img class="aligncenter imgborder" title="text_layout6" src="../wp-content/uploads/2010/01/text_layout6.jpg" alt="" width="620" height="340" /></p>
<h2 style="text-align: left;"><span style="color: #ff0000;">Adding The Flavour</span></h2>
<p>In this part we&#8217;ll look on how we can give the card a old paper type feel. This part is not so tough, this is the chill out part.</p>
<p>1) I hope you have already downloaded the<a href="http://mayang.com/textures/Manmade/images/Paper/rough_natural_paper_6222747.JPG" rel="nofollow"> Rough Natural Paper Texture</a>. Drag it over to our main business card PSD file, and use CTRL+T to lower its width and height to 58%. Make sure its on top of all layers.</p>
<p>2) Now Press CTRL+U (Hue Saturation) and select saturation to -100. Change the blending mode to Overlay, opacity 23%. Then select CTRL+L (Levels) And try experimenting until you get a good feeling of the paper texture.</p>
<p style="text-align: center;"><img class="aligncenter imgborder" title="card_effect1" src="../wp-content/uploads/2010/01/card_effect1.jpg" alt="" width="620" height="340" /></p>
<p>3) Now we&#8217;ll add a burned edge effect. For that first create a new layer and place it above all layers. Fill it with black. Now select the Rectangular Marquee Tool, change feather to 20px on the top. Draw a  box as shown on image below and press delete. Deselect it and change opacity 62% and blending to linear burn. Now press CTRL+U and follow settings shown below.</p>
<p style="text-align: center;"><img class="aligncenter imgborder" title="card_effect2" src="http://pcandweb.com/wp-content/uploads/2010/01/card_effect2.jpg" alt="" width="620" height="340" /></p>
<p style="text-align: center;"><img class="aligncenter imgborder" title="card_effect3]" src="http://pcandweb.com/wp-content/uploads/2010/01/card_effect3.jpg" alt="" width="620" height="340" /></p>
<p style="text-align: center;"><img class="aligncenter imgborder" title="card_effect4" src="http://pcandweb.com/wp-content/uploads/2010/01/card_effect4.jpg" alt="" width="620" height="340" /></p>
<h2 style="text-align: left;"><span style="color: #ff0000;">The Torned Edge</span></h2>
<p>1) We need to create the brush for the torned edge, select 17px Chalk brush and increase its size to 20px. Then Go to Brush setting (Windows&gt;Brushes) and follow the images below.</p>
<p style="text-align: center;"><img class="aligncenter imgborder" title="brush_1" src="../wp-content/uploads/2010/01/brush_1.jpg" alt="" width="620" height="340" /></p>
<p style="text-align: center;"><img class="aligncenter imgborder" title="brush_2" src="http://pcandweb.com/wp-content/uploads/2010/01/brush_2.jpg" alt="" width="620" height="340" /></p>
<p style="text-align: center;"><img class="aligncenter imgborder" title="brush_3" src="../wp-content/uploads/2010/01/brush_3.jpg" alt="" width="620" height="340" /></p>
<p style="text-align: left;">2) Now Insert a new layer above all layers, make brush colour black and draw something which resembles below.</p>
<p style="text-align: center;"><img class="aligncenter imgborder" title="brush_4" src="http://pcandweb.com/wp-content/uploads/2010/01/brush_4.jpg" alt="" width="620" height="340" /></p>
<p style="text-align: left;">3) Change Blending to softlight and opacity to 53% and congrats your Business card is ready. Go print it.</p>
<p style="text-align: center;"><img class="aligncenter imgborder" title="old_grudge_business_card" src="http://pcandweb.com/wp-content/uploads/2010/01/old_grudge_business_card.jpg" alt="" width="620" height="354" /></p>
<h2 style="text-align: left;"><span style="color: #ff0000;">Download The Business Card</span></h2>
<p>As always for your convenience i have provided the download link for the completed PSD file below for FREE. If you don&#8217;t want to go over this steps and just want to edit the text and print your card you can do so by selecting the text layer and clicking Edit Contents.</p>
<p style="text-align: center;"><a href="http://pcandweb.com/wp-content/uploads/2010/01/Old Style Business Card_PCandWEB.zip"><img class="size-full wp-image-1329  aligncenter" title="download" src="http://pcandweb.com/wp-content/uploads/2010/01/download.jpg" alt="" width="328" height="101" /></a></p>
<h2><span style="color: #ff0000;">Get Your Card Printed For Free !!</span></h2>
<p>Uprinting is offering 250 free business card to 1 lucky winner, to enter the contest <a href="http://pcandweb.com/freebies/business-card-giveaway-from-uprinting-get-your-card-printed-for-free.html">Click Here</a></p>
<p style="text-align: left;">



	
	
	
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-cool-shattered-rainbow-text-effect-photoshop.html" rel="bookmark">
													
				How To Create Cool Shattered Rainbow Text Effect In Photoshop</a>
			</li>
				
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-cool-glossy-shiny-web20-heart-photoshop.html" rel="bookmark">
													
				How To Create A Cool Glossy Shiny Web 2.0 Heart in Photoshop</a>
			</li>
				
					<li>
				<a href="http://pcandweb.com/showcase/inspirational-cool-creative-business-card-designs-showcase-part-2.html" rel="bookmark">
													
				30+ Inspirational, Cool And Creative Business Card Designs Showcase (Part 2)</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></content:encoded>
			<wfw:commentRss>http://pcandweb.com/tutorials/how-to-create-old-grudge-style-print-ready-business-card.html/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>How To Design A Grey-Blue Blog Design In Photoshop &#8211; GreyFuture</title>
		<link>http://pcandweb.com/tutorials/how-to-design-a-grey-blue-blog-design-in-photoshop-greyfuture.html</link>
		<comments>http://pcandweb.com/tutorials/how-to-design-a-grey-blue-blog-design-in-photoshop-greyfuture.html#comments</comments>
		<pubDate>Sun, 03 Jan 2010 08:50:23 +0000</pubDate>
		<dc:creator>Subhadeep</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[cool layout]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[grey layout]]></category>
		<category><![CDATA[layout design]]></category>
		<category><![CDATA[Photoshop Tutorials]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://pcandweb.com/?p=1338</guid>
		<description><![CDATA[Create a grey-blue blog theme from scratch using photoshop, learn different techniques to enhance and sharpen your layouts. Download the layout and use it freely.


	
	
	
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-simple-greenary-layout-wordpress-photoshop.html" rel="bookmark">
													
				How To Create A Simple Greenary Layout For WordPress In Photoshop</a>
			</li>
				
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-cool-glossy-shiny-web20-heart-photoshop.html" rel="bookmark">
													
				How To Create A Cool Glossy Shiny Web 2.0 Heart in Photoshop</a>
			</li>
				
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-simple-yet-attractive-eye-catchy-signature.html" rel="bookmark">
													
				How To Create Simple Yet Attractive Eye Catchy Signature In Photoshop</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></description>
			<content:encoded><![CDATA[<p>If you are looking for a nice way to display your photos you might want to check out <a title="WordPress Gallery Themes" href="http://wordpressgallerytheme.com/" target="_blank" rel="nofollow">WordPress Gallery Theme.</a></p>
<p style="text-align: center;">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p style="text-align: left;">This is my 2nd attempt of creating a attractive blog layout in photoshop, My previous attempt : <a href="http://pcandweb.com/tutorials/how-to-create-simple-greenary-layout-wordpress-photoshop.html"><em>How to Create Greenary WordPress Layout In Photoshop</em></a> had a fair amount of response and had even been<em> <a href="http://pcandweb.com/freebies/freebie-blogger-template-greenary.html">converted to working Blogger theme</a></em> which is being used by more than 100&#8242;ds for blogspot blogs !!</p>
<p style="text-align: left;">This design which have <em>grey and blue</em> as their main base colours, <em>PSD file have been attached</em> at the end of the tutorial for your convenience, but please note i haven&#8217;t been able to get much time to arrange the layers and release, so you have to cope with un-arranged layers, and as always this theme is free and can be used on any commercial or personal purposes (i prefer the proper credit be given though). If anybody want to convert it into working theme don&#8217;t forget to let me know how you did <img src='http://pcandweb.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h2 style="text-align: left;">Final Layout</h2>
<p style="text-align: left;">
<div class="mceTemp mceIEcenter" style="text-align: left;">
<dl class="wp-caption aligncenter" style="width: 610px;">
<dt class="wp-caption-dt"><a href="http://pcandweb.com/wp-content/uploads/2010/01/greyfuture.jpg"><img class="imgborder" title="greyfuture-small" src="http://pcandweb.com/wp-content/uploads/2010/01/greyfuture-small.jpg" alt="" width="600" height="912" /></a></dt>
<dd class="wp-caption-dd">Grey Future (Click To Enlarge)</dd>
</dl>
</div>
<p style="text-align: left;">
<h2 style="text-align: left;">Creating The Header &amp; Menu</h2>
<p style="text-align: left;">1) Create a New File  <strong>(Width 1020, Height 1550)</strong></p>
<p style="text-align: left;">2) Use the rectangle tool to draw a rectangle in the top.</p>
<p style="text-align: left;"><img class="aligncenter imgborder" title="greyfuture_1" src="http://pcandweb.com/wp-content/uploads/2010/01/greyfuture_1.jpg" alt="" width="600" height="184" /></p>
<p style="text-align: left;">3) Open Layer Style Palate and give it a gradient as shown in image below.</p>
<p style="text-align: left;"><img class="aligncenter imgborder" title="greyfuture_2" src="http://pcandweb.com/wp-content/uploads/2010/01/greyfuture_2.jpg" alt="" width="600" height="310" /></p>
<p style="text-align: left;">4) Create another rectangle just below the upper rectangle and add the following layerstyle.</p>
<p style="text-align: center;"><img class="aligncenter imgborder" title="greyfuture_3" src="http://pcandweb.com/wp-content/uploads/2010/01/greyfuture_3.jpg" alt="" width="600" height="267" /></p>
<p style="text-align: center;"><img class="aligncenter imgborder" title="greyfuture_4" src="http://pcandweb.com/wp-content/uploads/2010/01/greyfuture_4.jpg" alt="" width="600" height="363" /></p>
<p style="text-align: left;">It will look like below after your done.</p>
<p style="text-align: center;"><img class="aligncenter imgborder" title="greyfuture_5" src="http://pcandweb.com/wp-content/uploads/2010/01/greyfuture_5.jpg" alt="" width="607" height="348" /></p>
<p style="text-align: left;">5) I&#8217;ve created the top right menu using <strong>Myriad Pro (condensed) 16pt.</strong></p>
<p style="text-align: center;"><img class="aligncenter imgborder" title="greyfuture_6" src="http://pcandweb.com/wp-content/uploads/2010/01/greyfuture_6.jpg" alt="" width="507" height="227" /></p>
<p style="text-align: left;">6) The main top menu text have been done using <strong>Myriad Pro (Bold Condensed) 24pt #444444.</strong> In the logo <strong>Myriad Pro (Black Condensed) 76pt</strong> have been used and layer style shown below have been added. Slogan is <em>18pt Myriad Pro (Black Condensed). If you dont have Myriad Pro, i&#8217;d recommend using Impact for the logo and Arial in other areas.</em></p>
<p style="text-align: center;"><em><img class="aligncenter imgborder" title="greyfuture_9" src="http://pcandweb.com/wp-content/uploads/2010/01/greyfuture_9.jpg" alt="" width="600" height="243" /></em></p>
<p style="text-align: center;"><em> <img class="aligncenter imgborder" title="greyfuture_8" src="http://pcandweb.com/wp-content/uploads/2010/01/greyfuture_8.jpg" alt="" width="592" height="351" /></em></p>
<p style="text-align: center;"><em> <img class="aligncenter imgborder" title="greyfuture_10" src="http://pcandweb.com/wp-content/uploads/2010/01/greyfuture_10.jpg" alt="" width="592" height="354" /> </em></p>
<p><img class="aligncenter imgborder" title="greyfuture_7" src="http://pcandweb.com/wp-content/uploads/2010/01/greyfuture_7.jpg" alt="" width="624" height="234" /></p>
<h2>Creating Featured Section &amp; Polishing Borders</h2>
<p>7) Now similar to what you have done with menu, create a rectangle just below menu with approximately double height of the header, and add a light grey to medium grey, linear gradient using layer styles. This box will be used for the featured post section.</p>
<p>8 ) Now we&#8217;ll learn how to polish the edges to make them look more edged, this is a very easy trick, all you have to remember is that we need to 1px lines side by side, 1 will be of darker colour and another lighter colour. Check the image below.</p>
<p style="text-align: center;"><img class="aligncenter imgborder" title="greyfuture_11" src="http://pcandweb.com/wp-content/uploads/2010/01/greyfuture_11.jpg" alt="" width="600" height="426" /></p>
<p style="text-align: left;">If you are unsure about the colour, just add 1 black and one white line and play with the opacity slider in layers panel.</p>
<p style="text-align: left;">9) The featured post Heading text have been created using <strong>Myriad Pro (Semi Condensed) 36pt</strong>, and a gradient have been added (<strong>linear #7d7e7d to #oeoeoe</strong>). The paragraph text : <strong>Arial 14pt #434343. </strong></p>
<p style="text-align: left;">10) For the button select Rounded Rectangle tool and select 20pc as radius, then draw a small rectangle. Give it a grey to white gradient and 1pc white stroke. The text is Arial Bold 18pt, with a inner shadow, the setting can be checked using the PSD file.</p>
<p style="text-align: left;">11) The image have to have the following style.</p>
<p style="text-align: center;"><img class="aligncenter imgborder" title="greyfuture_12" src="http://pcandweb.com/wp-content/uploads/2010/01/greyfuture_12.jpg" alt="" width="591" height="351" /></p>
<p style="text-align: center;"><img class="aligncenter imgborder" title="greyfuture_13" src="http://pcandweb.com/wp-content/uploads/2010/01/greyfuture_13.jpg" alt="" width="584" height="412" /></p>
<p style="text-align: center;">
<p style="text-align: left;">13) Now the last thing we need for the featured section is a shadow, which is very easy thing to add, create a new layer behind the featured post layer and create a elliptical circle, then give it a guassian blur of 25-35 px, and the readjust the position and lower the opacity to 33.</p>
<p style="text-align: center;"><img class="aligncenter imgborder" title="greyfuture_14" src="http://pcandweb.com/wp-content/uploads/2010/01/greyfuture_14.jpg" alt="" width="600" height="185" /></p>
<p style="text-align: left;">The final image uptil now for what we have done.</p>
<p style="text-align: center;"><img class="aligncenter imgborder" title="greyfuture_15" src="http://pcandweb.com/wp-content/uploads/2010/01/greyfuture_15.jpg" alt="" width="600" height="299" /></p>
<h2 style="text-align: left;">Creating The Posts</h2>
<p>14) Creating the main body is easy as hell, 1st divide the width of document using the guides into two sections for your convenience. Then draw a white rectangle just below the menu rectangle. On the left section where the blogposts are visible, I have used Arial 24pt Bold, dark blue colour texts. Then i have used the line tool to draw a wide line below of two colours one light blue and one dark. Then on the right i have used Arial 12pt text. Check the image below.</p>
<p style="text-align: center;"><img class="aligncenter imgborder" title="greyfuture_16" src="http://pcandweb.com/wp-content/uploads/2010/01/greyfuture_16.jpg" alt="" width="594" height="113" /></p>
<p>For the paragraphs i have used Arial 14 pt, light grey color.</p>
<p>15) Next you again need to draw a rounded rectangle with 5px radius just below the paragraph, and add a 1 pc inner shadow of white colour, layer style to normak and choke to 1oo, and distance to 0, and also add a light grey  gradient , and a stroke or 1 px light grey outside. Then using Arial font write comments on left and read more on right. Go to custom shape tool and select arrow shape and draw a small arrow beside read more, and change the colour to blue.</p>
<p style="text-align: center;"><img class="aligncenter imgborder" title="greyfuture_17" src="http://pcandweb.com/wp-content/uploads/2010/01/greyfuture_17.jpg" alt="" width="589" height="326" /></p>
<p>Same way do this for the 2nd post only changing the content and the positions.</p>
<h2>Creating the Sidebar</h2>
<p>16) Now the main thing that need to learn about the sidebar is the box style, create a rectangle with 5 px radius, and follow the styles given below.</p>
<p style="text-align: center;"><img class="aligncenter imgborder" title="greyfuture_19" src="http://pcandweb.com/wp-content/uploads/2010/01/greyfuture_19.jpg" alt="" width="593" height="358" /></p>
<p style="text-align: center;"><img class="aligncenter imgborder" title="greyfuture_18" src="http://pcandweb.com/wp-content/uploads/2010/01/greyfuture_18.jpg" alt="" width="591" height="353" /></p>
<p style="text-align: center;"><img class="aligncenter imgborder" title="greyfuture_20" src="http://pcandweb.com/wp-content/uploads/2010/01/greyfuture_20.jpg" alt="" width="593" height="351" /></p>
<p style="text-align: left;">17) For the heading i have used Myriad Pro (Semibold Condensed, and Condensed) 36pt, with a medium grey to dark gey gradient. For the search box draw a white rectangle with 1px grey border, The search butoon is self explanatory.</p>
<p style="text-align: center;"><img class="aligncenter imgborder" title="greyfuture_21" src="http://pcandweb.com/wp-content/uploads/2010/01/greyfuture_21.jpg" alt="" width="369" height="132" /></p>
<p style="text-align: left;">18) For the catagories text and popular article text refer to the image below.</p>
<p style="text-align: center;"><img class="aligncenter imgborder" title="greyfuture_22" src="http://pcandweb.com/wp-content/uploads/2010/01/greyfuture_22.jpg" alt="" width="446" height="335" /></p>
<p style="text-align: left;">19) The last thing that is left is the divider, which i have mentioned earlier, is a dark and light line, side by side, check the image below for explanation.</p>
<p style="text-align: center;"><img class="aligncenter imgborder" title="greyfuture_23" src="http://pcandweb.com/wp-content/uploads/2010/01/greyfuture_23.jpg" alt="" width="618" height="558" /></p>
<p style="text-align: center;"><img class="aligncenter imgborder" title="greyfuture_24" src="http://pcandweb.com/wp-content/uploads/2010/01/greyfuture_24.jpg" alt="" width="374" height="678" /></p>
<h2 style="text-align: left;">Creating The Footer</h2>
<p>20) Now as before create another rectangle below the middle rectangle, and add a linear gradient, #2a2a2a to  #373737. The big texts are created using 30pt Arial Bold white color, and Arial Bold 12pt color #747474. Now as always use the dark line and white line as the divider.  And the last thing you need to do is add a shadow, by the process mentioned above using a an ellipse and then blurring it and changing opacity. And yes you theme is finished.</p>
<p style="text-align: center;"><img class="aligncenter imgborder" title="greyfuture_25" src="http://pcandweb.com/wp-content/uploads/2010/01/greyfuture_25.jpg" alt="" width="620" height="211" /></p>
<p style="text-align: center;"><img class="aligncenter imgborder" title="greyfuture-small" src="http://pcandweb.com/wp-content/uploads/2010/01/greyfuture-small.jpg" alt="" width="600" height="912" /></p>
<h2 style="text-align: left;">Epilogue</h2>
<p>I&#8217;m very much interested to know if you like the theme and am also interested in seeing your own personalised versions which you come up with. If its good i will even add it in this tutorial with your name beside it <img src='http://pcandweb.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Hope you enjoyed the tutorial as much as i did writing it. Below is the download link for the PSD file.</p>
<p style="text-align: center;"><a href="http://pcandweb.com/wp-content/uploads/2010/01/Grey_Future_pcandweb.com_.zip"><img class="aligncenter" title="download" src="http://pcandweb.com/wp-content/uploads/2010/01/download.jpg" alt="" width="328" height="101" /></a></p>



	
	
	
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-simple-greenary-layout-wordpress-photoshop.html" rel="bookmark">
													
				How To Create A Simple Greenary Layout For WordPress In Photoshop</a>
			</li>
				
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-cool-glossy-shiny-web20-heart-photoshop.html" rel="bookmark">
													
				How To Create A Cool Glossy Shiny Web 2.0 Heart in Photoshop</a>
			</li>
				
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-simple-yet-attractive-eye-catchy-signature.html" rel="bookmark">
													
				How To Create Simple Yet Attractive Eye Catchy Signature In Photoshop</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></content:encoded>
			<wfw:commentRss>http://pcandweb.com/tutorials/how-to-design-a-grey-blue-blog-design-in-photoshop-greyfuture.html/feed</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Create 12 Web 2.0 Text Effects Using Layer Styles</title>
		<link>http://pcandweb.com/tutorials/create-12-web-20-text-effects-using-layer-styles.html</link>
		<comments>http://pcandweb.com/tutorials/create-12-web-20-text-effects-using-layer-styles.html#comments</comments>
		<pubDate>Fri, 01 Jan 2010 13:50:16 +0000</pubDate>
		<dc:creator>Subhadeep</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[cloudy text]]></category>
		<category><![CDATA[glow text]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[layer styles]]></category>
		<category><![CDATA[metal text]]></category>
		<category><![CDATA[Photoshop Tutorials]]></category>
		<category><![CDATA[shiny]]></category>
		<category><![CDATA[shiny text]]></category>
		<category><![CDATA[text effect]]></category>
		<category><![CDATA[text styles]]></category>
		<category><![CDATA[web 2.0 styles]]></category>
		<category><![CDATA[web2.0]]></category>

		<guid isPermaLink="false">http://pcandweb.com/?p=1300</guid>
		<description><![CDATA[Download 12 Photoshop Text Effects using layer styles to make your designing process faster, and also learn how simple layer styles can create outstanding effect when used cleverly.


	
	
	
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-simple-greenary-layout-wordpress-photoshop.html" rel="bookmark">
													
				How To Create A Simple Greenary Layout For WordPress In Photoshop</a>
			</li>
				
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-cool-shattered-rainbow-text-effect-photoshop.html" rel="bookmark">
													
				How To Create Cool Shattered Rainbow Text Effect In Photoshop</a>
			</li>
				
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-cool-glossy-shiny-web20-heart-photoshop.html" rel="bookmark">
													
				How To Create A Cool Glossy Shiny Web 2.0 Heart in Photoshop</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></description>
			<content:encoded><![CDATA[<p>This is more a Freebie than a tutorial, i have created for you 12 text effects using only layer styles which can be freely used and distributed (don&#8217;t forget to mention source). The styles are top notch and can be used for any purpose from speeding up your designing process to using then as your logo.</p>
<h2>Round Up</h2>
<p>The following images shows the texts after applying the layer styles.</p>
<p style="text-align: center;"><img class="imgborder aligncenter" title="web-2.0-pink" src="http://pcandweb.com/wp-content/uploads/2010/01/web-2.0-pink.jpg" alt="" width="620" height="267" /></p>
<p style="text-align: center;"><strong>Web 2.0 Pink Text Style</strong></p>
<p style="text-align: center;"><a href="http://pcandweb.com/wp-content/uploads/2010/01/web-2.0-pink.jpg"></a> <img class="imgborder aligncenter" title="web-2.0-green" src="http://pcandweb.com/wp-content/uploads/2010/01/web-2.0-green.jpg" alt="" width="620" height="267" /></p>
<p style="text-align: center;"><strong>Web 2.0 Green Text Style</strong></p>
<p style="text-align: center;"><a href="http://pcandweb.com/wp-content/uploads/2010/01/web-2.0-green.jpg"></a> <img class="imgborder aligncenter" title="web-2.0-blue" src="http://pcandweb.com/wp-content/uploads/2010/01/web-2.0-blue.jpg" alt="" width="620" height="267" /></p>
<p style="text-align: center;"><strong>Web 2.0 Blue Text Style</strong></p>
<p style="text-align: center;"><a href="http://pcandweb.com/wp-content/uploads/2010/01/web-2.0-blue.jpg"></a> <img class="imgborder aligncenter" title="metal-text" src="http://pcandweb.com/wp-content/uploads/2010/01/metal-text.jpg" alt="" width="620" height="267" /></p>
<p style="text-align: center;"><strong>Metal Text Style</strong></p>
<p style="text-align: center;"><a href="http://pcandweb.com/wp-content/uploads/2010/01/metal-text.jpg"></a> <img class="imgborder aligncenter" title="green-lush" src="http://pcandweb.com/wp-content/uploads/2010/01/green-lush.jpg" alt="" width="620" height="267" /></p>
<p style="text-align: center;"><strong>Green Lush Text Style</strong></p>
<p style="text-align: center;"><a href="http://pcandweb.com/wp-content/uploads/2010/01/green-lush.jpg"></a> <img class="imgborder aligncenter" title="gooby-text" src="http://pcandweb.com/wp-content/uploads/2010/01/gooby-text.jpg" alt="" width="620" height="267" /></p>
<p style="text-align: center;"><strong>Gooby Text Style</strong></p>
<p style="text-align: center;"><a href="http://pcandweb.com/wp-content/uploads/2010/01/gooby-text.jpg"></a> <img class="imgborder aligncenter" title="firefly-glow" src="http://pcandweb.com/wp-content/uploads/2010/01/firefly-glow.jpg" alt="" width="620" height="267" /></p>
<p style="text-align: center;"><strong>Firefly Glow Text Style</strong></p>
<p style="text-align: center;"><a href="http://pcandweb.com/wp-content/uploads/2010/01/firefly-glow.jpg"></a> <img class="imgborder aligncenter" title="earthly-being" src="http://pcandweb.com/wp-content/uploads/2010/01/earthly-being.jpg" alt="" width="620" height="267" /></p>
<p style="text-align: center;"><strong>Earthly Being Text Style</strong></p>
<p style="text-align: center;"><a href="http://pcandweb.com/wp-content/uploads/2010/01/earthly-being.jpg"></a> <img class="imgborder aligncenter" title="cloudy-text" src="http://pcandweb.com/wp-content/uploads/2010/01/cloudy-text.jpg" alt="" width="620" height="267" /></p>
<p style="text-align: center;"><strong>Cloudy Text Style</strong></p>
<p style="text-align: center;"><a href="http://pcandweb.com/wp-content/uploads/2010/01/cloudy-text.jpg"></a> <img class="imgborder aligncenter" title="blood-shine" src="http://pcandweb.com/wp-content/uploads/2010/01/blood-shine.jpg" alt="" width="620" height="267" /></p>
<p style="text-align: center;"><strong>Blood Shine Text Style</strong></p>
<p style="text-align: center;"><a href="http://pcandweb.com/wp-content/uploads/2010/01/blood-shine.jpg"></a> <img class="imgborder aligncenter" title="ala-twitter" src="http://pcandweb.com/wp-content/uploads/2010/01/ala-twitter.jpg" alt="" width="620" height="267" /></p>
<p style="text-align: center;"><strong>Twitter Text Style</strong></p>
<p style="text-align: center;"><a href="http://pcandweb.com/wp-content/uploads/2010/01/ala-twitter.jpg"></a> <img class="imgborder aligncenter" title="web-2.0-red" src="http://pcandweb.com/wp-content/uploads/2010/01/web-2.0-red.jpg" alt="" width="620" height="267" /></p>
<p style="text-align: center;"><strong>Web 2.0 Red Text Style</strong></p>
<h2 style="text-align: left;">The Tutorial</h2>
<p>To begin with you must 1st give the background an appropriate color or gradient, it is very necessary for the looks, i have used both radial as well as linear gradients for this purpose. You can experiment with different colors and also with the styles.</p>
<p>To learn the process how it was created just double click the &#8220;fx&#8221; icon next to the text you have used the style, layers style palate will open.</p>
<p style="text-align: center;"><img class="imgborder aligncenter" title="layer-styles" src="http://pcandweb.com/wp-content/uploads/2010/01/layer-styles.jpg" alt="" width="598" height="447" /></p>
<p>From there just click on the names which are ticked and check the settings, by the end of all the 12 layer styles i&#8217;m pretty sure you can make your own styles.</p>
<p>Please Note : The styles are more appropriate for large texts, mainly for logos or headers, but you can also use them on medium, or small texts provided you change the size of borders, shadows, gradients etc appropriately in the layer styles palate.</p>
<p>I haven&#8217;t wasted time and space just to write one by one, which you can see for yourself in layer style pallate.</p>
<p>I hope this styles will help you in your both learning and designing process.</p>
<h2>Download</h2>
<p style="text-align: center;"><a href="http://pcandweb.com/wp-content/uploads/2010/01/webstyles_pcandweb.zip"><img class="aligncenter" title="download" src="http://pcandweb.com/wp-content/uploads/2010/01/download.jpg" alt="" width="328" height="101" /></a></p>
<p>Download the layer styles above and Happy Designing !!</p>



	
	
	
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-simple-greenary-layout-wordpress-photoshop.html" rel="bookmark">
													
				How To Create A Simple Greenary Layout For WordPress In Photoshop</a>
			</li>
				
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-cool-shattered-rainbow-text-effect-photoshop.html" rel="bookmark">
													
				How To Create Cool Shattered Rainbow Text Effect In Photoshop</a>
			</li>
				
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-cool-glossy-shiny-web20-heart-photoshop.html" rel="bookmark">
													
				How To Create A Cool Glossy Shiny Web 2.0 Heart in Photoshop</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></content:encoded>
			<wfw:commentRss>http://pcandweb.com/tutorials/create-12-web-20-text-effects-using-layer-styles.html/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>How To Add Author Details With Gravatar In WordPress Posts</title>
		<link>http://pcandweb.com/tutorials/how-to-add-author-details-gravatar-wordpress-post.html</link>
		<comments>http://pcandweb.com/tutorials/how-to-add-author-details-gravatar-wordpress-post.html#comments</comments>
		<pubDate>Mon, 04 May 2009 16:28:44 +0000</pubDate>
		<dc:creator>Subhadeep</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Webdevelopment]]></category>
		<category><![CDATA[Author Description]]></category>
		<category><![CDATA[Author Details]]></category>
		<category><![CDATA[author info]]></category>
		<category><![CDATA[Gravatar]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress template]]></category>

		<guid isPermaLink="false">http://pcandweb.com/?p=937</guid>
		<description><![CDATA[Many of you are having multi author blogs and may feel the need to show the author details on every posts published, some of you may have simple author but then also you&#8217;d like to add author details coz it looks kinda cool. Most of the premium professional themes comes with the added bonus but [...]


	
	
	
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-page-peel-advertisement-wordpress.html" rel="bookmark">
													
				How To Create A Page Peel Advertisement In WordPress !!</a>
			</li>
				
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-simple-greenary-layout-wordpress-photoshop.html" rel="bookmark">
													
				How To Create A Simple Greenary Layout For WordPress In Photoshop</a>
			</li>
				
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-cool-glossy-shiny-web20-heart-photoshop.html" rel="bookmark">
													
				How To Create A Cool Glossy Shiny Web 2.0 Heart in Photoshop</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></description>
			<content:encoded><![CDATA[<p>Many of you are having multi author blogs and may feel the need to show the author details on every posts published, some of you may have simple author but then also you&#8217;d like to add author details coz it looks kinda cool. Most of the premium professional themes comes with the added bonus but as i&#8217;m a free theme lover and hope you&#8217;re too, we can easily add it to our blog. I&#8217;ll show you how i added it in this blog and show you the different ways you can add it in your blog.<span id="more-937"></span></p>
<h1>The Code</h1>
<p><span style="color: #ff0000;"><em>&lt;div id=&#8221;post_author&#8221; class=&#8221;clearfix&#8221;&gt;<br />
&lt;?php echo get_avatar( get_the_author_email(), &#8217;80&#8242; ); ?&gt;<br />
&lt;div class=&#8221;author_desc&#8221;&gt;&lt;h4&gt;Author : &lt;?php the_author_posts_link(); ?&gt;&lt;/h4&gt;<br />
&lt;p&gt;&lt;?php the_author_description(); ?&gt;&lt;/p&gt;&lt;/div&gt;<br />
&lt;/div&gt;</em></span></p>
<p>This will create a author info like i have in my every post. Lets analyse the code,</p>
<p><em>get_avatar(get_the_author_email(),&#8217;80&#8242;)</em> , imports the avatar from gravatar, 80 is the size you can change it if you want to.</p>
<p><em>the_author_posts_link()</em>, imports the link to which all the posts of author are shown, you can also change it to some other options like author sitename, IM etc, checkout the functions listed below.</p>
<p><em>the_author_description()</em>, its self explanatory it imports the description added by the author in users option in admin panel.</p>
<p><em>Some other functions you can try can be found here : <a href="http://codex.wordpress.org/Template_Tags#Tags" target="_blank" rel="nofollow">Template Tags</a></em> <em>( Check Author Tags)</em></p>
<h1>The CSS</h1>
<p>Ofcourse everyone knows the output have to be styled, heres the default CSS i use for my site, you can change it to what ever suits your need.</p>
<p><span style="color: #ff0000;">#post_author {<br />
border: 1px solid #E8E8E8;<br />
background: #EBF6FB;<br />
padding: 10px;<br />
margin: 20px auto 20px auto;<br />
}<br />
#post_author img {<br />
float: left;<br />
border: 1px solid #E8E8E8;<br />
}<br />
#post_author h4 {<br />
font-size: 1.4em;<br />
margin-bottom: 5px;<br />
font-family: Arial, Helvetica, sans-serif;<br />
}<br />
#post_author p {<br />
margin: 0;<br />
padding: 0;<br />
}<br />
.author_desc {<br />
padding-left: 95px;<br />
}</span></p>
<p>If you don&#8217;t understand the CSS and need any type of help with modification of style ask in comment, me or some other users will surely answer or you can also try some basic tutorials on internet on CSS.</p>
<h1>How To Add</h1>
<p>The biggest question aint it, if your a geek you already figured out if not heres the process,</p>
<ol>
<li>Open <em>style.css</em> in your template and at the end of all CSS codes just paste the CSS lines in red above.</li>
<li>Open <em>single.php</em> and find <em>&lt;?php the_content( &#8221; ); ?&gt;</em> now if you want the author description to appear at the start of every post just paste the PHP Code high above in red, just before the line <em>&lt;?php the_content( &#8221; ); ?&gt;</em>, if you want it to appear at end of every post paste it below the line <em>&lt;?php the_content( &#8221; ); ?&gt;<br />
</em></li>
</ol>
<p><em>Please Check The Following Images For Example :</em></p>
<p><em> </em></p>
<div id="attachment_947" class="wp-caption aligncenter" style="width: 504px"><em> </em><em><img class="imgborder  " title="css" src="http://pcandweb.com/wp-content/uploads/2009/05/css.png" alt="CSS Example" width="494" height="541" /></em><p class="wp-caption-text">CSS Example</p></div>
<div id="attachment_948" class="wp-caption aligncenter" style="width: 510px"><img class="size-full wp-image-948" title="php" src="http://pcandweb.com/wp-content/uploads/2009/05/php.png" alt="php" width="500" height="200" /><p class="wp-caption-text">PHP Example</p></div>
<p>And your professonal author description is ready, add more details in the php using the other functions and change it to suit your needs its all upto you.</p>



	
	
	
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-page-peel-advertisement-wordpress.html" rel="bookmark">
													
				How To Create A Page Peel Advertisement In WordPress !!</a>
			</li>
				
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-simple-greenary-layout-wordpress-photoshop.html" rel="bookmark">
													
				How To Create A Simple Greenary Layout For WordPress In Photoshop</a>
			</li>
				
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-cool-glossy-shiny-web20-heart-photoshop.html" rel="bookmark">
													
				How To Create A Cool Glossy Shiny Web 2.0 Heart in Photoshop</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></content:encoded>
			<wfw:commentRss>http://pcandweb.com/tutorials/how-to-add-author-details-gravatar-wordpress-post.html/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>How To Create Man-Babies In Photoshop</title>
		<link>http://pcandweb.com/tutorials/how-to-create-man-babies-in-photoshop.html</link>
		<comments>http://pcandweb.com/tutorials/how-to-create-man-babies-in-photoshop.html#comments</comments>
		<pubDate>Thu, 30 Apr 2009 21:09:52 +0000</pubDate>
		<dc:creator>Subhadeep</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Baby Images]]></category>
		<category><![CDATA[Blending Tutorial]]></category>
		<category><![CDATA[create]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[image manipulation]]></category>
		<category><![CDATA[Man Baby]]></category>
		<category><![CDATA[Photo Manipulation Tutorials]]></category>
		<category><![CDATA[Photoshop Tutorials]]></category>

		<guid isPermaLink="false">http://pcandweb.com/?p=889</guid>
		<description><![CDATA[Few days ago one of my friend created a showcase of photoshopped man-baby images , i really liked the idea, moreover there was a comment asking for tutorials on it, so here am i posting a very simple tutorial on creating man-baby. Please note to follow the tutorial you must atleast know some basics because [...]


	
	
	
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-cool-shattered-rainbow-text-effect-photoshop.html" rel="bookmark">
													
				How To Create Cool Shattered Rainbow Text Effect In Photoshop</a>
			</li>
				
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-cool-glossy-shiny-web20-heart-photoshop.html" rel="bookmark">
													
				How To Create A Cool Glossy Shiny Web 2.0 Heart in Photoshop</a>
			</li>
				
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-simple-greenary-layout-wordpress-photoshop.html" rel="bookmark">
													
				How To Create A Simple Greenary Layout For WordPress In Photoshop</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></description>
			<content:encoded><![CDATA[<p>Few days ago one of my friend created a <a href="http://laranzjoe.blogspot.com/2009/04/man-babies.html" target="_blank" rel="nofollow">showcase of photoshopped man-baby</a> images , i really liked the idea, moreover there was a comment asking for tutorials on it, so here am i posting a very simple tutorial on creating man-baby. Please note to follow the tutorial you must atleast know some basics because this tutorial only shows an approach of creating it, the rest you have to do on your own. So lets start.<span id="more-889"></span></p>
<h2>Find Most Suitable Image</h2>
<p>You need to have a suitable image to start with or you can find some on <a href="http://flickr.com" target="_blank" rel="nofollow">flickr</a>, <a href="http://sxc.hu" rel="nofollow">sxc.hu</a> etc. I&#8217;ll use the following 2 images, both pictures have proper skin tones, background and faces to start with.</p>
<div id="attachment_890" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.flickr.com/photos/tonbut/2984084970/" rel="nofollow"><img class="size-full wp-image-890" title="man_baby" src="http://pcandweb.com/wp-content/uploads/2009/05/man_baby.jpg" alt="man_baby" width="500" height="375" /></a><p class="wp-caption-text">© Tonbut. All Rights Reserved.</p></div>
<div id="attachment_891" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.flickr.com/photos/hungsberg/933824989/" rel="nofollow"><img class="size-full wp-image-891" title="man_baby2" src="http://pcandweb.com/wp-content/uploads/2009/05/man_baby2.jpg" alt="man_baby2" width="500" height="354" /></a><p class="wp-caption-text">© Hungsberg. All Rights Reserved</p></div>
<p>Please note example no1,2 and 3 in <a href="http://laranzjoe.blogspot.com/2009/04/man-babies.html" target="_blank" rel="nofollow">man-babies showcase</a> uses a very different approach its based on photography, 2 different shots were taken with proper pose and merged on photoshop, i don&#8217;t have such photographs so can&#8217;t take that approach, but you can always try capturing on ur cam and editing them.</p>
<h2>Basics</h2>
<p>First step is rather easy using the rectangular, circular or any other marquee tool copy paste [CTRL+J] the faces and align them correctly (lawer opacity to see through it), if transformation like size, angle etc is needed do it using transform [CTRL+T].</p>
<p><img class="aligncenter size-full wp-image-892" title="transform" src="http://pcandweb.com/wp-content/uploads/2009/05/transform.jpg" alt="transform" width="500" height="372" /></p>
<p><img class="aligncenter size-full wp-image-893" title="transform2" src="http://pcandweb.com/wp-content/uploads/2009/05/transform2.jpg" alt="transform2" width="500" height="353" /></p>
<p>In the 2nd image i have swapped the face horizontally using transform to make it flow with the original image. I have also made the size small and aligned it directly above the faces using opacity see through.</p>
<h2>Clean Up</h2>
<p>Cleanup is the most important of all, i have used layer mask and brushes to clean it up, 1st u need to select the head layer which you want to clean, and then click the &#8220;Add Layer Mask&#8221; Button <img class="alignnone size-full wp-image-894" title="mask" src="http://pcandweb.com/wp-content/uploads/2009/05/mask.jpg" alt="mask" width="170" height="14" />in the layers panel,  this will create a new mask in the currently selected layer, Press &#8220;D&#8221; to make your foreground colour black, now select a soft round brush and paint it over the extra pixels, it will be hidden by the mask, if you think u have mistaken just press &#8220;X&#8221; to swap foreground colour with white and brush and it will appear, try to precisely make the edges sharp and erase the extra pixels.</p>
<p style="text-align: center;"><img class="size-full wp-image-895 aligncenter" title="clear" src="http://pcandweb.com/wp-content/uploads/2009/05/clear.jpg" alt="clear" width="500" height="335" /></p>
<p style="text-align: left;">You can also use lasso, pentool etc to create a selection and fill it with black to remove extra pixels, its totally upto you and what you are most comfortable with, i needed speed so i used brush, make sure you change the diameter of brush when required. This step cannot be done in one step it needs practise and patience and number of trials.</p>
<h2 style="text-align: left;">Tips &amp; Tricks</h2>
<p>After you erase the extra parts i&#8217;m preety sure you&#8217;ll not get the desired effect, either your hair will look blurry or shadow will look awry, or maybe you also need to delete some parts of original to accomodate the new. In image 1 the hair was real difficult to sharpen what i did was real simple used some parts of the hair of the original image. Check the image below.</p>
<p><img class="aligncenter size-full wp-image-896" title="hair" src="http://pcandweb.com/wp-content/uploads/2009/05/hair.jpg" alt="hair" width="500" height="349" /></p>
<p>But in the 2nd image i had to erase some parts to accomodate new face, for that i used clone tool to duplicate the shrubs.</p>
<p><img class="aligncenter size-full wp-image-897" title="clone" src="http://pcandweb.com/wp-content/uploads/2009/05/clone.jpg" alt="clone" width="500" height="200" /></p>
<p>You may face many other problems like awry shadows which can also be solved by clone tool, sometimes to mix up both images smudge tool can be used, the main point is you need to know basics of photoshop and the basic idea before doing the edit.</p>
<h2>Finally</h2>
<p>After some real modifications i finally came up with both finished versions, though it may not be as good, i did it in hurry, if you give it time it will look more beautiful. And also don&#8217;t forget to capture custom photos and merge them to create real cool effects.</p>
<p><img class="aligncenter size-full wp-image-898" title="man_baby_done" src="http://pcandweb.com/wp-content/uploads/2009/05/man_baby_done.jpg" alt="man_baby_done" width="500" height="375" /></p>
<p><img class="aligncenter size-full wp-image-899" title="man_baby_done2" src="http://pcandweb.com/wp-content/uploads/2009/05/man_baby_done2.jpg" alt="man_baby_done2" width="500" height="354" /></p>
<h2>Source Files</h2>
<p>The source files can be dowloaded here : <a href="pcandweb.com/wp-content/uploads/2009/05/manbaby.rar">MANBABY.RAR</a></p>
<p>Whether <a href="http://www.hostseeq.com/c/domain_registration.htm" rel="nofollow">domain name registration</a> or <a href="http://www.hostseeq.com/c/internet_marketing.htm" rel="nofollow">online marketing</a> service providers, all are likely to <a href="http://www.hostseeq.com/c/merchant_accounts.htm" rel="nofollow">accept credit card</a> transactions nowadays.</p>



	
	
	
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-cool-shattered-rainbow-text-effect-photoshop.html" rel="bookmark">
													
				How To Create Cool Shattered Rainbow Text Effect In Photoshop</a>
			</li>
				
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-cool-glossy-shiny-web20-heart-photoshop.html" rel="bookmark">
													
				How To Create A Cool Glossy Shiny Web 2.0 Heart in Photoshop</a>
			</li>
				
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-simple-greenary-layout-wordpress-photoshop.html" rel="bookmark">
													
				How To Create A Simple Greenary Layout For WordPress In Photoshop</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></content:encoded>
			<wfw:commentRss>http://pcandweb.com/tutorials/how-to-create-man-babies-in-photoshop.html/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>How To Create Simple Yet Attractive Eye Catchy Signature In Photoshop</title>
		<link>http://pcandweb.com/tutorials/how-to-create-simple-yet-attractive-eye-catchy-signature.html</link>
		<comments>http://pcandweb.com/tutorials/how-to-create-simple-yet-attractive-eye-catchy-signature.html#comments</comments>
		<pubDate>Mon, 27 Apr 2009 20:03:18 +0000</pubDate>
		<dc:creator>Subhadeep</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[attractive signature]]></category>
		<category><![CDATA[cool signature]]></category>
		<category><![CDATA[create signature]]></category>
		<category><![CDATA[photoshop signature]]></category>
		<category><![CDATA[Photoshop Tutorial]]></category>
		<category><![CDATA[signature tutorial]]></category>

		<guid isPermaLink="false">http://pcandweb.com/?p=853</guid>
		<description><![CDATA[I have been very slow going these days , due to my work, and today i&#8217;m back with a very simple photoshop tutorial, The aim of the tutorial is to create a very very simple signature for advertising yoursite in forums, portals etc and i guarantee it will be more noticable and attactive than other [...]


	
	
	
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-cool-glossy-shiny-web20-heart-photoshop.html" rel="bookmark">
													
				How To Create A Cool Glossy Shiny Web 2.0 Heart in Photoshop</a>
			</li>
				
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-cool-shattered-rainbow-text-effect-photoshop.html" rel="bookmark">
													
				How To Create Cool Shattered Rainbow Text Effect In Photoshop</a>
			</li>
				
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-simple-greenary-layout-wordpress-photoshop.html" rel="bookmark">
													
				How To Create A Simple Greenary Layout For WordPress In Photoshop</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></description>
			<content:encoded><![CDATA[<p>I have been very slow going these days , due to my work, and today i&#8217;m back with a very simple photoshop tutorial, The aim of the tutorial is to create a very very simple signature for advertising yoursite in forums, portals etc and i guarantee it will be more noticable and attactive than other complicated masterpiece signatures. And as a matter of fact the tutorial is easy as hell !!<span id="more-853"></span></p>
<p>1) Create a New File in photoshop approximate 500*150px in size. Use rounded rectangle tool (10px radius) to draw a rectangle taking up the most of the space, as the image below.</p>
<p><img class="aligncenter size-full wp-image-857" title="signature_step1" src="http://pcandweb.com/wp-content/uploads/2009/04/signature_step1.jpg" alt="signature_step1" width="500" height="273" /></p>
<p>2) Now we have to add some layer styles, click the fx button in layers panel and select gradient overlay.</p>
<p><img class="aligncenter size-full wp-image-858" title="signature_step2" src="http://pcandweb.com/wp-content/uploads/2009/04/signature_step2.jpg" alt="signature_step2" width="500" height="273" /></p>
<p>Follow the image for the gradient settings.</p>
<p><img class="aligncenter size-full wp-image-859" title="signature_step3" src="http://pcandweb.com/wp-content/uploads/2009/04/signature_step3.jpg" alt="signature_step3" width="500" height="372" /></p>
<p>Next we need to give it a stroke and shadow follow image below.</p>
<p><img class="aligncenter size-full wp-image-860" title="signature_step4" src="http://pcandweb.com/wp-content/uploads/2009/04/signature_step4.jpg" alt="signature_step4" width="500" height="742" /></p>
<p>3) Next we need to add some text over it. USe the text tool to create text and align in the center, give it a gradient and stroke as shown below.</p>
<p><img class="aligncenter size-full wp-image-862" title="signature_step5" src="http://pcandweb.com/wp-content/uploads/2009/04/signature_step5.jpg" alt="signature_step5" width="500" height="372" /></p>
<p><img class="aligncenter size-full wp-image-863" title="signature_step6" src="http://pcandweb.com/wp-content/uploads/2009/04/signature_step6.jpg" alt="signature_step6" width="500" height="372" /></p>
<p><img class="aligncenter size-full wp-image-864" title="step_6_result" src="http://pcandweb.com/wp-content/uploads/2009/04/step_6_result.png" alt="step_6_result" width="500" height="130" /></p>
<p>4) Its almost done except for giving it the prespective, create a new group and add all layers except the background layer in it and convert it into a smart object, if you are in older version and doesnt have the option just rasterize all layers except the background layer.</p>
<p><img class="aligncenter size-full wp-image-865" title="signature_step7" src="http://pcandweb.com/wp-content/uploads/2009/04/signature_step7.jpg" alt="signature_step7" width="500" height="273" /></p>
<p><img class="aligncenter size-full wp-image-866" title="signature_step8" src="http://pcandweb.com/wp-content/uploads/2009/04/signature_step8.jpg" alt="signature_step8" width="500" height="273" /></p>
<p>Now Transform the layer (CTRL+T) and pressing ALT and clicking on the nodes transform it to give it any shape yu like and which looks good.</p>
<p><img class="aligncenter size-full wp-image-867" title="signature_step9" src="http://pcandweb.com/wp-content/uploads/2009/04/signature_step9.jpg" alt="signature_step9" width="500" height="273" /></p>
<p>5) This part is about saving the image, first hide the background layer clicking on the eye icon and then go to File &gt; Save For Web And Devices, select PNG24 and makesure transparency is selected. Your Signature is ready !!</p>
<p><img class="aligncenter size-full wp-image-868" title="Signature" src="http://pcandweb.com/wp-content/uploads/2009/04/untitled-1.png" alt="Signature" width="500" height="130" /></p>
<p>Thanks Hope you enjoyed the tutorial !!</p>



	
	
	
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-cool-glossy-shiny-web20-heart-photoshop.html" rel="bookmark">
													
				How To Create A Cool Glossy Shiny Web 2.0 Heart in Photoshop</a>
			</li>
				
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-cool-shattered-rainbow-text-effect-photoshop.html" rel="bookmark">
													
				How To Create Cool Shattered Rainbow Text Effect In Photoshop</a>
			</li>
				
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-simple-greenary-layout-wordpress-photoshop.html" rel="bookmark">
													
				How To Create A Simple Greenary Layout For WordPress In Photoshop</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></content:encoded>
			<wfw:commentRss>http://pcandweb.com/tutorials/how-to-create-simple-yet-attractive-eye-catchy-signature.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How to Cut And Trim DVD,Divx,Asf etc Without Re-Encoding</title>
		<link>http://pcandweb.com/tutorials/how-to-cut-and-trim-dvddivxasf-etc-without-re-encoding.html</link>
		<comments>http://pcandweb.com/tutorials/how-to-cut-and-trim-dvddivxasf-etc-without-re-encoding.html#comments</comments>
		<pubDate>Sun, 19 Apr 2009 19:25:51 +0000</pubDate>
		<dc:creator>Subhadeep</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Cutters]]></category>
		<category><![CDATA[cutting video]]></category>
		<category><![CDATA[divx cutter]]></category>
		<category><![CDATA[dvd cutter]]></category>
		<category><![CDATA[re-encoding]]></category>
		<category><![CDATA[trimming video]]></category>
		<category><![CDATA[Vcd Cutter]]></category>
		<category><![CDATA[video trimmer]]></category>

		<guid isPermaLink="false">http://pcandweb.com/?p=604</guid>
		<description><![CDATA[When it was the era of VCD cutting songs or triming certain parts of the videos were&#8217;nt really a problem with so many Free VCD cutters available, more over VCD&#8217;s used the Codec MPEG 1 which was a pretty standard so it used to work on any VCD cutter, but now is the era of [...]


	
	
	
					<li>
				<a href="http://pcandweb.com/tipsandtricks/what-are-the-best-things-to-do-with-your-old-pc.html" rel="bookmark">
													
				What Are The Best Things To Do With Your Old PC</a>
			</li>
				
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-a-favicon-3-ways.html" rel="bookmark">
													
				How to Create A Favicon (3 Different Ways)</a>
			</li>
				
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-simple-greenary-layout-wordpress-photoshop.html" rel="bookmark">
													
				How To Create A Simple Greenary Layout For WordPress In Photoshop</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></description>
			<content:encoded><![CDATA[<p>When it was the era of VCD cutting songs or triming certain parts of the videos were&#8217;nt really a problem with so many Free VCD cutters available, more over VCD&#8217;s used the Codec MPEG 1 which was a pretty standard so it used to work on any VCD cutter, but now is the era of high resolution DV, and truly saying there are so many codecs (including video and audio) that theres no standard for a particular file moreover there are vast list of formats like divx,asf,flv etc etc, and we all know no body wants to encode videos just to cut out some songs, it losses the quality as well as takes painfully huge time unless you have the latest rig. So what we&#8217;ll do in this tutorial is use a free software called <a href="http://www.virtualdub.org/" rel="nofollow">Virtual Dub</a> and cut the parts of videos we want without any re-encoding.<br />
<span id="more-604"></span></p>
<h1>Download Virtual Dub &amp; K-lite Codec</h1>
<p>Before we proceed i need you to <a href="http://www.virtualdub.org/download.html" rel="nofollow"><strong>download Virtual Dub</strong></a>, which is completely free opensource software. It is recommended you download the stable version instead of the latest experimental ones.</p>
<p>Next thing we need to download is <strong><a href="http://www.free-codecs.com/download/K_lite_codec_pack.htm" rel="nofollow">K-lite Codec</a></strong>, if you have already any other pack of codec&#8217;s installed then its not needed. Codec pank contains the required codecs for playing a particurar format of video.</p>
<p><em><strong>Optional : </strong></em>Virtual dub does&#8217;nt support mov, flv, mp4 etc, If you need to import them please download this plugins : <a href="http://www.videohelp.com/download/VirtualdubPluginPack.zip" rel="nofollow"><strong>VideoHelp</strong></a>. And extract them in plugins32 folder.</p>
<h1>Cutting and Trimming Video</h1>
<p><strong>1)</strong> Launch Virtual Dub by clicking <strong>Virtualdub.exe</strong> in the virtual dub folder. Click <strong>File &gt; Open Video File</strong> and open the video file you want to cut. If any errors come while importing just click OK.</p>
<p><img class="aligncenter size-full wp-image-609" title="open_vd" src="http://pcandweb.com/wp-content/uploads/2009/04/open_vd.gif" alt="open_vd" width="373" height="197" /></p>
<p><strong>2)</strong> Now we need to <strong>set starting and ending points.</strong> Scroll through the video scroll bar and stop the the frame you want to start cutting and then go to <strong>Edit &gt; Set Selection Start</strong> <em>(Home)</em>, next scroll to the ending frame of the video you want and select <strong>Edit &gt; Set Selection End</strong> <em>(End)</em></p>
<p><img class="aligncenter size-full wp-image-610" title="selection_vd" src="http://pcandweb.com/wp-content/uploads/2009/04/selection_vd.jpg" alt="selection_vd" width="500" height="668" /></p>
<h1>Exporting The Video Without Re-Encoding</h1>
<p><strong>1) </strong>To export the video without any type or re encoding we need to make audio and video direct stream copy. Click <strong>Video &gt; Direct Stream Copy</strong> and <strong>Audio &gt; Direct Stream Copy</strong>. This will ensure none of the streams are encoded and are directly copied as it is.</p>
<p><strong>2)</strong> Now you just need to click <strong>File &gt; Save As Avi</strong> <em>(F7)</em> and export. It will instantly save it without any type of recompression.</p>
<p>Hope You enjoyed the Tutorial. Thanks!!</p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif?x-id=157d368b-2221-866f-9284-2c997ccdc0c4" alt="" /></div>



	
	
	
					<li>
				<a href="http://pcandweb.com/tipsandtricks/what-are-the-best-things-to-do-with-your-old-pc.html" rel="bookmark">
													
				What Are The Best Things To Do With Your Old PC</a>
			</li>
				
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-a-favicon-3-ways.html" rel="bookmark">
													
				How to Create A Favicon (3 Different Ways)</a>
			</li>
				
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-simple-greenary-layout-wordpress-photoshop.html" rel="bookmark">
													
				How To Create A Simple Greenary Layout For WordPress In Photoshop</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></content:encoded>
			<wfw:commentRss>http://pcandweb.com/tutorials/how-to-cut-and-trim-dvddivxasf-etc-without-re-encoding.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Create A Simple Greenary Layout For WordPress In Photoshop</title>
		<link>http://pcandweb.com/tutorials/how-to-create-simple-greenary-layout-wordpress-photoshop.html</link>
		<comments>http://pcandweb.com/tutorials/how-to-create-simple-greenary-layout-wordpress-photoshop.html#comments</comments>
		<pubDate>Tue, 14 Apr 2009 17:17:26 +0000</pubDate>
		<dc:creator>Subhadeep</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[create]]></category>
		<category><![CDATA[create layout]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[photoshop basic]]></category>
		<category><![CDATA[photoshop layout tutorial]]></category>
		<category><![CDATA[Photoshop Tutorials]]></category>
		<category><![CDATA[templates]]></category>
		<category><![CDATA[Web Layout]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress template]]></category>

		<guid isPermaLink="false">http://pcandweb.com/?p=535</guid>
		<description><![CDATA[First thing first I&#8217;m not a graphic designer but I have a keen interest in graphics and I have done some basic courses too. So I thought why not make a simple wordpress layout in photoshop, and I guess if everybody likes it I&#8217;ll probably code it to make it a working template. This tutorial [...]


	
	
	
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-design-a-grey-blue-blog-design-in-photoshop-greyfuture.html" rel="bookmark">
													
				How To Design A Grey-Blue Blog Design In Photoshop &#8211; GreyFuture</a>
			</li>
				
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-cool-glossy-shiny-web20-heart-photoshop.html" rel="bookmark">
													
				How To Create A Cool Glossy Shiny Web 2.0 Heart in Photoshop</a>
			</li>
				
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-cool-shattered-rainbow-text-effect-photoshop.html" rel="bookmark">
													
				How To Create Cool Shattered Rainbow Text Effect In Photoshop</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></description>
			<content:encoded><![CDATA[<p>First thing first I&#8217;m not a graphic designer but I have a keen interest in graphics and I have done some basic courses too. So I thought why not make a simple wordpress layout in photoshop, and I guess if everybody likes it I&#8217;ll probably code it to make it a working template.</p>
<p>This tutorial is highly recommended for the beginners and learning the basics of photoshop, advanced users may have already understood the process by just seeing it. I&#8217;ll keep the tutorial short and give you full control over the creation. The following picture is what we&#8217;ll try to create.<span id="more-535"></span></p>
<p style="text-align: center;">
<div id="attachment_538" class="wp-caption aligncenter" style="width: 510px"><a href="http://pcandweb.com/wp-content/uploads/2009/04/greenary_big.jpg"><img class="size-full wp-image-538" title="greenary_small" src="http://pcandweb.com/wp-content/uploads/2009/04/greenary_small.jpg" alt="Click For Large Size" width="500" height="499" /></a><p class="wp-caption-text">Click For Large Size</p></div>
<h1>Planning</h1>
<p>First thing is planning. Before you jump into working on a layout it is highly advisable to plan out the basics such as locations of different elements in the template. As you can see in the template, I&#8217;ve positioned the sidebar on left and the content on right. The header has 3 elements the top header the middle header and the lower header containing the static pages. (figure 1)</p>
<p><img class="aligncenter size-full wp-image-541" title="figure1" src="http://pcandweb.com/wp-content/uploads/2009/04/figure1.png" alt="figure1" width="500" height="499" /></p>
<h1>Header</h1>
<p>Create a New Photoshop File of <strong>1000*990px</strong>, please note i have taken 1000 instead of 1024 which is the actual screen resolution because in actual world their will be the scroll bar on the right which will take up approximately 24 px<br />
We&#8217;ll first work on header. <strong>Create 3 rectangles as shown in figure 2</strong> using <em>Rectangle Tool</em> For your benefit I have provided a <strong>download link for the layer styles</strong> I have created and used in the template. Load the layer styles and apply Rectangle 1 style to rectangle 1, rectangle 2 style to rectangle 2 and rectangle 3 style to rectangle 3. Simple. <strong>(Figure 3) </strong></p>
<div id="attachment_543" class="wp-caption aligncenter" style="width: 510px"><strong> </strong><strong><img class="size-full wp-image-543" title="figure2" src="http://pcandweb.com/wp-content/uploads/2009/04/figure2.jpg" alt="Figure 2" width="500" height="382" /></strong><p class="wp-caption-text">Figure 2</p></div>
<div id="attachment_544" class="wp-caption aligncenter" style="width: 510px"><strong> </strong><strong><img class="size-full wp-image-544" title="figure3" src="http://pcandweb.com/wp-content/uploads/2009/04/figure3.jpg" alt="Figure 3" width="500" height="385" /></strong><p class="wp-caption-text">Figure 3</p></div>
<p><strong> </strong><br />
We&#8217;ll now try to add a logo search bar and social networking icons. I have created a style and named it logo type your text in any font (I used <em>Futura Md BT</em>) and <strong>apply logo layer style.</strong> Now draw a rectangle on the upper right edge on rectangle 1 and apply the style named Search. For the social icons I have used the free icons from <em>fasticon</em> which can be found here : <a href="http://www.iconarchive.com/category/application/social-bookmark-icons-by-fasticon.html" rel="nofollow">Icon Archive</a>. I have resized them using transform tool and added them side by side. The search icon inside the search box is from <a href="http://www.famfamfam.com/lab/icons/silk/" rel="nofollow">famfamfam silk icons</a>. Now using Myriad font I wrote a &#8220;Search Site&#8221; inside the box in light grey colour. And also the menu items on rectangle 3 are written using Myriad and spaced accordingly. The colour used is light green (<em>eff5b9</em>) <strong>Figure 4 </strong></p>
<div id="attachment_545" class="wp-caption aligncenter" style="width: 510px"><strong> </strong><strong><img class="size-full wp-image-545" title="figure4" src="http://pcandweb.com/wp-content/uploads/2009/04/figure4.jpg" alt="Figure 4" width="500" height="110" /></strong><p class="wp-caption-text">Figure 4</p></div>
<p><strong> </strong></p>
<h1>Body</h1>
<p>Now we&#8217;ll move on to the sidebar. Draw a <strong>rectangle</strong> using <em>rounded rectangle tool</em> <img class="alignnone size-full wp-image-546" title="rounded_rectangle" src="http://pcandweb.com/wp-content/uploads/2009/04/rounded_rectangle.png" alt="rounded_rectangle" width="27" height="25" /> on left and taking <strong><em>radius 10px</em></strong>. And apply the<strong> style named &#8220;body&#8221;</strong>. Similarly draw a rectangle on right and apply the same style. Figure 5</p>
<p style="text-align: center;">
<div id="attachment_547" class="wp-caption aligncenter" style="width: 510px"><img class="size-full wp-image-547" title="figure5" src="http://pcandweb.com/wp-content/uploads/2009/04/figure5.jpg" alt="Figure 5" width="500" height="407" /><p class="wp-caption-text">Figure 5</p></div>
<p style="text-align: left;">
<p>Now we&#8217;ll tweak the sidebar, draw <strong>2 squares 125*125</strong> px for adv add then in top of sidebar. Give them light grey 1px stroke<strong> (e7ecb8)</strong>. Also write the texts for heading I have used <strong>(436c00)</strong> For subcatagories I have used <strong>(565656)</strong>. And for highlight I have drawn a rectangle and put it below the text, colour <strong>(eff5b9)</strong>. Sidebar is ready, you can further tweak it as per your needs. <strong>Figure 6</strong></p>
<div id="attachment_548" class="wp-caption aligncenter" style="width: 254px"><img class="size-full wp-image-548" title="figure6" src="http://pcandweb.com/wp-content/uploads/2009/04/figure6.jpg" alt="figure6" width="244" height="500" /><p class="wp-caption-text">Figure 6</p></div>
<p>Now the post things is not tough but tricky, 1<sup>st</sup> i <strong>draw a white rectangle with light green border</strong>. Then I wrote the headings with 32pt Myriad font. I drew anather box of light green for the details and wrote the details with deepgreen. Then using light grey colour I typed the summary text. Then using rounded rectangle tool I have drawn a rectangle and put it on back of the white rectangle for the readmore and comment thing, and added the text. Its hard to explain here better <strong>download the PSD and check it</strong>. <strong>Figure 7</strong></p>
<div id="attachment_549" class="wp-caption aligncenter" style="width: 510px"><img class="size-full wp-image-549" title="figure7" src="http://pcandweb.com/wp-content/uploads/2009/04/figure7.jpg" alt="Figure 7" width="500" height="522" /><p class="wp-caption-text">Figure 7</p></div>
<h1>Footer</h1>
<p>Last thing is very easy, you have to draw a rounded rectangle for footer give it a dark green colour and add texts. <strong>Your template is ready !!</strong></p>
<dl id="attachment_538" class="wp-caption aligncenter" style="width: 510px;">
<dt class="wp-caption-dt"><a href="http://pcandweb.com/wp-content/uploads/2009/04/greenary_big.jpg"><img class="size-full wp-image-538" title="greenary_small" src="http://pcandweb.com/wp-content/uploads/2009/04/greenary_small.jpg" alt="Click For Large Size" width="500" height="499" /></a></dt>
</dl>
<h1>Download</h1>
<p><strong>Please download the <a href="http://pcandweb.com/wp-content/uploads/2009/04/greenary.rar">GREENARY.RAR</a> file for the layer styles and complete PSD needed for the template. Hope you enjoyed the basic tutorial. Thanks !!</strong></p>
<p>The sparkling <a href="http://www.hostseeq.com/c/virtual_private_servers.htm" rel="nofollow">vps hosting</a> is going to overlook the traditional <a href="http://www.hostseeq.com/c/dedicated_servers.htm" rel="nofollow">dedicated server</a> <a href="http://www.hostseeq.com" rel="nofollow">web hosting</a>.</p>



	
	
	
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-design-a-grey-blue-blog-design-in-photoshop-greyfuture.html" rel="bookmark">
													
				How To Design A Grey-Blue Blog Design In Photoshop &#8211; GreyFuture</a>
			</li>
				
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-cool-glossy-shiny-web20-heart-photoshop.html" rel="bookmark">
													
				How To Create A Cool Glossy Shiny Web 2.0 Heart in Photoshop</a>
			</li>
				
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-cool-shattered-rainbow-text-effect-photoshop.html" rel="bookmark">
													
				How To Create Cool Shattered Rainbow Text Effect In Photoshop</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></content:encoded>
			<wfw:commentRss>http://pcandweb.com/tutorials/how-to-create-simple-greenary-layout-wordpress-photoshop.html/feed</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>How To Do A Complete Test Of Your Site</title>
		<link>http://pcandweb.com/tutorials/how-to-do-a-complete-test-of-your-site.html</link>
		<comments>http://pcandweb.com/tutorials/how-to-do-a-complete-test-of-your-site.html#comments</comments>
		<pubDate>Mon, 06 Apr 2009 23:10:46 +0000</pubDate>
		<dc:creator>Subhadeep</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Webdevelopment]]></category>
		<category><![CDATA[accessibility]]></category>
		<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Checks]]></category>
		<category><![CDATA[Compatibility]]></category>
		<category><![CDATA[complete]]></category>
		<category><![CDATA[Different Ways]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[standard test]]></category>
		<category><![CDATA[test my site]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[W3c]]></category>

		<guid isPermaLink="false">http://pcandweb.com/?p=292</guid>
		<description><![CDATA[a complete reference on how to test your site completely before launching it for public, all types of website check references available.


	
	
	
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-embed-custom-fonts-on-webpage.html" rel="bookmark">
													
				How To Embed Custom Font&#8217;s On Webpage</a>
			</li>
				
					<li>
				<a href="http://pcandweb.com/resources/5-best-torrent-tracker-script-start-torrent-site.html" rel="bookmark">
													
				5 Best Torrent Tracker Scripts To Start Your Own Torrent Site</a>
			</li>
				
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-a-favicon-3-ways.html" rel="bookmark">
													
				How to Create A Favicon (3 Different Ways)</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></description>
			<content:encoded><![CDATA[<p>Before taking part in any competition we test our abilities, our capabilities, our power. Similarly Web World is also a competition, you just cannot create a site an expect it will be able to handle itself in different circumstances. Take a simple example, you may have hand-coded it using full url&#8217;s in your computer, or by some WYSIWYG editor, maybe you tested the whole thing in Opera, do you expect it to act similarly in all other browsers? Do you know if all your links are valid and not giving 404 error. Even if your do standard W3C compatible coding you may get wrong somewhere and you may need to test its compatibility. So that&#8217;s what this post is for this will teach you different ways you can test your site fully before jumping into the real web and give all your users a similar taste. As a matter of fact my website was not tested and I implemented the theme in hurry and now I&#8217;m suffering, it works badly in IE6.<span id="more-292"></span></p>
<h2>Standard Check</h2>
<p>First thing you should do after you have finished coding you new site is validate it if your markups are XHTML, HTML, SMIL etc (depending of the one you selected) are valid and conform to that standards set by various organisation. For validation of single page you can use <a href="http://validator.w3.org/" rel="nofollow">W3C&#8217;s</a> own validation service. But I guess you are wanting to validate whole of your site in that case head on to <a href="http://www.validator.ca/" rel="nofollow">Validator.ca</a>.</p>
<p>Incase your feeling the options of both the above sites are not enough for you you should try a test at <a href="http://uitest.com/" rel="nofollow">Uitest</a>. It has all the standard&#8230;&#8230;&#8230;..</p>
<p>&#8230;&#8230;.. Wait what happened???? Ok here&#8217;s the thing I have to stop the research right here, cause <a href="http://uitest.com/" rel="nofollow">Uitest</a> has everything I was going to tell you about, <a href="http://uitest.com/en/analysis/#accessibility" rel="nofollow">Accessibility</a>, <a href="http://uitest.com/en/analysis/#general" rel="nofollow">General</a>, <a href="http://uitest.com/en/analysis/#legal" rel="nofollow">Legal</a>, <a href="http://uitest.com/en/analysis/#links" rel="nofollow">Links</a>, <a href="http://uitest.com/en/analysis/#performance" rel="nofollow">Performance</a>, <a href="http://uitest.com/en/analysis/#seo" rel="nofollow">SEO</a>, <a href="http://uitest.com/en/analysis/#validation" rel="nofollow">Validation</a>, <a href="http://uitest.com/en/specials/#browsers" rel="nofollow">Browsers</a>, <a href="http://uitest.com/en/specials/#colors" rel="nofollow">Colors</a>, <a href="http://uitest.com/en/specials/#fonts" rel="nofollow">Fonts</a>, <a href="http://uitest.com/en/specials/#generators" rel="nofollow">Generators</a>, <a href="http://uitest.com/en/specials/#graphics" rel="nofollow">Graphics</a>, <a href="http://uitest.com/en/specials/#network-security" rel="nofollow">Network and Security</a>, <a href="http://uitest.com/en/specials/#optimizers" rel="nofollow">Optimizers</a>, <a href="http://uitest.com/en/specials/#seo" rel="nofollow">SEO</a> &#8230; and loads of other, it has all types of test you need.</p>
<h4>But I have to sum up this article, so mainly you should do 5 basic checks for you site which are absolutely necessary if you don&#8217;t want to suffer (like me)</h4>
<p><strong>1)      Standards Validator (use <a href="http://www.validator.ca/" rel="nofollow">Validator.ca</a> its fast and straight forward)</strong></p>
<p><strong>2)      Browser Test ( Use <a href="http://browsershots.org/" rel="nofollow">Browsershots</a> )</strong></p>
<p><strong>3)      Website Load Test ( Use <a href="http://tools.pingdom.com/fpt/" rel="nofollow">Pingdom</a> )</strong></p>
<p><strong>4)      CSS Validator ( Use <a href="http://jigsaw.w3.org/css-validator/" rel="nofollow">W3C</a> )</strong></p>
<p><strong>5)      Dead Links Validator ( Use <a href="http://validator.w3.org/checklink" rel="nofollow">W3C</a> )</strong></p>
<p>Other Validation&#8217;s which are optional but you can try them depending on the your site audience and content are :</p>
<p><strong>1)      Accessibility Test ( Check At <a href="http://wave.webaim.org/" rel="nofollow">Wave</a>)</strong></p>
<p><strong>2)      Feed Validator (Use <a href="http://validator.w3.org/feed/" rel="nofollow">W3C</a> )</strong></p>
<p><strong>3)      SEO Check ( It&#8217;s a complete subject in itself but you can start at <a href="http://raven-seo-tools.com/" rel="nofollow">Raven</a>)</strong></p>
<p><strong>4)      DNS Check ( Out of topic but wanted you to know, use <a href="http://www.intodns.com/" rel="nofollow">IntoDNS</a> )</strong></p>
<p>There are many many and many other types of checks, which I personally don&#8217;t think you should do, the main thing is it depends on the site, for example if you are building a site for older people you should obviously do accessibility check, colour blind checks, etc. <em>I&#8217;d also recommend all sites to do a Virus check at <a href="http://safeweb.norton.com/" rel="nofollow">Norton Safeweb</a>, to gain your users faith. If you know other specialised service please let me know so I can add it here. Thanks for visiting <img src='http://pcandweb.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </em></p>



	
	
	
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-embed-custom-fonts-on-webpage.html" rel="bookmark">
													
				How To Embed Custom Font&#8217;s On Webpage</a>
			</li>
				
					<li>
				<a href="http://pcandweb.com/resources/5-best-torrent-tracker-script-start-torrent-site.html" rel="bookmark">
													
				5 Best Torrent Tracker Scripts To Start Your Own Torrent Site</a>
			</li>
				
					<li>
				<a href="http://pcandweb.com/tutorials/how-to-create-a-favicon-3-ways.html" rel="bookmark">
													
				How to Create A Favicon (3 Different Ways)</a>
			</li>
				
			
	<div class="clear">&nbsp;</div>
	
]]></content:encoded>
			<wfw:commentRss>http://pcandweb.com/tutorials/how-to-do-a-complete-test-of-your-site.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
