<?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>zParacha.com &#187; CSS</title>
	<atom:link href="http://www.zparacha.com/category/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.zparacha.com</link>
	<description>Effective programming and blogging tips by Zaheer Paracha</description>
	<lastBuildDate>Sun, 23 May 2010 00:41:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to position HTML element in the center using CSS.</title>
		<link>http://www.zparacha.com/how-to-position-html-element-in-the-center-using-css/</link>
		<comments>http://www.zparacha.com/how-to-position-html-element-in-the-center-using-css/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 04:56:58 +0000</pubDate>
		<dc:creator>Zaheer Paracha</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[cascading_style_sheet]]></category>
		<category><![CDATA[positioning]]></category>
		<category><![CDATA[web development tools]]></category>

		<guid isPermaLink="false">http://www.zparacha.com/?p=1035</guid>
		<description><![CDATA[Positioning text in the center of an element is easily done using text-align:center property. But how do you position an entire element, for e.g; a div or an image in the center of the containing parent element? For example, if you want to put an image at the center of<a href="http://www.zparacha.com/how-to-position-html-element-in-the-center-using-css/"> Continue Reading <span style="font-size:1.35em;">&#187;</span></a><p><a href="http://www.zparacha.com/how-to-position-html-element-in-the-center-using-css/">How to position HTML element in the center using CSS.</a> is a post from: <a href="http://www.zparacha.com">zParacha.com | Effective programming and blogging tips by Zaheer Paracha</a></p>



<span style="font-weight:bold;"> Related posts:</span><ul><li><a href='http://www.zparacha.com/ad_placement/' rel='bookmark' title='Permanent Link: Position Ad Units in Posts'>Position Ad Units in Posts</a> <small>Photo credit: AMagill Ever since I started placing AdSense units...</small></li>
<li><a href='http://www.zparacha.com/doctype-explained/' rel='bookmark' title='Permanent Link: An HTML element you don&#39;t want to omit.'>An HTML element you don&#39;t want to omit.</a> <small>As web developers we have the tendency to blame web...</small></li>
<li><a href='http://www.zparacha.com/textfield_focus/' rel='bookmark' title='Permanent Link: Set focus on the first text field of HTML form.'>Set focus on the first text field of HTML form.</a> <small>A HTML form is a very good channel that you...</small></li>
</ul>]]></description>
			<content:encoded><![CDATA[<div class="wpbuzzer_button" style="float: right"><a title="Post on Google Buzz" class="google-buzz-button" href="http://www.google.com/buzz/post" data-button-style="normal-count" data-url="http://www.zparacha.com/how-to-position-html-element-in-the-center-using-css/" data-imageurl=""></a><script type="text/javascript" src="http://www.google.com/buzz/api/button.js"></script></div><p><!--adsense#greyLeft-->Positioning text in the center of an element is easily done using text-align:center property. But how do you position an entire element, for e.g; a div or an image in the center of the containing parent element?</p>
<p>For example, if you want to put an image at the center of your header div how do you accomplish this?</p>
<p>There are several ways to align an element in the center but the preferred and elegant method is to use <b>margin</b> property. <span id="more-1035"></span></p>
<p>By setting left and right margin widths to &#8220;auto&#8221; you tell the browser to put this element at the horizontal center of the the parent element.</p>
<div style="border:1px solid #333;background:#fff;width:450px;">
<h4>Outer DIV</h4>
<div style="margin:auto; background:#eee;width:50%">
THIS DIV is in the center of the parent div. We used following CSS declaration to align this div.</p>
<pre>
#outerDiv{
 background:#fff;
 border:1px solid #333;
 width:450px;

}
#innerDiv{
  <strong>margin:auto;</strong>
  background:#eee;
  width:50%
}
</div>
</div>
</pre>
<p>Piece of cake, huh? Not so fast. This approach will work in all browsers except, you guessed it, in IE6. I am sure you are not surprised that IE6 will not render this div as you would have expected. But there is a workaround for this IE6 behavior. You can set <strong>text-align</strong> property of the outer div to center and this will align your inner div nicely in the center in IE6. </p>
<p><!--adsense#tla--></p>
<p>This will, however, introduce a side effect. Since you are setting text-align property of the parent element to center, your inner div (the child) will inherit this property also and the text will be center-aligned. If you don&#8217;t want your text to be in the center, reset text-align property at the child level by adding <strong>text-align:left;</strong></p>
<p>So your final style sheet will have this declaration.</p>
<div style="border:1px solid #333;background:#fff;width:450px;text-align:center;">
<h4 style="text-align:left;">Outer DIV</h4>
<div style="margin:auto; background:#eee;width:50%;text-align:left;">
THIS DIV is in the center of the parent div. We used following CSS declaration to align this div.
<pre>
#outerDiv{
 background:#fff;
 border:1px solid #333;
 width:450px;
<strong> text-align:center;</strong>
}
#innerDiv{
 margin:auto;
 background:#eee;
 width:50%
 <strong>text-align:left;</strong>
}
</div>
</div>
</pre>
<p>Good luck!</p>
<div class="tweetmeme_button" style="float:right; margin: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.zparacha.com%2Fhow-to-position-html-element-in-the-center-using-css%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.zparacha.com%2Fhow-to-position-html-element-in-the-center-using-css%2F&amp;source=zparacha&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="How to position HTML element in the center using CSS." alt=" How to position HTML element in the center using CSS." /><br />
			</a>
		</div>
<p><a href="http://www.zparacha.com/how-to-position-html-element-in-the-center-using-css/">How to position HTML element in the center using CSS.</a> is a post from: <a href="http://www.zparacha.com">zParacha.com | Effective programming and blogging tips by Zaheer Paracha</a></p>
<img src="http://www.zparacha.com/?ak_action=api_record_view&id=1035&type=feed" alt=" How to position HTML element in the center using CSS."  title="How to position HTML element in the center using CSS." />

