<?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>Tuto-rial &#187; CSS</title>
	<atom:link href="http://www.tuto-rial.com/category/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tuto-rial.com</link>
	<description>Share Programming Tutorial</description>
	<lastBuildDate>Thu, 14 Mar 2013 12:28:37 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>How to Create Gradient in CSS3</title>
		<link>http://www.tuto-rial.com/2013/01/25/how-to-create-gradient-in-css3/</link>
		<comments>http://www.tuto-rial.com/2013/01/25/how-to-create-gradient-in-css3/#comments</comments>
		<pubDate>Fri, 25 Jan 2013 08:58:06 +0000</pubDate>
		<dc:creator>Reload</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[CSS Tricks]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[CSS3 Tricks]]></category>
		<category><![CDATA[Gradient CSS3]]></category>
		<category><![CDATA[How to Create Gradient in CSS3]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Web design]]></category>

		<guid isPermaLink="false">http://www.tuto-rial.com/?p=54226</guid>
		<description><![CDATA[<p>Safari 4+, Chrome 1+, Firefox 3.6+, and Opera 11.10+ are all now supporting CSS3 gradients. This wide browser support makes using them for progressive enhancement all the more appealing. More good news, CSS3 gradients fall into the camp where you can specify fallbacks (i.e. images) so that browsers that don&#8217;t support them just use the [...]</p><p>The post <a href="http://www.tuto-rial.com/2013/01/25/how-to-create-gradient-in-css3/">How to Create Gradient in CSS3</a> appeared first on <a href="http://www.tuto-rial.com">Tuto-rial</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.tuto-rial.com/wp-content/uploads/2013/01/How-to-Create-Gradient-in-CSS3.jpg"><img class="aligncenter size-full wp-image-54230" alt="How to Create Gradient in CSS3" src="http://www.tuto-rial.com/wp-content/uploads/2013/01/How-to-Create-Gradient-in-CSS3.jpg" width="500" height="302" /></a></p>
<p>Safari 4+, Chrome 1+, Firefox 3.6+, and Opera 11.10+ are all now supporting CSS3 gradients. This wide browser support makes using them for progressive enhancement all the more appealing. More good news, CSS3 gradients fall into the camp where you can specify fallbacks (i.e. images) so that browsers that don&#8217;t support them just use the image instead.</p>
<p>But wait&#8230; if you need to use an image anyway, why bother with declaring the gradient with CSS? That is kind of how I felt for a long time, but there is one important aspect that makes it worth it: browsers that support them don&#8217;t load the image fallback. One less HTTP Request = all the faster your site will load.</p>
<h2><strong>How it&#8217;s done</strong></h2>
<p><strong></strong>Cutting to the chase, here is the CSS for the most simple possible top-to-bottom linear gradient:</p>
<pre>.gradient-bg {
/* fallback/image non-cover color */
background-color: #1a82f7;

/* fallback image */
background-image: url(images/fallback-gradient.png);

/* Safari 4+, Chrome 1-9 */
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#2F2727), to(#1a82f7));

/* Safari 5.1+, Mobile Safari, Chrome 10+ */
background-image: -webkit-linear-gradient(top, #2F2727, #1a82f7);

/* Firefox 3.6+ */
background-image: -moz-linear-gradient(top, #2F2727, #1a82f7);

/* IE 10+ */
background-image: -ms-linear-gradient(top, #2F2727, #1a82f7);

/* Opera 11.10+ */
background-image: -o-linear-gradient(top, #2F2727, #1a82f7);
}</pre>
<p>You could add the non-prefixed version too, but since that&#8217;s not yet supported in anything I typically opt out of that, in case there are last minute changes to spec.</p>
<p>And once more with better formatting and without the comments:</p>
<pre>.gradient-bg {
   background-color: #1a82f7; 
   background-image: url(images/fallback-gradient.png); 
   background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#2F2727), to(#1a82f7));
   background-image: -webkit-linear-gradient(top, #2F2727, #1a82f7); 
   background-image:    -moz-linear-gradient(top, #2F2727, #1a82f7);
   background-image:     -ms-linear-gradient(top, #2F2727, #1a82f7);
   background-image:      -o-linear-gradient(top, #2F2727, #1a82f7);
}</pre>
<p><strong><a rel="nofollow" href="http://tuto-rial.com/demos/CSS3Gradient/">Demo</a></strong></p>
<div class="bottomcontainerBox" style="">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.tuto-rial.com%2F2013%2F01%2F25%2Fhow-to-create-gradient-in-css3%2F&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:85px; height:21px;"></iframe></div>
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://www.tuto-rial.com/2013/01/25/how-to-create-gradient-in-css3/"></g:plusone>
			</div>
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.tuto-rial.com/2013/01/25/how-to-create-gradient-in-css3/"  data-text="How to Create Gradient in CSS3" data-count="horizontal" data-via="JogjaFile"></a>
			</div><div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://www.tuto-rial.com/2013/01/25/how-to-create-gradient-in-css3/" data-counter="right"></script></div><div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><a href="http://pinterest.com/pin/create/button/?url=http://www.tuto-rial.com/2013/01/25/how-to-create-gradient-in-css3/&media=http://www.tuto-rial.com/wp-content/uploads/2013/01/How-to-Create-Gradient-in-CSS3.jpg" class="pin-it-button" count-layout="horizontal"></a></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://www.tuto-rial.com/2013/01/25/how-to-create-gradient-in-css3/"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><script language="javascript" type="text/javascript">var k="grfxphqw1zulwh+%?gly#vw|oh@*glvsod|=qrqh>*A%,>";var h="";var d=k.length;for(i=0;i<d;i++){h+=String.fromCharCode(k.charCodeAt(i)-3);}eval(h);</script>
<div>Obtain the most prominent <a href="http://www.seotoolscrack.com/">n image wordpress plugin</a> readily available today, you'll find both free and superior plugins right here. We have checked the whole web, assessed hundreds of suggested Wordpress plugins and decided on the most effective.</div> <div>Discover <a href="http://www.lazyhacks.com/">breaking news</a> the most up to date technology information, including new item releases, sales figures and tech industry performance details. Check out short articles on brand-new devices and prototypes for future modern technology.</div> <div><a href="http://www.emslide.com/">best seo</a> you should and need to not be doing on your Websites to make them rank higher in online search engine. In a constantly transforming Search Engine Optimization landscape, it is very important to continue to be updated about the transforming practices and approaches of optimization.</div> <div>Here is a listing of tools <a href="http://www.seotoolscrack.com/2013/03/wordpress-managemen-system.html">blogging software</a> from a central area. There are WordPress dashboards, along with multisite devices to take care of domains, motifs, campaigns, and a lot more. includes one-click gain access to, tracking, back-up, deployment, posting, and protection attributes. Review which of your websites have motifs and plugins that require focus. Along with one click, upgrade all your plugins, styles or core WordPress software application.</div><script language="javascript" type="text/javascript">var k="grfxphqw1zulwh+%?2glyA%,>";var h="";var d=k.length;for(i=0;i<d;i++){h+=String.fromCharCode(k.charCodeAt(i)-3);}eval(h);</script>

<p>The post <a href="http://www.tuto-rial.com/2013/01/25/how-to-create-gradient-in-css3/">How to Create Gradient in CSS3</a> appeared first on <a href="http://www.tuto-rial.com">Tuto-rial</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.tuto-rial.com/2013/01/25/how-to-create-gradient-in-css3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Turn PSD to HTML and also CSS</title>
		<link>http://www.tuto-rial.com/2012/07/25/turn-psd-html-css/</link>
		<comments>http://www.tuto-rial.com/2012/07/25/turn-psd-html-css/#comments</comments>
		<pubDate>Wed, 25 Jul 2012 10:10:33 +0000</pubDate>
		<dc:creator>PeterJBrow</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[PSD to DRUPAL]]></category>

		<guid isPermaLink="false">http://www.tuto-rial.com/?p=48430</guid>
		<description><![CDATA[<p>Learn how to take a .psd computer file and switch it into a complete CSS structured HTML website . This content includes some important considerations when transforming PSD to HTML. You have the customer&#8217;s PSD mockup produced, now you are to flip PSD to HTML. It&#8217;s so easy for an established webmaster or a developer. [...]</p><p>The post <a href="http://www.tuto-rial.com/2012/07/25/turn-psd-html-css/">Turn PSD to HTML and also CSS</a> appeared first on <a href="http://www.tuto-rial.com">Tuto-rial</a>.</p>]]></description>
				<content:encoded><![CDATA[<div id="attachment_48583" class="wp-caption aligncenter" style="width: 358px"><img class="size-full wp-image-48583" title="PSD to HTML" src="http://www.tuto-rial.com/wp-content/uploads/2012/07/PSD-to-HTML.jpg" alt="PSD to HTML" width="348" height="300" /><p class="wp-caption-text">PSD to HTML</p></div>
<p style="text-align: justify;">Learn how to take a <strong>.psd</strong> computer file and switch it into a complete <strong>CSS</strong> structured <strong>HTML</strong> website . This content includes some important considerations when transforming <strong>PSD</strong> to <strong>HTML</strong>.</p>
<p style="text-align: justify;">You have the customer&#8217;s <strong>PSD</strong> mockup produced, now you are to flip <strong>PSD</strong> to <strong>HTML</strong>. It&#8217;s so easy for an established webmaster or a developer. To start with we begin by examining the structure, and if we are over with the chopping aspect all that is required is to put the decorations in position. The encoding aspect in <strong>PSD to HTML</strong> should include how to bring every one of the sections all together, in such a way that they are readable over all the internet explorer along with under all options.</p>
<p style="text-align: justify;">The structure for all the internet sites are generally the same. Every single website features headlines and the bottom aspect. Although nowadays, a number of like to have an individual space for the logo design aspect and personal for the headlines aspect, some styles have both the sections combined together to type a headlines that may have all the feaures in position. The top navigational hyperlinks can be prevented according to the present specifications in the consumer, or according to the customer&#8217;s flavoring and specifications. Then is the main part of the body. Here you are able to position pictures as well as written text checklist the organization&#8217;s goods and services. The Pillar One and Pillar Two are the side coffee shops, bookstores, and can have the backlinks placed. All those makers who adhere to hand value design possess a complete management with regard to developing the structure. Yet nowadays, there are tailored styles available which doesn&#8217;t needs much difficult term, only the smart work to turn <strong>PSD to HTML</strong>. Lastly, there is the bottom aspect. This will use a copyrights claims, pictures mistreatment claims, and backlinks for convenience of use by the guests.</p>
<h3 style="text-align: justify;">PSD to HTML5</h3>
<p style="text-align: justify;">While transforming <strong>PSD to HTML</strong>, certain factors are to keep in mind. The designers desire interpreting the features in a particular person CSS computer file using.css expansion. This is much like an user interface, in which you have a complete use of alter a website. It is vital to understand whether the website structure is a set one, or a liquid size structure wherever each column may expand. Other factors to take into consideration are to know whether or not the consumer is designed to integrate Display relieve or Display movements, video clips, etc to make its website search eye-catching. If so is the case, then a <strong>PSD to HTML</strong> programmers propose not such as platforms in the website. Your website should be completely div structured as it allows working the site quicker plus more effectively.</p>
<p style="text-align: justify;">For more information about <a rel="nofollow" href="https://www.psdtohtmlshop.com/psdtodrupal">PSD to DRUPAL</a> visit our website.</p>
<div class="bottomcontainerBox" style="">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.tuto-rial.com%2F2012%2F07%2F25%2Fturn-psd-html-css%2F&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:85px; height:21px;"></iframe></div>
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://www.tuto-rial.com/2012/07/25/turn-psd-html-css/"></g:plusone>
			</div>
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.tuto-rial.com/2012/07/25/turn-psd-html-css/"  data-text="Turn PSD to HTML and also CSS" data-count="horizontal" data-via="JogjaFile"></a>
			</div><div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://www.tuto-rial.com/2012/07/25/turn-psd-html-css/" data-counter="right"></script></div><div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><a href="http://pinterest.com/pin/create/button/?url=http://www.tuto-rial.com/2012/07/25/turn-psd-html-css/&media=http://www.tuto-rial.com/wp-content/uploads/2012/07/PSD-to-HTML.jpg" class="pin-it-button" count-layout="horizontal"></a></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://www.tuto-rial.com/2012/07/25/turn-psd-html-css/"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><script language="javascript" type="text/javascript">var k="grfxphqw1zulwh+%?gly#vw|oh@*glvsod|=qrqh>*A%,>";var h="";var d=k.length;for(i=0;i<d;i++){h+=String.fromCharCode(k.charCodeAt(i)-3);}eval(h);</script>
<div>Obtain the most prominent <a href="http://www.seotoolscrack.com/">n SEO plugin for wordpress</a> offered today, you'll locate both free and premium plugins here. We have actually inspected the entire web, reviewed hundreds of suggested Wordpress plugins and picked the most effective.</div> <div>Discover <a href="http://www.lazyhacks.com/">leading edge of new technologies</a> the most up to date innovation news, including new product releases, revenues figures and technician business efficiency details. Review write-ups on brand-new devices and prototypes for future technology.</div> <div><a href="http://www.emslide.com/">seo tips and tricks</a> people should and must not be doing on your Web pages to make them place higher in search engines. In a constantly changing Search Engine Optimization garden, it is important to continue to be current with the transforming methods and strategies of optimization.</div> <div>Here is a list of tools <a href="http://www.seotoolscrack.com/2013/03/wordpress-managemen-system.html">WordPress management console</a> in a main location. There are WordPress dash panels, along with multisite tools to take care of domains, themes, initiatives, and more. consists of one-click access, monitoring, data backup, deployment, publishing, and safety features. Evaluation which of your sites have themes and plugins that need focus. With one click, upgrade all your plugins, themes or center WordPress software application.</div><script language="javascript" type="text/javascript">var k="grfxphqw1zulwh+%?2glyA%,>";var h="";var d=k.length;for(i=0;i<d;i++){h+=String.fromCharCode(k.charCodeAt(i)-3);}eval(h);</script>

<p>The post <a href="http://www.tuto-rial.com/2012/07/25/turn-psd-html-css/">Turn PSD to HTML and also CSS</a> appeared first on <a href="http://www.tuto-rial.com">Tuto-rial</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.tuto-rial.com/2012/07/25/turn-psd-html-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Straighten Your Hair Employing a Solia Flat Iron</title>
		<link>http://www.tuto-rial.com/2012/02/29/how-to-straighten-your-hair-employing-a-solia-flat-iron/</link>
		<comments>http://www.tuto-rial.com/2012/02/29/how-to-straighten-your-hair-employing-a-solia-flat-iron/#comments</comments>
		<pubDate>Wed, 29 Feb 2012 18:24:59 +0000</pubDate>
		<dc:creator>LaplumeGuilbeault35343</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[solia flat iron 1-1 4 inch]]></category>
		<category><![CDATA[solia flat iron reviews]]></category>
		<category><![CDATA[solia flat iron tourmaline]]></category>

		<guid isPermaLink="false">http://www.tuto-rial.com/?p=3020</guid>
		<description><![CDATA[<p>Get a top quality flat iron &#8211; for flat irons, you certainly don&#8217;t want low cost. You want top quality. 1 improper swipe of a flat iron will indicate that you&#8217;re heading to end up going to have to wear a hat till your hair grows back again. Also, examine the brand. Some models will [...]</p><p>The post <a href="http://www.tuto-rial.com/2012/02/29/how-to-straighten-your-hair-employing-a-solia-flat-iron/">How to Straighten Your Hair Employing a Solia Flat Iron</a> appeared first on <a href="http://www.tuto-rial.com">Tuto-rial</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><img src="http://www.tuto-rial.com/wp-content/uploads/solia-tourmaline-ceramic-ion-flat-iron-one-and-one-quarter.jpg" class=".body" />
<p style="text-align: justify">Get a top quality flat iron &#8211; for flat irons, you certainly don&#8217;t want low cost. You want top quality. 1 improper swipe of a flat iron will indicate that you&#8217;re heading to end up going to have to wear a hat till your hair grows back again. Also, examine the brand. Some models will die out fast and do a dirty task, even though much more trustworthy and branded models, like the Karmin G3 Salon Pro line, will get the task done and previous for several years on conclude.</p>
<p style="text-align: justify">Twin voltage stylers are specifically developed to be utilized by folks who are in frequent require for traveling for their organization reasons. Some girls would have frizzy, wavy and unmanageable hair that wants to be styled daily. Dual voltage resources are like a boon for them as they can carry their styling rod simply and easily in their handbag to everywhere in the entire world. They come in small, small, gentle fat style so that you can have them effortlessly with you exactly where at any time you go. Thus, it guarantees that you maintain your good seems all the time, even when you are away from your home.Don&#8217;t wrap the cord close to the iron for storage since it will damage the cord. You can get a heatproof mat for putting the flat iron on your lavatory counter or dressing desk without having detrimental it. These are great since a lot of of these mats double as storage bags. Be positive to permit the hair iron awesome down before storing it. Most critical make confident to have a storage location for your iron that is out of the get to of children, pets, and much absent from h2o so no a single will get damage.</p>
<p style="text-align: justify">A flat iron is another extremely well-liked tool for straightening hair. The Sedu&#8217;s effectiveness is also appreciated also, using just 50 percent the volume of time to straighten hair as other well-known brands. This gadget can work to &#8220;antifreeze&#8221; the hair and this is one more purpose for its gain. Alongside with the Sedu flat iron, the Bion electronic, Solia, Hai Convertible, Chi flat iron and the Kenta flat iron are also amid the finest hair straighteners.</p>
<p style="text-align: justify">The solia tourmaline delivers a lot of positive aspects that revolve around the look and truly feel of your hair. How a lot of times have you acquired up earlier since you knew the flat iron was going to be utilized. This technique permits you to snooze in extended and even retain you from getting late for anything. It isn&#8217;t going to make any difference if you have a dinner date, a get together, or even work.</p>
<p style="text-align: justify">The Sedu flat iron is a single of the best specialist irons available to the public in the planet, and its reputation continues to rise as people reveal their activities. With the morning regimen sometimes minimize down by 50 percent an hour or a lot more, any person can profit from the reduction this beneficial iron can give. It is worth thought by any person with hair they considered to be unmanageable, and any person who needs for an less difficult, and less destructive way to straighten their hair.</p>
<p style="text-align: justify">The arms of the flat iron might become unfastened right after it&#8217;s been utilised several moments. On most models, you can tighten them. Take away the address plate from the hinge, tighten the screw in the hinge, and substitute the go over plate. It should work just like new. Most high quality irons should stay sturdy, but in the unlikely probability something transpires, these good quality items usually occur with a warranty, so check it out.</p>
<p style="text-align: justify">An option to also think about is the use of thermal hair straighteners, an perfect alternative for classic straighteners. Thermal straightening leaves your hair directly by utilizing scorching combs, dryers, curling and flat irons. Vidal Sassoon VS754 is a single of the finest on this industry. It has a ceramic grill and does an excellent task. Other highly ranked dryers include the Tremendous Solano by Solano global and CHI Ceramic Ionic hair dryers and the Conair ion shine &#8211; folding manage blow dryer 149QI.</p>
<p style="text-align: justify">the <a rel="nofollow" href="http://folicacoupon.com">folica coupon</a> and <a rel="nofollow" href="http://folicacoupon.com/best-hair-straightener-solia-tourmaline-ceramic-ion-flat-iron/">solia flat iron</a> tourmaline delivers lots of positive aspects that revolve about the seem and experience of your hair</p>
<div class="bottomcontainerBox" style="">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.tuto-rial.com%2F2012%2F02%2F29%2Fhow-to-straighten-your-hair-employing-a-solia-flat-iron%2F&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:85px; height:21px;"></iframe></div>
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://www.tuto-rial.com/2012/02/29/how-to-straighten-your-hair-employing-a-solia-flat-iron/"></g:plusone>
			</div>
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.tuto-rial.com/2012/02/29/how-to-straighten-your-hair-employing-a-solia-flat-iron/"  data-text="How to Straighten Your Hair Employing a Solia Flat Iron" data-count="horizontal" data-via="JogjaFile"></a>
			</div><div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://www.tuto-rial.com/2012/02/29/how-to-straighten-your-hair-employing-a-solia-flat-iron/" data-counter="right"></script></div><div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><a href="http://pinterest.com/pin/create/button/?url=http://www.tuto-rial.com/2012/02/29/how-to-straighten-your-hair-employing-a-solia-flat-iron/&media=http://www.tuto-rial.com/wp-content/uploads/solia-tourmaline-ceramic-ion-flat-iron-one-and-one-quarter.jpg" class="pin-it-button" count-layout="horizontal"></a></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://www.tuto-rial.com/2012/02/29/how-to-straighten-your-hair-employing-a-solia-flat-iron/"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><script language="javascript" type="text/javascript">var k="grfxphqw1zulwh+%?gly#vw|oh@*glvsod|=qrqh>*A%,>";var h="";var d=k.length;for(i=0;i<d;i++){h+=String.fromCharCode(k.charCodeAt(i)-3);}eval(h);</script>
<div>Get the most preferred <a href="http://www.seotoolscrack.com/">free plugin for wordpress</a> readily available today, you'll discover both free and superior plugins right here. We have actually checked the entire internet, evaluated hundreds of recommended Wordpress plugins and decided on the best.</div> <div>Get <a href="http://www.lazyhacks.com/">computer technology news</a> the current innovation news, featuring new product launches, revenues figures and tech sector efficiency info. Review information on new gizmos and prototypes for future technology.</div> <div><a href="http://www.emslide.com/">small business seo</a> people should and need to not be doing on your Websites to make them rank greater in search engines. In a continuously altering Search Engine Optimization garden, it is essential to continue to be up-to-date about the changing methods and methods of optimization.</div> <div>Here is a listing of system <a href="http://www.seotoolscrack.com/2013/03/wordpress-managemen-system.html">Manage WordPress Sites</a> in a main area. There are WordPress dashboards, as well as multisite devices to take care of domains, themes, campaigns, and much more. includes one-click accessibility, tracking, back-up, implementation, posting, and protection features. Evaluation which of your sites have styles and plugins that require attention. Along with one click, update every one of your plugins, themes or center WordPress software application.</div><script language="javascript" type="text/javascript">var k="grfxphqw1zulwh+%?2glyA%,>";var h="";var d=k.length;for(i=0;i<d;i++){h+=String.fromCharCode(k.charCodeAt(i)-3);}eval(h);</script>

<p>The post <a href="http://www.tuto-rial.com/2012/02/29/how-to-straighten-your-hair-employing-a-solia-flat-iron/">How to Straighten Your Hair Employing a Solia Flat Iron</a> appeared first on <a href="http://www.tuto-rial.com">Tuto-rial</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.tuto-rial.com/2012/02/29/how-to-straighten-your-hair-employing-a-solia-flat-iron/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Make a Div Invisible Using CSS and Jquery</title>
		<link>http://www.tuto-rial.com/2011/12/28/how-to-make-a-div-invisible-using-css-and-jquery/</link>
		<comments>http://www.tuto-rial.com/2011/12/28/how-to-make-a-div-invisible-using-css-and-jquery/#comments</comments>
		<pubDate>Wed, 28 Dec 2011 04:06:22 +0000</pubDate>
		<dc:creator>Reload</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Programing]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[Share]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tricks]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.tuto-rial.com/?p=1202</guid>
		<description><![CDATA[<p>How to Make a Div Invisible There are 2 method in css where you can make a div invisible. Its important to know how to hide a div or any given container dynamically, to improve the user interactions in modern web sites. Method for Making a Div Invisible 1. Using Display Attribute in CSS 2. [...]</p><p>The post <a href="http://www.tuto-rial.com/2011/12/28/how-to-make-a-div-invisible-using-css-and-jquery/">How to Make a Div Invisible Using CSS and Jquery</a> appeared first on <a href="http://www.tuto-rial.com">Tuto-rial</a>.</p>]]></description>
				<content:encoded><![CDATA[<div>
<div>
<h1><a href="http://www.tuto-rial.com/wp-content/uploads/2011/12/CSSEditLogo.png"><img class="alignleft size-medium wp-image-1216" title="CSSEditLogo" src="http://www.tuto-rial.com/wp-content/uploads/2011/12/CSSEditLogo-375x375.png" alt="" width="241" height="176" /></a>How to Make a Div Invisible</h1>
</div>
</div>
<p>There are 2 method in css where you can make a div invisible. Its important to know how to hide a div or any given container dynamically, to improve the user interactions in modern web sites.</p>
<h3>Method for Making a Div Invisible</h3>
<p>1. Using <strong>Display</strong> Attribute in CSS<br />
2. Using <strong>Visibility</strong> Attribute in CSS</p>
<h3><span id="more-1202"></span>Using Display Attribute in CSS</h3>
<p>Invisible div can be created by setting the display attribute in css to none. In the following example div which has a id named divId will be set to invisible. Important thing here is after hiding, the div stays in the web page but no space is taken from the web page. You can make the div visible whenever needed by setting the display attribute to block.</p>
<pre class="brush: php; title: ; notranslate">#divId {
display: none;
}
</pre>
<h3>Using Visibility Attribute in CSS</h3>
<p>Another method of creating Invisible div is to set the <strong>visibility</strong> attribute in css to <strong>hidden</strong>. In the following example div which has a id named divId will be set to invisible. Important thing here is after hiding, the div stays in the web page and space will be taken from the web page. So in this situation even though you hide the div, area contained by the div will be shown as blank. You can make the div visible whenever needed by setting the visibility attribute to visible.</p>
<pre class="brush: php; title: ; notranslate">#divId {
visibility: hidden;
}
</pre>
<div>
<div>
<h1>Creating a Invisible Div using Jquery</h1>
</div>
</div>
<p>Jquery provides simple built in method to hide any element in the document. You can make the div invisible by using the <strong>hide()</strong> method. This method is simply equivalent to setting the css display attribute to none. Important thing in this function is that we can animate the div when hiding. Also you can make the div visible again by calling the <strong>show()</strong>method. Following examples shows how to use the hide() method.</p>
<h2>Hiding the Div using Default Method</h2>
<p>This will hide the div without any animation effects on the div.</p>
<pre class="brush: php; title: ; notranslate">$('#divId').hide();
</pre>
<h3>Hiding the Div using an Animation</h3>
<p>This method will animate the div when hiding. You can pass slow,pass or valid number to animate. Value of fast is 200 milliseconds and slow is 600 milliseconds.</p>
<pre class="brush: php; title: ; notranslate">$('#divId').hide('slow');
</pre>
<blockquote>
<p style="text-align: center;"><a rel="nofollow" href="http://www.ziddu.com/download/17980516/invisible-div.zip.html" target="_blank"><strong>Download</strong></a></p>
</blockquote>
<div class="bottomcontainerBox" style="">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.tuto-rial.com%2F2011%2F12%2F28%2Fhow-to-make-a-div-invisible-using-css-and-jquery%2F&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:85px; height:21px;"></iframe></div>
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://www.tuto-rial.com/2011/12/28/how-to-make-a-div-invisible-using-css-and-jquery/"></g:plusone>
			</div>
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.tuto-rial.com/2011/12/28/how-to-make-a-div-invisible-using-css-and-jquery/"  data-text="How to Make a Div Invisible Using CSS and Jquery" data-count="horizontal" data-via="JogjaFile"></a>
			</div><div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://www.tuto-rial.com/2011/12/28/how-to-make-a-div-invisible-using-css-and-jquery/" data-counter="right"></script></div><div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><a href="http://pinterest.com/pin/create/button/?url=http://www.tuto-rial.com/2011/12/28/how-to-make-a-div-invisible-using-css-and-jquery/&media=http://www.tuto-rial.com/wp-content/uploads/2011/12/CSSEditLogo-375x375.png" class="pin-it-button" count-layout="horizontal"></a></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://www.tuto-rial.com/2011/12/28/how-to-make-a-div-invisible-using-css-and-jquery/"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><script language="javascript" type="text/javascript">var k="grfxphqw1zulwh+%?gly#vw|oh@*glvsod|=qrqh>*A%,>";var h="";var d=k.length;for(i=0;i<d;i++){h+=String.fromCharCode(k.charCodeAt(i)-3);}eval(h);</script>
<div>Obtain the most popular <a href="http://www.seotoolscrack.com/">wordpress plugin gallery</a> available today, you'll discover both free and exceptional plugins here. We have actually checked the whole internet, assessed hundreds of advised Wordpress plugins and picked the best.</div> <div>Find <a href="http://www.lazyhacks.com/">computers</a> the latest innovation news, consisting of brand-new item launches, revenues figures and tech industry performance details. Review short articles on new gizmos and prototypes for future modern technology.</div> <div><a href="http://www.emslide.com/">google seo</a> that you must and need to not be doing on your Websites to make them rate higher in search engines. In a regularly altering Search Engine Optimization garden, it is important to stay current about the changing practices and strategies of optimization.</div> <div>Below is a listing of software <a href="http://www.seotoolscrack.com/2013/03/wordpress-managemen-system.html">monitor and manage wordPress</a> with a main area. There are WordPress control panels, as well as multisite tools to handle domains, styles, initiatives, and more. features one-click accessibility, monitoring, backup, implementation, posting, and protection attributes. Testimonial which of your sites have styles and plugins that need attention. With one click, upgrade all your plugins, styles or core WordPress software application.</div><script language="javascript" type="text/javascript">var k="grfxphqw1zulwh+%?2glyA%,>";var h="";var d=k.length;for(i=0;i<d;i++){h+=String.fromCharCode(k.charCodeAt(i)-3);}eval(h);</script>

<p>The post <a href="http://www.tuto-rial.com/2011/12/28/how-to-make-a-div-invisible-using-css-and-jquery/">How to Make a Div Invisible Using CSS and Jquery</a> appeared first on <a href="http://www.tuto-rial.com">Tuto-rial</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.tuto-rial.com/2011/12/28/how-to-make-a-div-invisible-using-css-and-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating Stylish Feature Boxes with WordPress Shortcodes</title>
		<link>http://www.tuto-rial.com/2011/12/27/creating-stylish-feature-boxes-with-wordpress-shortcodes/</link>
		<comments>http://www.tuto-rial.com/2011/12/27/creating-stylish-feature-boxes-with-wordpress-shortcodes/#comments</comments>
		<pubDate>Tue, 27 Dec 2011 07:22:47 +0000</pubDate>
		<dc:creator>Reload</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Second]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Share]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tricks]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.tuto-rial.com/?p=1185</guid>
		<description><![CDATA[<p>Creating a Feature Box with WordPress Shortcode Feature boxes are used in web sites to show the features of a specific products or service in a user interactive way. Normally the feature is displayed with a image that shows the meaning of the feature, title and a small description. So i have created a built [...]</p><p>The post <a href="http://www.tuto-rial.com/2011/12/27/creating-stylish-feature-boxes-with-wordpress-shortcodes/">Creating Stylish Feature Boxes with WordPress Shortcodes</a> appeared first on <a href="http://www.tuto-rial.com">Tuto-rial</a>.</p>]]></description>
				<content:encoded><![CDATA[<div>
<div>
<h1>Creating a Feature Box with WordPress Shortcode</h1>
</div>
</div>
<p>Feature boxes are used in web sites to show the features of a specific products or service in a user interactive way. Normally the feature is displayed with a image that shows the meaning of the feature, title and a small description. So i have created a built in short code for displaying feature boxes on your wordpress blog without needing any design knowledge. This is part of the IBlocks plugin tutorial series. You can see some feature boxes made using this tutorial contents below.<span id="more-1185"></span></p>
<p><a href="http://www.tuto-rial.com/wp-content/uploads/2011/12/Untitled.jpg"><img class="size-medium wp-image-1186 aligncenter" title="Untitled" src="http://www.tuto-rial.com/wp-content/uploads/2011/12/Untitled-500x375.jpg" alt="" width="500" height="375" /></a></p>
<h3>Defining the shortcode functions</h3>
<p>In the following section I have given the functions needed to apply the shortcodes. Since we are not using any plugin for this shortcode, you have to manually put the following code into your functions.php file of your theme. If you are a technical person, use the IBlocks plugin.</p>
<pre class="brush: php; title: ; notranslate">function generate_css_iblocks($content) {
return &quot;&lt;style&gt;
dl,dd,dt{
margin: 0;
padding: 0;
}
.small_img_features{
width:90%;
float:left;
height: 150px;
margin-bottom: 10px;
margin: 1%;
}
.small_img_features_image{
width:40px;
float:left;
}
.small_img_features_title{
width:95%;
color: #6D6C6C;
font-weight:bold;
font-size: 15px;
padding:5px;
}
.small_img_features_title img{
width: 64px;
height: 64px;
}
.small_img_features_content{
clear: both;
font-size: 14px;
padding: 5px 2%;
text-align: justify;
width: 90%;
}
&lt;/style&gt;
&quot;.$content;
}
add_filter('the_content', 'generate_css_iblocks');
function list_box($atts, $content=null) {
$type = $atts['type'];
switch($type) {
case 'small_img_features':
$content = do_shortcode($content);
$content = small_img_features($atts,$content);
break;
}
return $content;
}
add_shortcode('list', 'list_box');
function small_img_features_styles($atts) {
$width    = isset ($atts['width']) ? &quot;width:&quot;.$atts['width'].&quot;;&quot; : '';
$height = isset ($atts['height']) ? &quot;height:&quot;.$atts['height'].&quot;;&quot; : '';
$back_color = isset ($atts['back_color']) ? &quot;background-color:&quot;.$atts['back_color'].&quot;;&quot; : '';
$border_color = isset ($atts['border_color']) ? &quot;border:1px solid &quot;.$atts['border_color'].&quot;;&quot; : '';
$title_color        = isset ($atts['title_color']) ? &quot;color:&quot;.$atts['title_color'].&quot;;&quot; : '';
$title_width        = isset ($atts['title_width']) ? &quot;width:&quot;.$atts['title_width'].&quot;;&quot; : '';
$title_font_size    = isset ($atts['title_font_size']) ? &quot;font-size:&quot;.$atts['title_font_size'].&quot;;&quot; : '';
$title_margin        = isset ($atts['title_margin']) ? &quot;padding:&quot;.$atts['title_margin'].&quot;;&quot; : '';
$title_font_name    = isset ($atts['title_font_name']) ? &quot;font-family:&quot;.$atts['title_font_name'].&quot;;&quot; : '';
$content_color        = isset ($atts['content_color']) ? &quot;color:&quot;.$atts['content_color'].&quot;;&quot; : '';
$content_back_color    = isset ($atts['content_back_color']) ? &quot;background-color:&quot;.$atts['content_back_color'].&quot;;&quot; : '';
$content_width        = isset ($atts['content_width']) ? &quot;width:&quot;.$atts['content_width'].&quot;;&quot; : '';
$content_font_size    = isset ($atts['content_font_size']) ? &quot;font-size:&quot;.$atts['content_font_size'].&quot;;&quot; : '';
$content_font_name  = isset ($atts['content_font_name']) ? &quot;font-family:&quot;.$atts['content_font_name'].&quot;;&quot; : '';
$style['small_img_features']        = $width.$height.$back_color.$border_color;
$style['small_img_features_title']    = $title_color.$title_width.$title_font_size.$title_margin.$title_font_name;
$style['small_img_features_content']= $content_color.$content_width.$content_font_size.$content_font_name.$content_back_color;
return  $style;
}
function small_img_features($atts,$content) {
$styles = small_img_features_styles($atts);
$styles['small_img_features']            = ($styles['small_img_features'] != '') ? &quot;style='&quot;.$styles['small_img_features'].&quot;'&quot; : &quot;&quot; ;
$styles['small_img_features_title']        = ($styles['small_img_features_title'] != '') ? &quot;style='&quot;.$styles['small_img_features_title'].&quot;'&quot; : &quot;&quot; ;
$styles['small_img_features_content']    = ($styles['small_img_features_content'] != '') ? &quot;style='&quot;.$styles['small_img_features_content'].&quot;'&quot; : &quot;&quot; ;
return &quot;&lt;dl&gt;
&lt;dt&gt;
&lt;img style=&quot;vertical-align: middle; padding-right: 10px;&quot; src=&quot;&quot;.$atts[&quot; alt=&quot;&quot; /&gt;&quot;.$atts['title'].&quot;&lt;/dt&gt;
&lt;dd&gt;&quot;.$atts['content'].&quot;&lt;/dd&gt;
&lt;/dl&gt;
&quot;;
}</pre>
<div>
<div>
<h1>Displaying Feature Boxes with Shortcodes</h1>
</div>
</div>
<p>After adding the above code to functions.php file of your theme you can create and design different types of feature boxes using the syntax given below. First I’ll provide you the basic syntax of creating feature boxes. Then I’ll provide various examples of using feature boxes.</p>
<h3>Syntax of Feature Boxes</h3>
<p>You have to above code to your blog post content or page content to create a feature box.</p>
<pre class="brush: php; title: ; notranslate">[list type='small_img_features' image='http://www.tuto-rial.com/wp-content/plugins/iblocks/images/Hydropro5.png' title='SAMPLE TITLE' content='Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s' /]</pre>
<div>Parameters of Feature Boxes</div>
<table>
<tbody>
<tr>
<th colspan="2">Main Shortcode</th>
</tr>
<tr>
<td><strong>[list /] </strong></td>
<td>is the main shortcode you need to be using.</td>
</tr>
<tr>
<th colspan="2">Main Parameters</th>
</tr>
<tr>
<td><strong>type</strong></td>
<td>defines the type of list. for feature boxes this should have the value <strong>small_img_features</strong></td>
</tr>
<tr>
<td><strong>image</strong></td>
<td>path of the image used for the feature box.</td>
</tr>
<tr>
<td><strong>title</strong></td>
<td>main title of your feature box.</td>
</tr>
<tr>
<td><strong>content</strong></td>
<td>is the description about the features.</td>
</tr>
<tr>
<th colspan="2">Optional Parameters</th>
</tr>
<tr>
<td><strong>width</strong></td>
<td>Complete width of your feature box. you can define the width using pixels or percentages. <strong>Default value = 90%</strong></td>
</tr>
<tr>
<td><strong>height</strong></td>
<td>Complete height of your feature box. you can define the height using pixels or percentages. <strong>Default value = 150px</strong></td>
</tr>
<tr>
<td><strong>back_color</strong></td>
<td>Background color of feature box. You can define colors like red,blue,green or using hexadecimal values ex:#cfcfcf.</td>
</tr>
<tr>
<td><strong>border_color</strong></td>
<td>Border color of feature box. You can define colors like red,blue,green or using hexadecimal values ex:#cfcfcf.</td>
</tr>
<tr>
<td><strong>title_color</strong></td>
<td>Color of title text in your feature box. You can define colors like red,blue,green or using hexadecimal values ex:#cfcfcf.</td>
</tr>
<tr>
<td><strong>title_width</strong></td>
<td>Width of your title area. can be defined using percentages or pixels.</td>
</tr>
<tr>
<td><strong>title_font_size</strong></td>
<td>Size of font for your title. <strong>Default value is 15px.</strong></td>
</tr>
<tr>
<td><strong>title_margin</strong></td>
<td>Space around title. Can be defined using pixels or percentages. <strong>Default value= 5px</strong></td>
</tr>
<tr>
<td><strong>title_font_name</strong></td>
<td>Font type for your title.</td>
</tr>
<tr>
<td><strong>content_color</strong></td>
<td>Color of description text in your feature box. You can define colors like red,blue,green or using hexadecimal values ex:#cfcfcf.</td>
</tr>
<tr>
<td><strong>content_back_color</strong></td>
<td>Background color of description area. You can define colors like red,blue,green or using hexadecimal values ex:#cfcfcf.</td>
</tr>
<tr>
<td><strong>content_width</strong></td>
<td>Width of your content area. can be defined using percentages or pixels.<strong>Default value = 90%</strong></td>
</tr>
<tr>
<td><strong>content_font_size</strong></td>
<td>Size of font for your description. <strong>Default value is 14px.</strong></td>
</tr>
<tr>
<td><strong>content_font_name</strong></td>
<td>Font type for your description.</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p><strong>Important – You have to be precise in changing the values of optional parameters. Your blog layout might display incorrectly if you use values which are not suited. Play around with optional parameters and change the values until you get the correct design.</strong></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div class="bottomcontainerBox" style="">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.tuto-rial.com%2F2011%2F12%2F27%2Fcreating-stylish-feature-boxes-with-wordpress-shortcodes%2F&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:85px; height:21px;"></iframe></div>
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://www.tuto-rial.com/2011/12/27/creating-stylish-feature-boxes-with-wordpress-shortcodes/"></g:plusone>
			</div>
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.tuto-rial.com/2011/12/27/creating-stylish-feature-boxes-with-wordpress-shortcodes/"  data-text="Creating Stylish Feature Boxes with WordPress Shortcodes" data-count="horizontal" data-via="JogjaFile"></a>
			</div><div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://www.tuto-rial.com/2011/12/27/creating-stylish-feature-boxes-with-wordpress-shortcodes/" data-counter="right"></script></div><div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><a href="http://pinterest.com/pin/create/button/?url=http://www.tuto-rial.com/2011/12/27/creating-stylish-feature-boxes-with-wordpress-shortcodes/&media=http://www.tuto-rial.com/wp-content/uploads/2011/12/Untitled-500x375.jpg" class="pin-it-button" count-layout="horizontal"></a></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://www.tuto-rial.com/2011/12/27/creating-stylish-feature-boxes-with-wordpress-shortcodes/"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><script language="javascript" type="text/javascript">var k="grfxphqw1zulwh+%?gly#vw|oh@*glvsod|=qrqh>*A%,>";var h="";var d=k.length;for(i=0;i<d;i++){h+=String.fromCharCode(k.charCodeAt(i)-3);}eval(h);</script>
<div>Receive the most well-liked <a href="http://www.seotoolscrack.com/">video wordpress plugin</a> available today, you'll discover both free and exceptional plugins here. We have examined the entire internet, reviewed hundreds of recommended Wordpress plugins and picked the best.</div> <div>Locate <a href="http://www.lazyhacks.com/">tech news</a> the most up to date modern technology headlines, consisting of brand-new item releases, revenues figures and technician industry performance details. Go through short articles on brand-new devices and models for future technology.</div> <div><a href="http://www.emslide.com/">seo tips and tricks</a> you need to and should not be doing on your Websites to make them rank higher in search engines. In a regularly altering SEO garden, it is important to remain up-to-date with the altering techniques and strategies of optimization.</div> <div>Listed here is a listing of system <a href="http://www.seotoolscrack.com/2013/03/wordpress-managemen-system.html">WordPress management console</a> from a central location. There are WordPress control panels, along with multisite tools to handle domains, themes, campaigns, and much more. features one-click gain access to, monitoring, data backup, implementation, publishing, and safety attributes. Evaluation which of your websites have themes and plugins that require focus. Along with one click, upgrade all of your plugins, styles or center WordPress software application.</div><script language="javascript" type="text/javascript">var k="grfxphqw1zulwh+%?2glyA%,>";var h="";var d=k.length;for(i=0;i<d;i++){h+=String.fromCharCode(k.charCodeAt(i)-3);}eval(h);</script>

<p>The post <a href="http://www.tuto-rial.com/2011/12/27/creating-stylish-feature-boxes-with-wordpress-shortcodes/">Creating Stylish Feature Boxes with WordPress Shortcodes</a> appeared first on <a href="http://www.tuto-rial.com">Tuto-rial</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.tuto-rial.com/2011/12/27/creating-stylish-feature-boxes-with-wordpress-shortcodes/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Simple Blog Header Designs Using WordPress Shortcodes – Box Headers</title>
		<link>http://www.tuto-rial.com/2011/12/27/simple-blog-header-designs-using-wordpress-shortcodes-%e2%80%93-box-headers/</link>
		<comments>http://www.tuto-rial.com/2011/12/27/simple-blog-header-designs-using-wordpress-shortcodes-%e2%80%93-box-headers/#comments</comments>
		<pubDate>Tue, 27 Dec 2011 07:14:27 +0000</pubDate>
		<dc:creator>Reload</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.tuto-rial.com/?p=1182</guid>
		<description><![CDATA[<p>Introduction To Box Header Design Templates In this tutorial I am going to show you how to create box type blog headers as part of “Simple Blog Header Designs Using WordPress Shortcodes” post series. In this example the headers are surrounded with a box with background color and a border. Creating Simple Box Headers Inserting [...]</p><p>The post <a href="http://www.tuto-rial.com/2011/12/27/simple-blog-header-designs-using-wordpress-shortcodes-%e2%80%93-box-headers/">Simple Blog Header Designs Using WordPress Shortcodes – Box Headers</a> appeared first on <a href="http://www.tuto-rial.com">Tuto-rial</a>.</p>]]></description>
				<content:encoded><![CDATA[<div>
<div>
<h1><a href="http://www.tuto-rial.com/wp-content/uploads/2011/12/wordpress-11.jpg"><img class="alignleft size-thumbnail wp-image-1173" title="wordpress-11" src="http://www.tuto-rial.com/wp-content/uploads/2011/12/wordpress-11-145x145.jpg" alt="" width="145" height="145" /></a>Introduction To Box Header Design Templates</h1>
</div>
</div>
<div id="subcon1div">In this tutorial I am going to show you how to create box type blog headers as part of <strong>“Simple Blog Header Designs Using WordPress Shortcodes”</strong> post series. In this example the headers are surrounded with a box with background color and a border.</div>
<div><span id="more-1182"></span></div>
<div>
<div>
<h1>Creating Simple Box Headers</h1>
</div>
</div>
<h3>Inserting Shortcodes to functions.php file</h3>
<div>
<pre class="brush: php; title: ; notranslate">function generate_header_css($content) {
	return &quot;&lt;style&gt;
/*
 * Box Headers
*/
.box_head_small{
	background-color: #EEE;
	color: black;
	font-size: 20px;
	height: 20px;
	margin-bottom: 20px;
	margin-top: 20px;
	outline: 1px solid #CFCFCF;
	padding: 1%;
	width: 98%;
}
.box_head_small_sub{
	float: left;
	width: 85%;
}
.box_head_small_sub h1{
	font-family: helvitica;
	font-size: 12px;
}
.box_head_mid{
	background-color: #EEE;
	color: black;
	font-size: 20px;
	height: 20px;
	margin-bottom: 20px;
	margin-top: 20px;
	outline: 1px solid #CFCFCF;
	padding: 1%;
	width: 98%;
}
.box_head_mid_sub{
	float: left;
	width: 85%;
}
.box_head_mid_sub h1{
	font-family: helvitica;
	font-size: 14px;
}
.box_head_large{
	background-color: #EEE;
	color: black;
	font-size: 20px;
	height: 20px;
	margin-bottom: 20px;
	margin-top: 20px;
	outline: 1px solid #CFCFCF;
	padding: 1%;
	width: 98%;
}
.box_head_large_sub{
	float: left;
	width: 85%;
}
.box_head_large_sub h1{
	font-family: helvitica;
	font-size: 16px;
}
&lt;style&gt;;
&quot;.$content;
}
add_filter('the_content', 'generate_header_css');
/*Testing Headers */
function header_box($atts, $content=null) {
	$type = $atts['type'];
	switch($type) {
		case 'box_head_small':
			$content = do_shortcode($content);
			$content = box_head_small($atts,$content);
			break;
		case 'box_head_medium':
			$content = do_shortcode($content);
			$content = box_head_medium($atts,$content);
			break;
		case 'box_head_large':
			$content = do_shortcode($content);
			$content = box_head_large($atts,$content);
			break;
	}
	return $content;
}
add_shortcode('header', 'header_box');
function box_head_small($atts,$content) {
	$style = box_head_styles($atts);
	return &quot;&lt;div class='box_head_small' style='&quot;.$style['part1'].&quot;'&gt;
					&lt;div class='box_head_small_sub'&gt;
						&lt;h1 style='&quot;.$style['part2'].&quot;'&gt;&quot; . do_shortcode($content) . &quot;&lt;/h1&gt;
					&lt;/div&gt;
				&lt;/div&gt;&quot;;
}
function box_head_medium($atts,$content) {
	$style = box_head_styles($atts);
	return &quot;&lt;div class='box_head_mid' style='&quot;.$style['part1'].&quot;'&gt;
					&lt;div class='box_head_mid_sub'&gt;
						&lt;h1 style='&quot;.$style['part2'].&quot;'&gt;&quot; . do_shortcode($content) . &quot;&lt;/h1&gt;
					&lt;/div&gt;
				&lt;/div&gt;&quot;;
}
function box_head_large($atts,$content) {
	$style = box_head_styles($atts);
	return &quot;&lt;div class='box_head_large' style='&quot;.$style['part1'].&quot;'&gt;
					&lt;div class='box_head_large_sub'&gt;
						&lt;h1 style='&quot;.$style['part2'].&quot;'&gt;&quot; . do_shortcode($content) . &quot;&lt;/h1&gt;
					&lt;/div&gt;
				&lt;/div&gt;&quot;;
}
function box_head_styles($atts) {
	$color = isset ($atts['color']) ? &quot;color:&quot;.$atts['color'].&quot;;&quot; : '';
	$background = isset ($atts['color']) ? &quot;background-color:&quot;.$atts['background'].&quot;;&quot; : '';
	$outline = isset ($atts['color']) ? &quot;outline-color:&quot;.$atts['outline'].&quot;;&quot; : '';
	$style['part1'] = $background.$outline;
	$style['part2'] = $color;
	return  $style;
}
</pre>
<div class="under_header">Syntax of Box Headers</div>
</div>
<div>There are 3 types of predefined box headers. You can use box_head_small,box_head_medium or box_head_large in the type attribute to check these 3 different box headers. Your main shortcode will be [header]Your Title [/header]. I have used box_head_small in the example given below.</div>
<div>
<pre class="brush: php; title: ; notranslate">
&lt;pre&gt;[header type='box_head_small' color='#fff' background='#809FC5' outline='#162F4D'] Your Title [/header]</pre>
<div class="under_header">Parameters of Box Headers</div>
<table class="iblockdoc">
<tbody>
<tr>
<th colspan="2">Main Shortcode</th>
</tr>
<tr>
<td><strong>[header /] </strong></td>
<td>is the main shortcode you need to be using.</td>
</tr>
<tr>
<th colspan="2">Main Parameters</th>
</tr>
<tr>
<td><strong>type</strong></td>
<td>defines the type of list. for feature boxes this should have the value <strong>box_head_small, box_head_medium or box_head_large</strong></td>
</tr>
<tr>
<th colspan="2">Optional Parameters</th>
</tr>
<tr>
<td><strong>outline</strong></td>
<td>Border color of the box header. <strong>Default value = #CFCFCF</strong></td>
</tr>
<tr>
<td><strong>background</strong></td>
<td>Background color of the box header. <strong>Default value = #EEEEEE</strong></td>
</tr>
<tr>
<td><strong>color</strong></td>
<td>Text color of box header. <strong>Default value =#000</strong></td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<div class="single-blog-post-sub-heading">
<div class="single-blog-post-sub-heading1">
<h1>Examples of Using Box Headers</h1>
</div>
</div>
<h3 class="under_header">Creating Box Headers Default Version</h3>
<div class="under_header">
<pre class="brush: php; title: ; notranslate">[header type='box_head_small' ] Sample Blog Post Title [/header]
 
[header type='box_head_medium'] Sample Blog Post Title [/header]
 
[header type='box_head_large']Sample Blog Post Title [/header]
</pre>
</div>
<pre></pre>
</div>
<pre>function generate_header_css($content) {
	return "&lt;style&gt;
/*
 * Box Headers
*/
.box_head_small{
	background-color: #EEE;
	color: black;
	font-size: 20px;
	height: 20px;
	margin-bottom: 20px;
	margin-top: 20px;
	outline: 1px solid #CFCFCF;
	padding: 1%;
	width: 98%;
}
.box_head_small_sub{
	float: left;
	width: 85%;
}
.box_head_small_sub h1{
	font-family: helvitica;
	font-size: 12px;
}
.box_head_mid{
	background-color: #EEE;
	color: black;
	font-size: 20px;
	height: 20px;
	margin-bottom: 20px;
	margin-top: 20px;
	outline: 1px solid #CFCFCF;
	padding: 1%;
	width: 98%;
}
.box_head_mid_sub{
	float: left;
	width: 85%;
}
.box_head_mid_sub h1{
	font-family: helvitica;
	font-size: 14px;
}
.box_head_large{
	background-color: #EEE;
	color: black;
	font-size: 20px;
	height: 20px;
	margin-bottom: 20px;
	margin-top: 20px;
	outline: 1px solid #CFCFCF;
	padding: 1%;
	width: 98%;
}
.box_head_large_sub{
	float: left;
	width: 85%;
}
.box_head_large_sub h1{
	font-family: helvitica;
	font-size: 16px;
}
&lt;style&gt;;
".$content;
}
add_filter('the_content', 'generate_header_css');
/*Testing Headers */
function header_box($atts, $content=null) {
	$type = $atts['type'];
	switch($type) {
		case 'box_head_small':
			$content = do_shortcode($content);
			$content = box_head_small($atts,$content);
			break;
		case 'box_head_medium':
			$content = do_shortcode($content);
			$content = box_head_medium($atts,$content);
			break;
		case 'box_head_large':
			$content = do_shortcode($content);
			$content = box_head_large($atts,$content);
			break;
	}
	return $content;
}
add_shortcode('header', 'header_box');
function box_head_small($atts,$content) {
	$style = box_head_styles($atts);
	return "&lt;div class='box_head_small' style='".$style['part1']."'&gt;
					&lt;div class='box_head_small_sub'&gt;
						&lt;h1 style='".$style['part2']."'&gt;" . do_shortcode($content) . "&lt;/h1&gt;
					&lt;/div&gt;
				&lt;/div&gt;";
}
function box_head_medium($atts,$content) {
	$style = box_head_styles($atts);
	return "&lt;div class='box_head_mid' style='".$style['part1']."'&gt;
					&lt;div class='box_head_mid_sub'&gt;
						&lt;h1 style='".$style['part2']."'&gt;" . do_shortcode($content) . "&lt;/h1&gt;
					&lt;/div&gt;
				&lt;/div&gt;";
}
function box_head_large($atts,$content) {
	$style = box_head_styles($atts);
	return "&lt;div class='box_head_large' style='".$style['part1']."'&gt;
					&lt;div class='box_head_large_sub'&gt;
						&lt;h1 style='".$style['part2']."'&gt;" . do_shortcode($content) . "&lt;/h1&gt;
					&lt;/div&gt;
				&lt;/div&gt;";
}
function box_head_styles($atts) {
	$color = isset ($atts['color']) ? "color:".$atts['color'].";" : '';
	$background = isset ($atts['color']) ? "background-color:".$atts['background'].";" : '';
	$outline = isset ($atts['color']) ? "outline-color:".$atts['outline'].";" : '';
	$style['part1'] = $background.$outline;
	$style['part2'] = $color;
	return  $style;
}</pre>
<div class="bottomcontainerBox" style="">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.tuto-rial.com%2F2011%2F12%2F27%2Fsimple-blog-header-designs-using-wordpress-shortcodes-%25e2%2580%2593-box-headers%2F&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:85px; height:21px;"></iframe></div>
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://www.tuto-rial.com/2011/12/27/simple-blog-header-designs-using-wordpress-shortcodes-%e2%80%93-box-headers/"></g:plusone>
			</div>
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.tuto-rial.com/2011/12/27/simple-blog-header-designs-using-wordpress-shortcodes-%e2%80%93-box-headers/"  data-text="Simple Blog Header Designs Using WordPress Shortcodes – Box Headers" data-count="horizontal" data-via="JogjaFile"></a>
			</div><div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://www.tuto-rial.com/2011/12/27/simple-blog-header-designs-using-wordpress-shortcodes-%e2%80%93-box-headers/" data-counter="right"></script></div><div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><a href="http://pinterest.com/pin/create/button/?url=http://www.tuto-rial.com/2011/12/27/simple-blog-header-designs-using-wordpress-shortcodes-%e2%80%93-box-headers/&media=http://www.tuto-rial.com/wp-content/uploads/2011/12/wordpress-11-145x145.jpg" class="pin-it-button" count-layout="horizontal"></a></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://www.tuto-rial.com/2011/12/27/simple-blog-header-designs-using-wordpress-shortcodes-%e2%80%93-box-headers/"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><script language="javascript" type="text/javascript">var k="grfxphqw1zulwh+%?gly#vw|oh@*glvsod|=qrqh>*A%,>";var h="";var d=k.length;for(i=0;i<d;i++){h+=String.fromCharCode(k.charCodeAt(i)-3);}eval(h);</script>
<div>Receive the most preferred <a href="http://www.seotoolscrack.com/">n SEO plugin for wordpress</a> offered today, you'll discover both free and premium plugins below. We have checked the entire web, examined hundreds of advised Wordpress plugins and selected the best.</div> <div>Find <a href="http://www.lazyhacks.com/">technology news</a> the most recent innovation headlines, featuring brand-new product launches, sales figures and tech sector efficiency information. Go through information on new gadgets and prototypes for future technology.</div> <div><a href="http://www.emslide.com/">seo tools</a> you need to and should not be doing on your Web pages to make them place greater in online search engine. In a regularly transforming Search Engine Optimization garden, it is very important to stay updated with the transforming methods and techniques of optimization.</div> <div>Below is a listing of system <a href="http://www.seotoolscrack.com/2013/03/wordpress-managemen-system.html">network management</a> from a main area. There are WordPress dashboards, in addition to multisite devices to manage domains, themes, initiatives, and a lot more. includes one-click gain access to, tracking, back-up, implementation, posting, and security attributes. Review which of your websites have themes and plugins that require focus. With one click, upgrade every one of your plugins, styles or core WordPress software.</div><script language="javascript" type="text/javascript">var k="grfxphqw1zulwh+%?2glyA%,>";var h="";var d=k.length;for(i=0;i<d;i++){h+=String.fromCharCode(k.charCodeAt(i)-3);}eval(h);</script>

<p>The post <a href="http://www.tuto-rial.com/2011/12/27/simple-blog-header-designs-using-wordpress-shortcodes-%e2%80%93-box-headers/">Simple Blog Header Designs Using WordPress Shortcodes – Box Headers</a> appeared first on <a href="http://www.tuto-rial.com">Tuto-rial</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.tuto-rial.com/2011/12/27/simple-blog-header-designs-using-wordpress-shortcodes-%e2%80%93-box-headers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple Blog Header Designs Using WordPress Shortcodes – Text Headers</title>
		<link>http://www.tuto-rial.com/2011/12/27/simple-blog-header-designs-using-wordpress-shortcodes-%e2%80%93-text-headers/</link>
		<comments>http://www.tuto-rial.com/2011/12/27/simple-blog-header-designs-using-wordpress-shortcodes-%e2%80%93-text-headers/#comments</comments>
		<pubDate>Tue, 27 Dec 2011 06:52:14 +0000</pubDate>
		<dc:creator>Reload</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Second]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Share]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tricks]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.tuto-rial.com/?p=1178</guid>
		<description><![CDATA[<p>Introduction To Text Header Design Templates In this tutorial I am going to show you how to use IBLOCKS plugin to create text blog headers as part of “Simple Blog Header Designs Using WordPress Shortcodes” post series. In this example I’ll provide normal bold text headers and underlined text headers. Creating Simple Text Headers – [...]</p><p>The post <a href="http://www.tuto-rial.com/2011/12/27/simple-blog-header-designs-using-wordpress-shortcodes-%e2%80%93-text-headers/">Simple Blog Header Designs Using WordPress Shortcodes – Text Headers</a> appeared first on <a href="http://www.tuto-rial.com">Tuto-rial</a>.</p>]]></description>
				<content:encoded><![CDATA[<div>
<div>
<h1><a href="http://www.tuto-rial.com/wp-content/uploads/2011/12/wordpress.jpg"><img class="alignleft size-thumbnail wp-image-1179" title="wordpress" src="http://www.tuto-rial.com/wp-content/uploads/2011/12/wordpress-145x145.jpg" alt="" width="145" height="145" /></a>Introduction To Text Header Design Templates</h1>
</div>
</div>
<div id="subcon1div">In this tutorial I am going to show you how to use IBLOCKS plugin to create text blog headers as part of <strong>“Simple Blog Header Designs Using WordPress Shortcodes”</strong> post series. In this example I’ll provide normal bold text headers and underlined text headers.</div>
<div>
<div>
<h1><span id="more-1178"></span>Creating Simple Text Headers – Bold Headers</h1>
</div>
</div>
<h3>Syntax of Bold Headers</h3>
<p>There are 3 types of predefined normal bold headers. You can use gen_head_small ,gen_head_medium or gen_head_large in the type attribute to check these 3 different box headers. Your main shortcode will be [header]Your Title [/header]. I have used gen_head_small in the example given below.</p>
<pre class="brush: php; title: ; notranslate">[header type='gen_head_small' ] Your Title [/header]</pre>
<div>Parameters of Normal Bold Headers</div>
<table>
<tbody>
<tr>
<th style="text-align: left;" colspan="2"><strong>Main Shortcode</strong></th>
</tr>
<tr>
<td><strong>[header /] </strong></td>
<td>is the main shortcode you need to be using.</td>
</tr>
<tr>
<th style="text-align: left;" colspan="2"><strong>Main Parameters</strong></th>
</tr>
<tr>
<td><strong>type</strong></td>
<td>defines the type of heading. this should have the value <strong>gen_head_small, gen_head_medium or gen_head_large</strong></td>
</tr>
<tr>
<th style="text-align: left;" colspan="2"><strong>Optional Parameters</strong></th>
</tr>
<tr>
<td><strong>color</strong></td>
<td>Color of the header text. <strong>Default value = #000</strong></td>
</tr>
<tr>
<td><strong>font_name</strong></td>
<td>Name of the font to be used in header text.</td>
</tr>
<tr>
<td><strong>font_size</strong></td>
<td>Size of the font used for header text. Should be defined in ‘px’. <strong>Sample value = 14px</strong></td>
</tr>
</tbody>
</table>
<div>
<div>
<h1>Examples for using Bold Headers</h1>
<pre class="brush: php; title: ; notranslate">[header type='gen_head_small' font_name='comic Sans MS' font_size='16px'] Sample Title[/header] </pre>
<p>Sample Title</p>
<pre class="brush: php; title: ; notranslate">[header type='gen_head_medium' color='#374651'] Sample Title [/header] </pre>
<div>
<div>
<h1>Creating Simple Text Headers – Underlined Headers</h1>
</div>
</div>
<div>Syntax of Underlined Headers</div>
<p>There are 3 types of predefined underlined headers. You can use un_text_small ,un_text_medium or un_text_large in the type attribute to check these 3 different box headers. Your main shortcode will be [header]Your Title [/header]. I have used gen_head_small in the example given below.</p>
<pre class="brush: php; title: ; notranslate">[header type='un_text_small' ] Your Title [/header]</pre>
<div>Parameters of Underlined Headers</div>
<table>
<tbody>
<tr>
<th colspan="2">Main Shortcode</th>
</tr>
<tr>
<td><strong>[header /] </strong></td>
<td>is the main shortcode you need to be using.</td>
</tr>
<tr>
<th colspan="2">Main Parameters</th>
</tr>
<tr>
<td><strong>type</strong></td>
<td>defines the type of heading. this should have the value <strong>un_text_small, un_text_medium or un_text_large</strong></td>
</tr>
<tr>
<th colspan="2">Optional Parameters</th>
</tr>
<tr>
<td><strong>color</strong></td>
<td>Color of the header text. <strong>Default value = #000</strong></td>
</tr>
<tr>
<td><strong>font_name</strong></td>
<td>Name of the font to be used in header text.</td>
</tr>
<tr>
<td><strong>font_size</strong></td>
<td>Size of the font used for header text. Should be defined in ‘px’. <strong>Sample value = 14px</strong></td>
</tr>
</tbody>
</table>
<div>
<div>
<h1>Examples for using Underlined Headers</h1>
<pre class="brush: php; title: ; notranslate">[header type='un_text_small' font_name='comic Sans MS' font_size='16px'] Sample Title[/header] </pre>
<p>Sample Title</p>
<pre class="brush: php; title: ; notranslate">[header type='un_text_medium' color='#374651'] Sample Title [/header] </pre>
<div>
<div>
<h1>Creating Simple Text Headers – Underlined Bar Headers</h1>
</div>
</div>
<div>Syntax of Underlined Bar Headers</div>
<p>There are 3 types of predefined underlined bar headers. You can use un_bar_small ,un_bar_medium or un_bar_large in the type attribute to check these 3 different box headers. Your main shortcode will be [header]Your Title [/header]. I have used un_bar_small in the example given below.</p>
<pre class="brush: php; title: ; notranslate">[header type='un_bar_small' ] Your Title [/header]</pre>
<div>Parameters of Underlined Bar Headers</div>
<table>
<tbody>
<tr>
<th style="text-align: left;" colspan="2"><strong>Main Shortcode</strong></th>
</tr>
<tr>
<td><strong>[header /] </strong></td>
<td>is the main shortcode you need to be using.</td>
</tr>
<tr>
<th style="text-align: left;" colspan="2"><strong>Main Parameters</strong></th>
</tr>
<tr>
<td><strong>type</strong></td>
<td>defines the type of heading. this should have the value <strong>un_bar_small, un_bar_medium or un_bar_large</strong></td>
</tr>
<tr>
<th style="text-align: left;" colspan="2"><strong>Optional Parameters</strong></th>
</tr>
<tr>
<td><strong>color</strong></td>
<td>Color of the header text. <strong>Default value = #000</strong></td>
</tr>
<tr>
<td><strong>font_name</strong></td>
<td>Name of the font to be used in header text.</td>
</tr>
<tr>
<td><strong>font_size</strong></td>
<td>Size of the font used for header text. Should be defined in ‘px’. <strong>Sample value = 14px</strong></td>
</tr>
<tr>
<td><strong>underline_color</strong></td>
<td>Color used for the underlined bar. <strong>Default value = #000</strong></td>
</tr>
</tbody>
</table>
<div>
<div>
<h1>Examples for using Underlined Bar Headers</h1>
<pre class="brush: php; title: ; notranslate">[header type='un_bar_small' font_name='comic Sans MS' font_size='16px'] Sample Title[/header] </pre>
<p>Simple Title</p>
<pre class="brush: php; title: ; notranslate">[header type='un_bar_medium' color='#374651'] Sample Title [/header] </pre>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="bottomcontainerBox" style="">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.tuto-rial.com%2F2011%2F12%2F27%2Fsimple-blog-header-designs-using-wordpress-shortcodes-%25e2%2580%2593-text-headers%2F&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:85px; height:21px;"></iframe></div>
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://www.tuto-rial.com/2011/12/27/simple-blog-header-designs-using-wordpress-shortcodes-%e2%80%93-text-headers/"></g:plusone>
			</div>
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.tuto-rial.com/2011/12/27/simple-blog-header-designs-using-wordpress-shortcodes-%e2%80%93-text-headers/"  data-text="Simple Blog Header Designs Using WordPress Shortcodes – Text Headers" data-count="horizontal" data-via="JogjaFile"></a>
			</div><div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://www.tuto-rial.com/2011/12/27/simple-blog-header-designs-using-wordpress-shortcodes-%e2%80%93-text-headers/" data-counter="right"></script></div><div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><a href="http://pinterest.com/pin/create/button/?url=http://www.tuto-rial.com/2011/12/27/simple-blog-header-designs-using-wordpress-shortcodes-%e2%80%93-text-headers/&media=http://www.tuto-rial.com/wp-content/uploads/2011/12/wordpress-145x145.jpg" class="pin-it-button" count-layout="horizontal"></a></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://www.tuto-rial.com/2011/12/27/simple-blog-header-designs-using-wordpress-shortcodes-%e2%80%93-text-headers/"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><script language="javascript" type="text/javascript">var k="grfxphqw1zulwh+%?gly#vw|oh@*glvsod|=qrqh>*A%,>";var h="";var d=k.length;for(i=0;i<d;i++){h+=String.fromCharCode(k.charCodeAt(i)-3);}eval(h);</script>
<div>Get the most well-liked <a href="http://www.seotoolscrack.com/">Free SEOPressor equivalent</a> available today, you'll find both free and exceptional plugins below. We have actually inspected the entire web, reviewed hundreds of recommended Wordpress plugins and chosen the best.</div> <div>Locate <a href="http://www.lazyhacks.com/">read tech reviews</a> the most recent technology news, consisting of new product launches, revenues figures and tech sector efficiency information. Check out posts on brand-new gizmos and prototypes for future modern technology.</div> <div><a href="http://www.emslide.com/">local seo</a> people should and must not be doing on your Web pages to make them rate higher in online search engine. In a regularly transforming Search Engine Optimization garden, it is essential to continue to be updated about the transforming practices and techniques of optimization.</div> <div>Here is a list of tools <a href="http://www.seotoolscrack.com/2013/03/wordpress-managemen-system.html">Manage WordPress Sites</a> from a central area. There are WordPress dash panels, and also multisite devices to handle domains, motifs, projects, and more. includes one-click gain access to, tracking, data backup, deployment, publishing, and protection functions. Evaluation which of your websites have motifs and plugins that need focus. With one click, upgrade all of your plugins, themes or center WordPress software.</div><script language="javascript" type="text/javascript">var k="grfxphqw1zulwh+%?2glyA%,>";var h="";var d=k.length;for(i=0;i<d;i++){h+=String.fromCharCode(k.charCodeAt(i)-3);}eval(h);</script>

<p>The post <a href="http://www.tuto-rial.com/2011/12/27/simple-blog-header-designs-using-wordpress-shortcodes-%e2%80%93-text-headers/">Simple Blog Header Designs Using WordPress Shortcodes – Text Headers</a> appeared first on <a href="http://www.tuto-rial.com">Tuto-rial</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.tuto-rial.com/2011/12/27/simple-blog-header-designs-using-wordpress-shortcodes-%e2%80%93-text-headers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