<p><span style="font-weight:bold;"> Related posts:</span><ul><li><a href='http://www.zparacha.com/ad_placement/' rel='bookmark' title='Permanent Link: Position Ad Units in Posts'>Position Ad Units in Posts</a> <small>Photo credit: AMagill Ever since I started placing AdSense units...</small></li>
<li><a href='http://www.zparacha.com/doctype-explained/' rel='bookmark' title='Permanent Link: An HTML element you don&#39;t want to omit.'>An HTML element you don&#39;t want to omit.</a> <small>As web developers we have the tendency to blame web...</small></li>
<li><a href='http://www.zparacha.com/textfield_focus/' rel='bookmark' title='Permanent Link: Set focus on the first text field of HTML form.'>Set focus on the first text field of HTML form.</a> <small>A HTML form is a very good channel that you...</small></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://www.zparacha.com/how-to-position-html-element-in-the-center-using-css/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Reset CSS: A simple solution to browsers&#8217; inconsistencies.</title>
		<link>http://www.zparacha.com/reset-css-a-simple-solution-to-browsers-inconsistencies/</link>
		<comments>http://www.zparacha.com/reset-css-a-simple-solution-to-browsers-inconsistencies/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 00:52:34 +0000</pubDate>
		<dc:creator>Zaheer Paracha</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[web development tools]]></category>

		<guid isPermaLink="false">http://www.zparacha.com/?p=989</guid>
		<description><![CDATA[One of the challenges web designers face is to get various web browsers render their web pages in a consistent manner. The reason is every browser assigns slightly different default styles to certain page elements. A simple approach to handle this cross-browser inconsistency is to overwrite browsers&#8217; default styles. This<a href="http://www.zparacha.com/reset-css-a-simple-solution-to-browsers-inconsistencies/"> Continue Reading <span style="font-size:1.35em;">&#187;</span></a><p><a href="http://www.zparacha.com/reset-css-a-simple-solution-to-browsers-inconsistencies/">Reset CSS: A simple solution to browsers&#8217; inconsistencies.</a> is a post from: <a href="http://www.zparacha.com">zParacha.com | Effective programming and blogging tips by Zaheer Paracha</a></p>



<span style="font-weight:bold;"> Related posts:</span><ul><li><a href='http://www.zparacha.com/blogging_tips-2/' rel='bookmark' title='Permanent Link: Simple tips to make you a better blogger.'>Simple tips to make you a better blogger.</a> <small>Image credit:Kelly Sims To become a successful blogger is not...</small></li>
<li><a href='http://www.zparacha.com/how-to-position-html-element-in-the-center-using-css/' rel='bookmark' title='Permanent Link: How to position HTML element in the center using CSS.'>How to position HTML element in the center using CSS.</a> <small>Positioning text in the center of an element is easily...</small></li>
<li><a href='http://www.zparacha.com/css-text-resize/' rel='bookmark' title='Permanent Link: Dynamically Resize Text'>Dynamically Resize Text</a> <small>.codeText{color:blue;font-weight:normal;width:100%;} .subhead{color:gray;font-weight:bold;text-decoration:underline;} CSS, combined with little JavaScript, offers great flexibility...</small></li>
</ul>]]></description>
			<content:encoded><![CDATA[<div class="wpbuzzer_button" style="float: right"><a title="Post on Google Buzz" class="google-buzz-button" href="http://www.google.com/buzz/post" data-button-style="normal-count" data-url="http://www.zparacha.com/reset-css-a-simple-solution-to-browsers-inconsistencies/" data-imageurl=""></a><script type="text/javascript" src="http://www.google.com/buzz/api/button.js"></script></div><p>One of the challenges web designers face is to get various web browsers  render their web pages in a consistent manner.  The reason is every browser assigns slightly different default styles to certain page elements. </p>
<p><!--adsense#greyLeft--><br />
A simple approach to handle this cross-browser inconsistency is to overwrite browsers&#8217; default styles. This technique is known as  <b>resetting <a id="aptureLink_W5qO178ej4" href="http://www.amazon.com/gp/product/1430223979?tag=zaheparc-20">CSS</a></b>. To me it is more like setting a starting point for your web page being rendered by various browser. By setting <i>(or resetting)</i> the base styles you start with a consistent base for each browser.<span id="more-989"></span><br />
Now the question is how to reset browser&#8217;s default style. <a href="http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/">Eric Meyer</a> created the following style sheet to reset browsers&#8217; default CSS style. </p>
<pre name="code" class="css">

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}
/* remember to define focus styles! */
:focus {
	outline: 0;
}
body {
	line-height: 1;
	color: black;
	background: white;
}
ol, ul {
	list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
</pre>
<p>Many web developers considered this as the standard reset style sheet. Save this CSS as reset.css and include this file in your header file (or header section of every web page). Make sure that this style sheet comes before your other style sheets otherwise it will overwrite your styles. </p>
<p><!--adsense#tla--></p>
<div class="tweetmeme_button" style="float:right; margin: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.zparacha.com%2Freset-css-a-simple-solution-to-browsers-inconsistencies%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.zparacha.com%2Freset-css-a-simple-solution-to-browsers-inconsistencies%2F&amp;source=zparacha&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="Reset CSS: A simple solution to browsers inconsistencies." alt=" Reset CSS: A simple solution to browsers inconsistencies." /><br />
			</a>
		</div>
<p><a href="http://www.zparacha.com/reset-css-a-simple-solution-to-browsers-inconsistencies/">Reset CSS: A simple solution to browsers&#8217; inconsistencies.</a> is a post from: <a href="http://www.zparacha.com">zParacha.com | Effective programming and blogging tips by Zaheer Paracha</a></p>
<img src="http://www.zparacha.com/?ak_action=api_record_view&id=989&type=feed" alt=" Reset CSS: A simple solution to browsers inconsistencies."  title="Reset CSS: A simple solution to browsers inconsistencies." />

<p><span style="font-weight:bold;"> Related posts:</span><ul><li><a href='http://www.zparacha.com/blogging_tips-2/' rel='bookmark' title='Permanent Link: Simple tips to make you a better blogger.'>Simple tips to make you a better blogger.</a> <small>Image credit:Kelly Sims To become a successful blogger is not...</small></li>
<li><a href='http://www.zparacha.com/how-to-position-html-element-in-the-center-using-css/' rel='bookmark' title='Permanent Link: How to position HTML element in the center using CSS.'>How to position HTML element in the center using CSS.</a> <small>Positioning text in the center of an element is easily...</small></li>
<li><a href='http://www.zparacha.com/css-text-resize/' rel='bookmark' title='Permanent Link: Dynamically Resize Text'>Dynamically Resize Text</a> <small>.codeText{color:blue;font-weight:normal;width:100%;} .subhead{color:gray;font-weight:bold;text-decoration:underline;} CSS, combined with little JavaScript, offers great flexibility...</small></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://www.zparacha.com/reset-css-a-simple-solution-to-browsers-inconsistencies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make your stylesheet a work of art.</title>
		<link>http://www.zparacha.com/css_best_practices/</link>
		<comments>http://www.zparacha.com/css_best_practices/#comments</comments>
		<pubDate>Sun, 09 Dec 2007 05:50:48 +0000</pubDate>
		<dc:creator>Zaheer</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS best pratices]]></category>
		<category><![CDATA[stylesheet design]]></category>

		<guid isPermaLink="false">http://www.zparacha.com/css_best_practices/</guid>
		<description><![CDATA[Jina Bolton at Vitamin.com has an excellent post for all CSS developers. She described how you can write well structured stylesheets which are more efficient and easy to maintain. Some of the tips may look intuitive but many times we all need reminder to get the basics right. In my<a href="http://www.zparacha.com/css_best_practices/"> Continue Reading <span style="font-size:1.35em;">&#187;</span></a><p><a href="http://www.zparacha.com/css_best_practices/">Make your stylesheet a work of art.</a> is a post from: <a href="http://www.zparacha.com">zParacha.com | Effective programming and blogging tips by Zaheer Paracha</a></p>



<span style="font-weight:bold;"> Related posts:</span><ul><li><a href='http://www.zparacha.com/make-adsense-deluxe-plugin-work-with-wordpress-2-8-5/' rel='bookmark' title='Permanent Link: Make AdSense Deluxe plugin work with WordPress 2.8.5'>Make AdSense Deluxe plugin work with WordPress 2.8.5</a> <small>Recently I upgraded to WordPress 2.8.5. The upgrade process itself...</small></li>
<li><a href='http://www.zparacha.com/improve_javascript_code/' rel='bookmark' title='Permanent Link: Improve your JavaScript code.'>Improve your JavaScript code.</a> <small>Christian Heilmann compiled a list of seven rules for unobtrusive...</small></li>
<li><a href='http://www.zparacha.com/about-zaheer-paracha/' rel='bookmark' title='Permanent Link: About'>About</a> <small>Hi, I’m Zaheer Paracha, I am the founder of zParacha.com....</small></li>
</ul>]]></description>
			<content:encoded><![CDATA[<div class="wpbuzzer_button" style="float: right"><a title="Post on Google Buzz" class="google-buzz-button" href="http://www.google.com/buzz/post" data-button-style="normal-count" data-url="http://www.zparacha.com/css_best_practices/" data-imageurl=""></a><script type="text/javascript" src="http://www.google.com/buzz/api/button.js"></script></div><p><!--adsense#green1-->	Jina Bolton at <a href="http://www.thinkvitamin.com/features/design/creating-sexy-stylesheets">Vitamin.com</a> has an excellent post for all CSS  developers. She described how you can write well structured stylesheets which are more efficient and easy to maintain. Some of the tips may look intuitive but many times we all need reminder to  get the basics right. In my experience lot of developers do not give enough importance to structured and well written CSS. I recommend that you read this <a href="http://www.thinkvitamin.com/features/design/creating-sexy-stylesheets"> article</a>.  By following her tips you can be a more productive CSS expert.
<div class="tweetmeme_button" style="float:right; margin: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.zparacha.com%2Fcss_best_practices%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.zparacha.com%2Fcss_best_practices%2F&amp;source=zparacha&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="Make your stylesheet a work of art." alt=" Make your stylesheet a work of art." /><br />
			</a>
		</div>
<p><a href="http://www.zparacha.com/css_best_practices/">Make your stylesheet a work of art.</a> is a post from: <a href="http://www.zparacha.com">zParacha.com | Effective programming and blogging tips by Zaheer Paracha</a></p>
<img src="http://www.zparacha.com/?ak_action=api_record_view&id=44&type=feed" alt=" Make your stylesheet a work of art."  title="Make your stylesheet a work of art." />

<p><span style="font-weight:bold;"> Related posts:</span><ul><li><a href='http://www.zparacha.com/make-adsense-deluxe-plugin-work-with-wordpress-2-8-5/' rel='bookmark' title='Permanent Link: Make AdSense Deluxe plugin work with WordPress 2.8.5'>Make AdSense Deluxe plugin work with WordPress 2.8.5</a> <small>Recently I upgraded to WordPress 2.8.5. The upgrade process itself...</small></li>
<li><a href='http://www.zparacha.com/improve_javascript_code/' rel='bookmark' title='Permanent Link: Improve your JavaScript code.'>Improve your JavaScript code.</a> <small>Christian Heilmann compiled a list of seven rules for unobtrusive...</small></li>
<li><a href='http://www.zparacha.com/about-zaheer-paracha/' rel='bookmark' title='Permanent Link: About'>About</a> <small>Hi, I’m Zaheer Paracha, I am the founder of zParacha.com....</small></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://www.zparacha.com/css_best_practices/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Rounded Box Generator</title>
		<link>http://www.zparacha.com/rounded-corner-css/</link>
		<comments>http://www.zparacha.com/rounded-corner-css/#comments</comments>
		<pubDate>Tue, 20 Nov 2007 00:47:17 +0000</pubDate>
		<dc:creator>Zaheer</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS rounded corners]]></category>
		<category><![CDATA[rounded-box]]></category>
		<category><![CDATA[rounded-corners]]></category>

		<guid isPermaLink="false">http://www.zparacha.com/rounded-corner-css/</guid>
		<description><![CDATA[A nice little tool to create rounded boxes for your website. You can choose the background color for your box. The tool will generate the CSS code and a sample HTML page. Generating rounded-box has never been easier. CSS Rounded Box Generator CSS Rounded Box Generator is a post from:<a href="http://www.zparacha.com/rounded-corner-css/"> Continue Reading <span style="font-size:1.35em;">&#187;</span></a><p><a href="http://www.zparacha.com/rounded-corner-css/">CSS Rounded Box Generator</a> is a post from: <a href="http://www.zparacha.com">zParacha.com | Effective programming and blogging tips by Zaheer Paracha</a></p>



<span style="font-weight:bold;"> Related posts:</span><ul><li><a href='http://www.zparacha.com/about-zaheer-paracha/' rel='bookmark' title='Permanent Link: About'>About</a> <small>Hi, I’m Zaheer Paracha, I am the founder of zParacha.com....</small></li>
<li><a href='http://www.zparacha.com/java-remains-1-programming-language/' rel='bookmark' title='Permanent Link: #1 Programming Language &#8211; Java'>#1 Programming Language &#8211; Java</a> <small>According to TIOBE Programming Community Index Java is still the...</small></li>
<li><a href='http://www.zparacha.com/easily_twitter_posts/' rel='bookmark' title='Permanent Link: Automatically twitter your posts'>Automatically twitter your posts</a> <small>Twitter is a wonderful tool to promote your blog. Typically...</small></li>
</ul>]]></description>
			<content:encoded><![CDATA[<div class="wpbuzzer_button" style="float: right"><a title="Post on Google Buzz" class="google-buzz-button" href="http://www.google.com/buzz/post" data-button-style="normal-count" data-url="http://www.zparacha.com/rounded-corner-css/" data-imageurl=""></a><script type="text/javascript" src="http://www.google.com/buzz/api/button.js"></script></div><p>A nice little tool to create rounded boxes for your website. <!--adsense#green1-->	You can choose the background color for your box. The tool will generate the CSS code and a sample HTML page. Generating rounded-box has never been easier.<br />
<a href="http://www.neuroticweb.com/recursos/css-rounded-box/index.php?idioma=en">CSS Rounded Box Generator</a></p>
<p><!--adsense-->
<div class="tweetmeme_button" style="float:right; margin: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.zparacha.com%2Frounded-corner-css%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.zparacha.com%2Frounded-corner-css%2F&amp;source=zparacha&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="CSS Rounded Box Generator" alt=" CSS Rounded Box Generator" /><br />
			</a>
		</div>
<p><a href="http://www.zparacha.com/rounded-corner-css/">CSS Rounded Box Generator</a> is a post from: <a href="http://www.zparacha.com">zParacha.com | Effective programming and blogging tips by Zaheer Paracha</a></p>
<img src="http://www.zparacha.com/?ak_action=api_record_view&id=39&type=feed" alt=" CSS Rounded Box Generator"  title="CSS Rounded Box Generator" />

<p><span style="font-weight:bold;"> Related posts:</span><ul><li><a href='http://www.zparacha.com/about-zaheer-paracha/' rel='bookmark' title='Permanent Link: About'>About</a> <small>Hi, I’m Zaheer Paracha, I am the founder of zParacha.com....</small></li>
<li><a href='http://www.zparacha.com/java-remains-1-programming-language/' rel='bookmark' title='Permanent Link: #1 Programming Language &#8211; Java'>#1 Programming Language &#8211; Java</a> <small>According to TIOBE Programming Community Index Java is still the...</small></li>
<li><a href='http://www.zparacha.com/easily_twitter_posts/' rel='bookmark' title='Permanent Link: Automatically twitter your posts'>Automatically twitter your posts</a> <small>Twitter is a wonderful tool to promote your blog. Typically...</small></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://www.zparacha.com/rounded-corner-css/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Creating Cross Browser Compatible CSS Text Shadows</title>
		<link>http://www.zparacha.com/css-text-shadow/</link>
		<comments>http://www.zparacha.com/css-text-shadow/#comments</comments>
		<pubDate>Wed, 14 Nov 2007 17:50:28 +0000</pubDate>
		<dc:creator>Zaheer</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[CCS text shadow]]></category>
		<category><![CDATA[text-shadow]]></category>

		<guid isPermaLink="false">http://www.zparacha.com/creating-cross-browser-compatible-css-text-shadows-2/</guid>
		<description><![CDATA[Sometimes it is nice to jazz up your website by giving text some graphical looks without actually using images. The CSS2 text-shadow property allows you to create shadow for your text. Unfortunately so far the only browser that supports this property is Safari. You can find tutorials on the web<a href="http://www.zparacha.com/css-text-shadow/"> Continue Reading <span style="font-size:1.35em;">&#187;</span></a><p><a href="http://www.zparacha.com/css-text-shadow/">Creating Cross Browser Compatible CSS Text Shadows</a> is a post from: <a href="http://www.zparacha.com">zParacha.com | Effective programming and blogging tips by Zaheer Paracha</a></p>



<span style="font-weight:bold;"> Related posts:</span><ul><li><a href='http://www.zparacha.com/css-text-resize/' rel='bookmark' title='Permanent Link: Dynamically Resize Text'>Dynamically Resize Text</a> <small>.codeText{color:blue;font-weight:normal;width:100%;} .subhead{color:gray;font-weight:bold;text-decoration:underline;} CSS, combined with little JavaScript, offers great flexibility...</small></li>
<li><a href='http://www.zparacha.com/textfield_focus/' rel='bookmark' title='Permanent Link: Set focus on the first text field of HTML form.'>Set focus on the first text field of HTML form.</a> <small>A HTML form is a very good channel that you...</small></li>
<li><a href='http://www.zparacha.com/about-zaheer-paracha/' rel='bookmark' title='Permanent Link: About'>About</a> <small>Hi, I’m Zaheer Paracha, I am the founder of zParacha.com....</small></li>
</ul>]]></description>
			<content:encoded><![CDATA[<div class="wpbuzzer_button" style="float: right"><a title="Post on Google Buzz" class="google-buzz-button" href="http://www.google.com/buzz/post" data-button-style="normal-count" data-url="http://www.zparacha.com/css-text-shadow/" data-imageurl=""></a><script type="text/javascript" src="http://www.google.com/buzz/api/button.js"></script></div><p>Sometimes it is nice to jazz up your website by giving text some graphical looks without actually using images. <!--adsense#green1-->	The CSS2 text-shadow property allows you to create shadow for your text. Unfortunately so far the only browser that supports this property is Safari. You can find tutorials on the web that show you how to create CSS text shadow but usually they only deal with one or two browsers. I stumbled upon this nice article that explains cross-browser compatible CSS text shadows. It has CSS code to handle all major browsers.</p>
<p><a href="http://www.workingwith.me.uk/articles/css/cross-browser-drop-shadows">Creating Cross Browser Compatible CSS Text Shadows</a><br />
<!--adsense-->
<div class="tweetmeme_button" style="float:right; margin: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.zparacha.com%2Fcss-text-shadow%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.zparacha.com%2Fcss-text-shadow%2F&amp;source=zparacha&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="Creating Cross Browser Compatible CSS Text Shadows" alt=" Creating Cross Browser Compatible CSS Text Shadows" /><br />
			</a>
		</div>
<p><a href="http://www.zparacha.com/css-text-shadow/">Creating Cross Browser Compatible CSS Text Shadows</a> is a post from: <a href="http://www.zparacha.com">zParacha.com | Effective programming and blogging tips by Zaheer Paracha</a></p>
<img src="http://www.zparacha.com/?ak_action=api_record_view&id=35&type=feed" alt=" Creating Cross Browser Compatible CSS Text Shadows"  title="Creating Cross Browser Compatible CSS Text Shadows" />

<p><span style="font-weight:bold;"> Related posts:</span><ul><li><a href='http://www.zparacha.com/css-text-resize/' rel='bookmark' title='Permanent Link: Dynamically Resize Text'>Dynamically Resize Text</a> <small>.codeText{color:blue;font-weight:normal;width:100%;} .subhead{color:gray;font-weight:bold;text-decoration:underline;} CSS, combined with little JavaScript, offers great flexibility...</small></li>
<li><a href='http://www.zparacha.com/textfield_focus/' rel='bookmark' title='Permanent Link: Set focus on the first text field of HTML form.'>Set focus on the first text field of HTML form.</a> <small>A HTML form is a very good channel that you...</small></li>
<li><a href='http://www.zparacha.com/about-zaheer-paracha/' rel='bookmark' title='Permanent Link: About'>About</a> <small>Hi, I’m Zaheer Paracha, I am the founder of zParacha.com....</small></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://www.zparacha.com/css-text-shadow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dynamically Resize Text</title>
		<link>http://www.zparacha.com/css-text-resize/</link>
		<comments>http://www.zparacha.com/css-text-resize/#comments</comments>
		<pubDate>Wed, 07 Nov 2007 05:30:10 +0000</pubDate>
		<dc:creator>Zaheer</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[change text size]]></category>
		<category><![CDATA[dynamic CSS]]></category>
		<category><![CDATA[dynamic text size]]></category>
		<category><![CDATA[resize text]]></category>

		<guid isPermaLink="false">http://www.zparacha.com/css-text-resize/</guid>
		<description><![CDATA[.codeText{color:blue;font-weight:normal;width:100%;} .subhead{color:gray;font-weight:bold;text-decoration:underline;} CSS, combined with little JavaScript, offers great flexibility to web designers. For instance, let say you want to allow visitors to change text size on your website. Now how do you do it? Using CSS is the easiest solution. All you need is few style sheets and a<a href="http://www.zparacha.com/css-text-resize/"> Continue Reading <span style="font-size:1.35em;">&#187;</span></a><p><a href="http://www.zparacha.com/css-text-resize/">Dynamically Resize Text</a> is a post from: <a href="http://www.zparacha.com">zParacha.com | Effective programming and blogging tips by Zaheer Paracha</a></p>



<span style="font-weight:bold;"> Related posts:</span><ul><li><a href='http://www.zparacha.com/textfield_focus/' rel='bookmark' title='Permanent Link: Set focus on the first text field of HTML form.'>Set focus on the first text field of HTML form.</a> <small>A HTML form is a very good channel that you...</small></li>
<li><a href='http://www.zparacha.com/dynamically-loading-an-external-javascript-or-css-file/' rel='bookmark' title='Permanent Link: Dynamically loading an external JavaScript or CSS file'>Dynamically loading an external JavaScript or CSS file</a> <small>A very good article explaining how to load JavaScript and...</small></li>
<li><a href='http://www.zparacha.com/css-text-shadow/' rel='bookmark' title='Permanent Link: Creating Cross Browser Compatible CSS Text Shadows'>Creating Cross Browser Compatible CSS Text Shadows</a> <small>Sometimes it is nice to jazz up your website by...</small></li>
</ul>]]></description>
			<content:encoded><![CDATA[<div class="wpbuzzer_button" style="float: right"><a title="Post on Google Buzz" class="google-buzz-button" href="http://www.google.com/buzz/post" data-button-style="normal-count" data-url="http://www.zparacha.com/css-text-resize/" data-imageurl=""></a><script type="text/javascript" src="http://www.google.com/buzz/api/button.js"></script></div><p><!--adsense#green1--><br />
<style>   .codeText{color:blue;font-weight:normal;width:100%;}  .subhead{color:gray;font-weight:bold;text-decoration:underline;}</style>
<p>CSS, combined with little JavaScript, offers great flexibility to web designers. For instance, let say you want to allow visitors to change text size on your website. Now how do you do it? Using CSS is the easiest solution.<br />
All you need is few style sheets and a JS script to dynamically enable those style sheets. Sounds daunting? Believe me it is very simple and easy to implement. Let me walk you through the process.</p>
<p>In this tutorial we&#8217;ll create a simple web page with options to select one of the three text sizes.<br />
Let&#8217;s start with creating a simple HTML page.</p>
<blockquote><p>&lt;HTML&gt;<br />
&lt;BODY&gt;<br />
Lorem ipsum dolor sit amet, consectetuer adipiscing elit.<br />
Sed a risus eu dolor viverra volutpat.In a tellus ut augue dignissim nonummy.<br />
&lt;/BODY&gt;<br />
&lt;/HTML&gt;</p></blockquote>
<p>Assuming that we have three CSS files named style.css, sStyle.css and lStyle.css.<br />
In mStyle.css and lStyle.css you only need one line if all you want is to change the text size.<br />
So sStyle.css may have .body {font-size:small;}<br />
and lStyle.css may have .body{font-size:large;}<br />
By default the font-size value is medium. To reference these style sheets from our HTML,</p>
<p>we add them to the &#8220;head&#8221; section of our HTML. So our code will become:</p>
<blockquote><p>&lt;HTML&gt;<br />
&lt;HEAD&gt;<br />
&lt;link rel=&#8221;stylesheet&#8221; type=&#8221;text/css&#8221; href=&#8221;mystyles.css&#8221; media=&#8221;screen&#8221; /&gt;<br />
&lt;link rel=&#8221;alternate stylesheet&#8221; type=&#8221;text/css&#8221;<br />
href=&#8221;mystyle_xl.css&#8221; media=&#8221;screen&#8221; title=&#8221;medium&#8221; /&gt;<br />
&lt;link rel=&#8221;alternate stylesheet&#8221; type=&#8221;text/css&#8221; href=&#8221;mystyle_xxl.css&#8221; media=&#8221;screen&#8221; title=&#8221;large&#8221;/&gt;<br />
&lt;/HEAD&gt;<br />
&lt;BODY&gt;<br />
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Sed a risus eu dolor viverra volutpat.In a tellus ut augue dignissim nonummy.<br />
&lt;/BODY&gt;<br />
&lt;/HTML&gt;</p></blockquote>
<p>To associate the style sheets to our web page we added the link elements in the header section. Style sheets can be added to a web page in one of the following three ways.</p>
<ol>
<li><span class="subhead">Persistent:</span> This is the default style sheet and is always &#8216;on&#8217;. You just need to set <em>rel</em> attribute to <strong>&#8216;stylesheet&#8217;</strong> to make a style sheet persistent for your web page. You can use this style sheet for common rules shared by all style sheets.</li>
<li><span class="subhead">Preferred:</span> This type of style sheet is enabled by default and can be &#8216;turned-off&#8217; if the user selects an<br />
alternate style sheet. To make a style sheet preferred you need to include a <em>title</em> attribute in the link element.</li>
<li><span class="subhead">Alternate:</span> This type of style sheet can be selected by the user as alternative to the default or preferred style sheet. This is the type that we will use in this example. To declare a style sheet as alternative set the <em>rel</em> attribute to <strong>&#8216;alternate stylesheet&#8217;</strong> and give a title to the style sheet. (See lines 2 and 3 in the header section above.)</li>
</ol>
<p>When our web page loads the rules in the persistent style sheet will be applied to the page. Now let us add links to our page to allow user to change text size.</p>
<blockquote><p>&lt;HTML&gt;<br />
&lt;HEAD&gt;<br />
&lt;link rel=&#8221;stylesheet&#8221; type=&#8221;text/css&#8221; href=&#8221;mystyles.css&#8221; media=&#8221;screen&#8221; /&gt;<br />
&lt;link rel=&#8221;alternate stylesheet&#8221; type=&#8221;text/css&#8221; href=&#8221;mystyle_xl.css&#8221; media=&#8221;screen&#8221; title=&#8221;medium&#8221; /&gt;<br />
&lt;link rel=&#8221;alternate stylesheet&#8221; type=&#8221;text/css&#8221; href=&#8221;mystyle_xxl.css&#8221; media=&#8221;screen&#8221; title=&#8221;large&#8221;/&gt;<br />
&lt;/HEAD&gt;<br />
&lt;BODY&gt;<br />
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Sed a risus eu dolor viverra volutpat.In a tellus ut augue dignissim nonummy.<br />
&lt;a href=&#8221;#&#8221; onClick=&#8221;enableSelectedStyle(&#8216;default&#8217;); return false;&#8221;&gt;Small&lt;/a&gt;<br />
&lt;a href=&#8221;#&#8221; onClick=&#8221;enableSelectedStyle(&#8216;medium&#8217;); return false;&#8221;&gt;Medium&lt;/a&gt;<br />
&lt;a href=&#8221;#&#8221; onClick=&#8221;enableSelectedStyle(&#8216;large&#8217;); return false;&#8221;&gt;Large&lt;/a&gt;<br />
&lt;/BODY&gt;<br />
&lt;/HTML&gt;</p></blockquote>
<p>We added three links to our page and each link invokes a Javascript method to swap the style sheet. Here is the JavaScript code.</p>
<blockquote><p>function enableSelectedStyle(title){<br />
var i, linkSheets, ss, title;<br />
linkSheets = document.getElementsByTagName(&#8220;link&#8221;);<br />
for(i=0; i&lt;linkSheets.length;i++){<br />
ss = linkSheets[i];<br />
var b = ss.getAttribute(&#8220;title&#8221;);<br />
if(b == null) continue;<br />
if(b == title) ss.disabled = false;<br />
else ss.disabled = true;<br />
}<br />
}</p></blockquote>
<h3>Script Explained:</h3>
<p>The script retrieves all &#8220;link&#8221; elements of the document and then loop through them. If the element has a title attribute and its value is same as the input value, it activates that style. If the title value is different from the input value it disables that style sheet. Since the default style sheet link does not have &#8216;title&#8217; attribute the script will not change it.</p>
<p>Here is the final code</p>
<blockquote><p>&lt;HTML&gt;&lt;HEAD&gt;<br />
&lt;script language=&#8221;JavaScript&#8221;&gt;<br />
function enableSelectedStyle(title){<br />
var i, linkSheets, ss, title;<br />
linkSheets = document.getElementsByTagName(&#8220;link&#8221;);<br />
for(i=0; i&lt;linkSheets.length;i++){<br />
ss = linkSheets[i];<br />
var b = ss.getAttribute(&#8220;title&#8221;);<br />
if(b == null) continue;<br />
if(b == title) ss.disabled = false;<br />
else ss.disabled = true;<br />
}<br />
}<br />
&lt;/script&gt;<br />
&lt;link rel=&#8221;stylesheet&#8221; type=&#8221;text/css&#8221; href=&#8221;mystyles.css&#8221; media=&#8221;screen&#8221; /&gt;<br />
&lt;link rel=&#8221;alternate stylesheet&#8221; type=&#8221;text/css&#8221; href=&#8221;mystyle_xl.css&#8221; media=&#8221;screen&#8221; title=&#8221;medium&#8221; /&gt;<br />
&lt;link rel=&#8221;alternate stylesheet&#8221; type=&#8221;text/css&#8221; href=&#8221;mystyle_xxl.css&#8221; media=&#8221;screen&#8221; title=&#8221;large&#8221;/&gt;<br />
&lt;/HEAD&gt;<br />
&lt;BODY&gt;<br />
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Sed a risus eu dolor viverra volutpat.In a tellus ut augue dignissim nonummy.<br />
&lt;a href=&#8221;#&#8221; onClick=&#8221;enableSelectedStyle(&#8216;default&#8217;); return false;&#8221;&gt;Small&lt;/a&gt;<br />
&lt;a href=&#8221;#&#8221; onClick=&#8221;enableSelectedStyle(&#8216;medium&#8217;); return false;&#8221;&gt;Medium&lt;/a&gt;<br />
&lt;a href=&#8221;#&#8221; onClick=&#8221;enableSelectedStyle(&#8216;large&#8217;); return false;&#8221;&gt;Large&lt;/a&gt;<br />
&lt;/BODY&gt;<br />
&lt;/HTML&gt;</p></blockquote>
<p><!--adsense#text_ad-->
<div class="tweetmeme_button" style="float:right; margin: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.zparacha.com%2Fcss-text-resize%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.zparacha.com%2Fcss-text-resize%2F&amp;source=zparacha&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="Dynamically Resize Text" alt=" Dynamically Resize Text" /><br />
			</a>
		</div>
<p><a href="http://www.zparacha.com/css-text-resize/">Dynamically Resize Text</a> is a post from: <a href="http://www.zparacha.com">zParacha.com | Effective programming and blogging tips by Zaheer Paracha</a></p>
<img src="http://www.zparacha.com/?ak_action=api_record_view&id=29&type=feed" alt=" Dynamically Resize Text"  title="Dynamically Resize Text" />

<p><span style="font-weight:bold;"> Related posts:</span><ul><li><a href='http://www.zparacha.com/textfield_focus/' rel='bookmark' title='Permanent Link: Set focus on the first text field of HTML form.'>Set focus on the first text field of HTML form.</a> <small>A HTML form is a very good channel that you...</small></li>
<li><a href='http://www.zparacha.com/dynamically-loading-an-external-javascript-or-css-file/' rel='bookmark' title='Permanent Link: Dynamically loading an external JavaScript or CSS file'>Dynamically loading an external JavaScript or CSS file</a> <small>A very good article explaining how to load JavaScript and...</small></li>
<li><a href='http://www.zparacha.com/css-text-shadow/' rel='bookmark' title='Permanent Link: Creating Cross Browser Compatible CSS Text Shadows'>Creating Cross Browser Compatible CSS Text Shadows</a> <small>Sometimes it is nice to jazz up your website by...</small></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://www.zparacha.com/css-text-resize/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cascading Style Sheet Cheatsheet</title>
		<link>http://www.zparacha.com/cascading-style-cheatsheet/</link>
		<comments>http://www.zparacha.com/cascading-style-cheatsheet/#comments</comments>
		<pubDate>Fri, 26 Oct 2007 22:18:30 +0000</pubDate>
		<dc:creator>Zaheer</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[cascading_style_sheet]]></category>
		<category><![CDATA[Cheatsheet]]></category>

		<guid isPermaLink="false">http://www.zparacha.com/blog/2007/10/26/cascading-style-cheatsheet/</guid>
		<description><![CDATA[If you need quick reference CSS guide, look no further. This CSS cheat sheet is a comprehensive list of all CSS properties. Accompanying brief explanation adds value to this cheat sheet. You may want to bookmark this page. Cascading Style Cheatsheet Cascading Style Sheet Cheatsheet is a post from: zParacha.com<a href="http://www.zparacha.com/cascading-style-cheatsheet/"> Continue Reading <span style="font-size:1.35em;">&#187;</span></a><p><a href="http://www.zparacha.com/cascading-style-cheatsheet/">Cascading Style Sheet Cheatsheet</a> is a post from: <a href="http://www.zparacha.com">zParacha.com | Effective programming and blogging tips by Zaheer Paracha</a></p>



<span style="font-weight:bold;"> Related posts:</span><ul><li><a href='http://www.zparacha.com/improve-your-writing-style-easily/' rel='bookmark' title='Permanent Link: Improve your writing style without breaking a sweat.'>Improve your writing style without breaking a sweat.</a> <small>Image credit:Mooganic Nothing is more embarrassing than a misspelled word...</small></li>
<li><a href='http://www.zparacha.com/about-zaheer-paracha/' rel='bookmark' title='Permanent Link: About'>About</a> <small>Hi, I’m Zaheer Paracha, I am the founder of zParacha.com....</small></li>
<li><a href='http://www.zparacha.com/reset-css-a-simple-solution-to-browsers-inconsistencies/' rel='bookmark' title='Permanent Link: Reset CSS: A simple solution to browsers&#8217; inconsistencies.'>Reset CSS: A simple solution to browsers&#8217; inconsistencies.</a> <small>One of the challenges web designers face is to get...</small></li>
</ul>]]></description>
			<content:encoded><![CDATA[<div class="wpbuzzer_button" style="float: right"><a title="Post on Google Buzz" class="google-buzz-button" href="http://www.google.com/buzz/post" data-button-style="normal-count" data-url="http://www.zparacha.com/cascading-style-cheatsheet/" data-imageurl=""></a><script type="text/javascript" src="http://www.google.com/buzz/api/button.js"></script></div><p><!--adsense#green1-->	If you need quick reference CSS guide, look no further. This CSS cheat sheet is a comprehensive list of all CSS properties.  Accompanying brief explanation adds value to this cheat sheet. You may want to bookmark this page.</p>
<p><a href="http://home.tampabay.rr.com/bmerkey/cheatsheet.htm">Cascading Style Cheatsheet</a>
<div class="tweetmeme_button" style="float:right; margin: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.zparacha.com%2Fcascading-style-cheatsheet%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.zparacha.com%2Fcascading-style-cheatsheet%2F&amp;source=zparacha&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="Cascading Style Sheet Cheatsheet" alt=" Cascading Style Sheet Cheatsheet" /><br />
			</a>
		</div>
<p><a href="http://www.zparacha.com/cascading-style-cheatsheet/">Cascading Style Sheet Cheatsheet</a> is a post from: <a href="http://www.zparacha.com">zParacha.com | Effective programming and blogging tips by Zaheer Paracha</a></p>
<img src="http://www.zparacha.com/?ak_action=api_record_view&id=8&type=feed" alt=" Cascading Style Sheet Cheatsheet"  title="Cascading Style Sheet Cheatsheet" />

<p><span style="font-weight:bold;"> Related posts:</span><ul><li><a href='http://www.zparacha.com/improve-your-writing-style-easily/' rel='bookmark' title='Permanent Link: Improve your writing style without breaking a sweat.'>Improve your writing style without breaking a sweat.</a> <small>Image credit:Mooganic Nothing is more embarrassing than a misspelled word...</small></li>
<li><a href='http://www.zparacha.com/about-zaheer-paracha/' rel='bookmark' title='Permanent Link: About'>About</a> <small>Hi, I’m Zaheer Paracha, I am the founder of zParacha.com....</small></li>
<li><a href='http://www.zparacha.com/reset-css-a-simple-solution-to-browsers-inconsistencies/' rel='bookmark' title='Permanent Link: Reset CSS: A simple solution to browsers&#8217; inconsistencies.'>Reset CSS: A simple solution to browsers&#8217; inconsistencies.</a> <small>One of the challenges web designers face is to get...</small></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://www.zparacha.com/cascading-style-cheatsheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dynamically loading an external JavaScript or CSS file</title>
		<link>http://www.zparacha.com/dynamically-loading-an-external-javascript-or-css-file/</link>
		<comments>http://www.zparacha.com/dynamically-loading-an-external-javascript-or-css-file/#comments</comments>
		<pubDate>Fri, 26 Oct 2007 17:38:29 +0000</pubDate>
		<dc:creator>Zaheer</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[]]></category>
		<category><![CDATA[asynchronous loading]]></category>
		<category><![CDATA[Dynamically load JS]]></category>

		<guid isPermaLink="false">http://www.zparacha.com/blog/?p=5</guid>
		<description><![CDATA[A very good article explaining how to load JavaScript and CSS files asynchronously and on demand. Dynamically loading an external JavaScript or CSS file Dynamically loading an external JavaScript or CSS file is a post from: zParacha.com &#124; Effective programming and blogging tips by Zaheer Paracha Related posts:Improve your JavaScript<a href="http://www.zparacha.com/dynamically-loading-an-external-javascript-or-css-file/"> Continue Reading <span style="font-size:1.35em;">&#187;</span></a><p><a href="http://www.zparacha.com/dynamically-loading-an-external-javascript-or-css-file/">Dynamically loading an external JavaScript or CSS file</a> is a post from: <a href="http://www.zparacha.com">zParacha.com | Effective programming and blogging tips by Zaheer Paracha</a></p>



<span style="font-weight:bold;"> Related posts:</span><ul><li><a href='http://www.zparacha.com/improve_javascript_code/' rel='bookmark' title='Permanent Link: Improve your JavaScript code.'>Improve your JavaScript code.</a> <small>Christian Heilmann compiled a list of seven rules for unobtrusive...</small></li>
<li><a href='http://www.zparacha.com/css-text-resize/' rel='bookmark' title='Permanent Link: Dynamically Resize Text'>Dynamically Resize Text</a> <small>.codeText{color:blue;font-weight:normal;width:100%;} .subhead{color:gray;font-weight:bold;text-decoration:underline;} CSS, combined with little JavaScript, offers great flexibility...</small></li>
<li><a href='http://www.zparacha.com/include-externaljar-file-in-maven/' rel='bookmark' title='Permanent Link: How to add external jar files to Maven project POM'>How to add external jar files to Maven project POM</a> <small>Maven has made compiling Java projects almost an effortless job....</small></li>
</ul>]]></description>
			<content:encoded><![CDATA[<div class="wpbuzzer_button" style="float: right"><a title="Post on Google Buzz" class="google-buzz-button" href="http://www.google.com/buzz/post" data-button-style="normal-count" data-url="http://www.zparacha.com/dynamically-loading-an-external-javascript-or-css-file/" data-imageurl=""></a><script type="text/javascript" src="http://www.google.com/buzz/api/button.js"></script></div><p>A very good article explaining how to load JavaScript and CSS files asynchronously and on demand.<!--adsense#green1--></p>
<p><strong><a href="http://www.javascriptkit.com/javatutors/loadjavascriptcss.shtml">Dynamically loading an external JavaScript or CSS file</a></strong>
<div class="tweetmeme_button" style="float:right; margin: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.zparacha.com%2Fdynamically-loading-an-external-javascript-or-css-file%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.zparacha.com%2Fdynamically-loading-an-external-javascript-or-css-file%2F&amp;source=zparacha&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="Dynamically loading an external JavaScript or CSS file" alt=" Dynamically loading an external JavaScript or CSS file" /><br />
			</a>
		</div>
<p><a href="http://www.zparacha.com/dynamically-loading-an-external-javascript-or-css-file/">Dynamically loading an external JavaScript or CSS file</a> is a post from: <a href="http://www.zparacha.com">zParacha.com | Effective programming and blogging tips by Zaheer Paracha</a></p>
<img src="http://www.zparacha.com/?ak_action=api_record_view&id=5&type=feed" alt=" Dynamically loading an external JavaScript or CSS file"  title="Dynamically loading an external JavaScript or CSS file" />

<p><span style="font-weight:bold;"> Related posts:</span><ul><li><a href='http://www.zparacha.com/improve_javascript_code/' rel='bookmark' title='Permanent Link: Improve your JavaScript code.'>Improve your JavaScript code.</a> <small>Christian Heilmann compiled a list of seven rules for unobtrusive...</small></li>
<li><a href='http://www.zparacha.com/css-text-resize/' rel='bookmark' title='Permanent Link: Dynamically Resize Text'>Dynamically Resize Text</a> <small>.codeText{color:blue;font-weight:normal;width:100%;} .subhead{color:gray;font-weight:bold;text-decoration:underline;} CSS, combined with little JavaScript, offers great flexibility...</small></li>
<li><a href='http://www.zparacha.com/include-externaljar-file-in-maven/' rel='bookmark' title='Permanent Link: How to add external jar files to Maven project POM'>How to add external jar files to Maven project POM</a> <small>Maven has made compiling Java projects almost an effortless job....</small></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://www.zparacha.com/dynamically-loading-an-external-javascript-or-css-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
