<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Kathirvel K</title>
	<atom:link href="http://kathirpositive.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://kathirpositive.wordpress.com</link>
	<description>Facing Chanllanges with Smile</description>
	<lastBuildDate>Fri, 01 Jul 2011 10:59:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='kathirpositive.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Kathirvel K</title>
		<link>http://kathirpositive.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://kathirpositive.wordpress.com/osd.xml" title="Kathirvel K" />
	<atom:link rel='hub' href='http://kathirpositive.wordpress.com/?pushpress=hub'/>
		<item>
		<title>jQuery Accordion with expand/collapse images</title>
		<link>http://kathirpositive.wordpress.com/2011/07/01/jquery-accordion-using-expandcollapse-images/</link>
		<comments>http://kathirpositive.wordpress.com/2011/07/01/jquery-accordion-using-expandcollapse-images/#comments</comments>
		<pubDate>Fri, 01 Jul 2011 10:56:40 +0000</pubDate>
		<dc:creator>Kathirvel K</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[web design tips and tricks]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://kathirpositive.wordpress.com/?p=298</guid>
		<description><![CDATA[jQuery Code: &#60;script type="text/javascript" &#62; jQuery(document).ready(function() { jQuery(".AccordionMenu .AccordionHeader").click(function() { jQuery(this).css({backgroundImage:"url(Open.png)"}).next("div.AccordionContent").slideDown('slow', function() { if (jQuery(this).is(':visible')) { jQuery(this).siblings("div.AccordionContent").slideUp("slow").siblings(".AccordionHeader").css({backgroundImage:"url(Close.png)"}); jQuery(this).prev(".AccordionHeader").css({backgroundImage:"url(Open.png)"}) } else { jQuery(this).siblings(".AccordionHeader").css({backgroundImage:"url(Close.png)"}); } }); }); }); &#60;/script&#62; CSS Code: &#60;style&#62; .AccordionHeader { background: transparent url(Close.png) center right no-repeat; position:relative;padding: 7px 10px; cursor: pointer; margin:1px; font-weight:bold;color:#FFFFFF;height: 22px; } .AccordionContent { display:none; background: #FFFFFF !important; border: 1px [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kathirpositive.wordpress.com&amp;blog=4994807&amp;post=298&amp;subd=kathirpositive&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>jQuery Code:</strong></p>
<div style="width:500px;overflow:scroll;">
<pre>&lt;script type="text/javascript" &gt;
jQuery(document).ready(function()
{
jQuery(".AccordionMenu .AccordionHeader").click(function()
	{
	jQuery(this).css({backgroundImage:"url(Open.png)"}).next("div.AccordionContent").slideDown('slow', function() {
	if (jQuery(this).is(':visible')) {
		jQuery(this).siblings("div.AccordionContent").slideUp("slow").siblings(".AccordionHeader").css({backgroundImage:"url(Close.png)"});
		jQuery(this).prev(".AccordionHeader").css({backgroundImage:"url(Open.png)"})
	} else {
		jQuery(this).siblings(".AccordionHeader").css({backgroundImage:"url(Close.png)"});
	}

});
	});
});
&lt;/script&gt;</pre>
</div>
<p><strong>CSS Code:</strong></p>
<div style="width:500px;overflow:scroll;">
<pre>&lt;style&gt;
.AccordionHeader { background: transparent  url(Close.png) center right  no-repeat;  position:relative;padding: 7px 10px; cursor: pointer;  margin:1px; font-weight:bold;color:#FFFFFF;height: 22px;  }
.AccordionContent { display:none;  background: #FFFFFF !important; border: 1px solid #B0C5CE; padding: 5px; }
&lt;/style&gt;</pre>
</div>
<p><strong>HTML Code:</strong></p>
<pre>    &lt;div class="AccordionHeader"&gt;My Header &lt;/div&gt;
    &lt;div class="AccordionContent"&gt;
    &lt;p&gt;
    -- your content goes here --
    &lt;/p&gt;
    &lt;div&gt;

    &lt;div class="AccordionHeader"&gt;My Header &lt;/div&gt;
    &lt;div class="AccordionContent"&gt;
    &lt;p&gt;
    -- your content goes here --
    &lt;/p&gt;
    &lt;div&gt;

    &lt;div class="AccordionHeader"&gt;My Header &lt;/div&gt;
    &lt;div class="AccordionContent"&gt;
    &lt;p&gt;
    -- your content goes here --
    &lt;/p&gt;
    &lt;div&gt;

    &lt;div class="AccordionHeader"&gt;My Header &lt;/div&gt;
    &lt;div class="AccordionContent"&gt;
    &lt;p&gt;
    -- your content goes here --
    &lt;/p&gt;
    &lt;div&gt;</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kathirpositive.wordpress.com/298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kathirpositive.wordpress.com/298/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kathirpositive.wordpress.com/298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kathirpositive.wordpress.com/298/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kathirpositive.wordpress.com/298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kathirpositive.wordpress.com/298/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kathirpositive.wordpress.com/298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kathirpositive.wordpress.com/298/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kathirpositive.wordpress.com/298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kathirpositive.wordpress.com/298/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kathirpositive.wordpress.com/298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kathirpositive.wordpress.com/298/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kathirpositive.wordpress.com/298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kathirpositive.wordpress.com/298/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kathirpositive.wordpress.com&amp;blog=4994807&amp;post=298&amp;subd=kathirpositive&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kathirpositive.wordpress.com/2011/07/01/jquery-accordion-using-expandcollapse-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0685f5139eec573f8729a1fdb70dd0e6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Kathirvel K</media:title>
		</media:content>
	</item>
		<item>
		<title>jQuery show more / show less option</title>
		<link>http://kathirpositive.wordpress.com/2011/07/01/jquery-show-more-show-less-option/</link>
		<comments>http://kathirpositive.wordpress.com/2011/07/01/jquery-show-more-show-less-option/#comments</comments>
		<pubDate>Fri, 01 Jul 2011 10:04:51 +0000</pubDate>
		<dc:creator>Kathirvel K</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[web design tips and tricks]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://kathirpositive.wordpress.com/?p=283</guid>
		<description><![CDATA[This is explained how to do show more / show less option using jQuery for dynamically generated texts/links/lists. jQuery code: &#60;script type="text/javascript" &#62; jQuery(function() { var adjustheight = 40; var moreText = &#34;Show More&#34;; var lessText = &#34;Show Less&#34;; jQuery(&#34;.more-less .more-block&#34;).css(&#039;height&#039;, adjustheight).css(&#039;overflow&#039;, &#039;hidden&#039;); var listItem_size = jQuery(&#34;.more-block a&#34;).length if (listItem_size &#60; = 8 ) { [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kathirpositive.wordpress.com&amp;blog=4994807&amp;post=283&amp;subd=kathirpositive&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is explained how to do show more / show less option using jQuery for dynamically generated texts/links/lists.</p>
<p><strong>jQuery code:</strong></p>
<div style="width:500px;overflow:scroll;">
<pre>
&lt;script type="text/javascript" &gt;
jQuery(function() {
var adjustheight = 40;
var moreText = &quot;Show More&quot;;
var lessText = &quot;Show Less&quot;;
jQuery(&quot;.more-less .more-block&quot;).css(&#039;height&#039;, adjustheight).css(&#039;overflow&#039;, &#039;hidden&#039;);
var listItem_size = jQuery(&quot;.more-block a&quot;).length

if (listItem_size &lt; = 8 ) {
if (listItem_size &lt; = 4 ) {
jQuery(this).find(&quot;.more-block&quot;).css(&#039;height&#039;, adjustheight1).css(&#039;overflow&#039;, &#039;hidden&#039;);
}
} else {
jQuery(&quot;.more-less&quot;).append(&#039;<a style="clear:both;" href="#" class="adjust"></a>');
jQuery("a.adjust").text(moreText);
}

jQuery(".adjust").toggle(function() {
jQuery(this).parents("div:first").find(".more-block").css('height', 'auto').css('overflow', 'visible');
jQuery(this).text(lessText);

}, function() {
jQuery(this).parents("div:first").find(".more-block").css('height', adjustheight).css('overflow', 'hidden');
jQuery(this).text(moreText);
});
});
&lt;/script&gt;
</pre>
</div>
<p>
<strong>CSS Code:</strong></p>
<div style="width:500px;overflow:scroll;">
<pre>
&lt;style&gt;
#Tabs a.adjust{text-align:center; padding:5px;background: #333333 ; color:#FFFFFF; font-size:11px ; display:block ; width:65px ; cursor:pointer;  height: 13px;line-height: 13px ; text-decoration:none; clear:both;}
#Tabs { padding: 0 0 2px 0; margin: 0; display:block;border:1px solid #999999; padding:6px; float: left; width:550px; clear:both;}
#Tabs ul{ display: block;float: left;margin: 0; padding: 0;}
#Tabs ul li{float:left; width:130px; list-style:none;}
#Tabs a{text-align:center; padding: 3px 10px;margin:5px;display:block;text-decoration: underline;font-size: 11px; color:#800000; word-wrap: break-word; float:left; width:100px; }
#Tabs a:hover{background:#A41B1B; color:#FFFFFF;   text-decoration:none;}
&lt;/style&gt;
</pre>
</div>
<p>
<strong>HTML Code:</strong></p>
<pre> &lt;div class="more-less"&gt;
  &lt;div class="more-block"&gt;
  &lt;ul&gt;
  &lt;li&gt;&lt;a href="#"&gt; Sample Link &lt;/a&gt;
  &lt;li&gt;&lt;a href="#"&gt; Sample Link &lt;/a&gt;
  &lt;li&gt;&lt;a href="#"&gt; Sample Link &lt;/a&gt;
  &lt;li&gt;&lt;a href="#"&gt; Sample Link &lt;/a&gt;
  &lt;li&gt;&lt;a href="#"&gt; Sample Link &lt;/a&gt;
  &lt;li&gt;&lt;a href="#"&gt; Sample Link &lt;/a&gt;
  &lt;/ul&gt;
  &lt;div&gt;
&lt;/div&gt;</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kathirpositive.wordpress.com/283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kathirpositive.wordpress.com/283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kathirpositive.wordpress.com/283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kathirpositive.wordpress.com/283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kathirpositive.wordpress.com/283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kathirpositive.wordpress.com/283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kathirpositive.wordpress.com/283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kathirpositive.wordpress.com/283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kathirpositive.wordpress.com/283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kathirpositive.wordpress.com/283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kathirpositive.wordpress.com/283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kathirpositive.wordpress.com/283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kathirpositive.wordpress.com/283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kathirpositive.wordpress.com/283/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kathirpositive.wordpress.com&amp;blog=4994807&amp;post=283&amp;subd=kathirpositive&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kathirpositive.wordpress.com/2011/07/01/jquery-show-more-show-less-option/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0685f5139eec573f8729a1fdb70dd0e6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Kathirvel K</media:title>
		</media:content>
	</item>
		<item>
		<title>CSS hacks tips for various browser</title>
		<link>http://kathirpositive.wordpress.com/2011/07/01/css-hacks-tips-for-various-browser/</link>
		<comments>http://kathirpositive.wordpress.com/2011/07/01/css-hacks-tips-for-various-browser/#comments</comments>
		<pubDate>Fri, 01 Jul 2011 08:13:27 +0000</pubDate>
		<dc:creator>Kathirvel K</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[web design tips and tricks]]></category>
		<category><![CDATA[CSS hacks]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[browser tips]]></category>

		<guid isPermaLink="false">http://kathirpositive.wordpress.com/?p=274</guid>
		<description><![CDATA[Internet Explorer conditionnal comments &#60;!--[if IE]&#62; &#60;link href="ie.css" rel="stylesheet" type="text/css" /&#62; &#60;![endif]--&#62; You can also target only a certain version of IE: &#60;!--[if IE6]&#62; &#60;link href="ie.css" rel="stylesheet" type="text/css" /&#62; &#60;![endif]--&#62; Internet Explorer hacks .class { width:200px; /* All browsers */ *width:250px; /* IE */ _width:300px; /* IE6 */ .width:200px; /* IE7 */ } Targeting Opera [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kathirpositive.wordpress.com&amp;blog=4994807&amp;post=274&amp;subd=kathirpositive&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Internet Explorer conditionnal comments</strong></p>
<pre>&lt;!--[if IE]&gt;
  	&lt;link href="ie.css" rel="stylesheet" type="text/css" /&gt;
&lt;![endif]--&gt;

You can also target only a certain version of IE:
&lt;!--[if IE6]&gt;
  	&lt;link href="ie.css" rel="stylesheet" type="text/css" /&gt;
&lt;![endif]--&gt;</pre>
<p><strong>Internet Explorer hacks</strong></p>
<pre>.class {
  width:200px; /* All browsers */
  *width:250px; /* IE */
  _width:300px; /* IE6 */
  .width:200px; /* IE7 */
}</pre>
<p><strong>Targeting Opera only</strong></p>
<pre>@media all and (min-width: 0px){
    .classname {}
}</pre>
<p><strong>Targeting Safari only</strong></p>
<pre>html:lang(en)&gt;body  .classname {}</pre>
<p><strong>Targeting Google Chrome only</strong></p>
<pre>body:nth-of-type(1) p{
   color: #333333;
}</pre>
<p><strong>IE6 crash</strong></p>
<pre>&lt;style&gt;*{position:relative}&lt;/style&gt;&lt;table&gt;&lt;input&gt;&lt;/table&gt;</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kathirpositive.wordpress.com/274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kathirpositive.wordpress.com/274/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kathirpositive.wordpress.com/274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kathirpositive.wordpress.com/274/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kathirpositive.wordpress.com/274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kathirpositive.wordpress.com/274/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kathirpositive.wordpress.com/274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kathirpositive.wordpress.com/274/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kathirpositive.wordpress.com/274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kathirpositive.wordpress.com/274/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kathirpositive.wordpress.com/274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kathirpositive.wordpress.com/274/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kathirpositive.wordpress.com/274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kathirpositive.wordpress.com/274/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kathirpositive.wordpress.com&amp;blog=4994807&amp;post=274&amp;subd=kathirpositive&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kathirpositive.wordpress.com/2011/07/01/css-hacks-tips-for-various-browser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0685f5139eec573f8729a1fdb70dd0e6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Kathirvel K</media:title>
		</media:content>
	</item>
		<item>
		<title>Search Engine Friendly URLs (SEF URLs) &#8211; Joomla</title>
		<link>http://kathirpositive.wordpress.com/2011/03/21/search-engine-friendly-urls-sef-urls-joomla/</link>
		<comments>http://kathirpositive.wordpress.com/2011/03/21/search-engine-friendly-urls-sef-urls-joomla/#comments</comments>
		<pubDate>Mon, 21 Mar 2011 10:07:13 +0000</pubDate>
		<dc:creator>Kathirvel K</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[web design tips and tricks]]></category>

		<guid isPermaLink="false">http://kathirpositive.wordpress.com/?p=248</guid>
		<description><![CDATA[A. What are SEF URLs? SEF means “search engine friendly.” Websites are considered search engine friendly if the pages can easily be found by search engines. One part of this is non-parameterized URLs. In version 1.5, Joomla! offers three different options you can choose to build SEF URLs. Let&#8217;s have a look at the normal [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kathirpositive.wordpress.com&amp;blog=4994807&amp;post=248&amp;subd=kathirpositive&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="color:#00ae00;"><span style="font-size:small;"><strong>A. What are SEF URLs?</strong></span></span></p>
<p><span>SEF means “search engine friendly.” Websites are considered search engine friendly if the pages can easily be found by search engines. One part of this is  non-parameterized URLs. In version 1.5, Joomla! offers three different options you can choose to build SEF URLs.</span></p>
<p><span><em>Let&#8217;s have a look at the normal Joomla! URLs:</em></span></p>
<p><span><img src="http://i1225.photobucket.com/albums/ee389/kathir_tutor/normalurl.jpg" alt="" /><br />
</span></p>
<p><span>These URLs are very long and contain a lot of parameters. This makes it obvious the pages are constructed dynamically. Some believe Google and other search engines often ignore these URLs or don&#8217;t place them at the top of the result list.</span></p>
<p><span>Other than search engine impact, there are other advantages of SEF URLs:</span></p>
<ul>
<li><span>The URLs contain keywords.</span></li>
<li><span>The URLs are much shorter.</span></li>
<li><span>The URLs are more “human friendly.”</span></li>
</ul>
<p><span>This is an advantage for search engines, because indexing your site is more accurate. Long URLs break in blogs and in emails where the shorter SEF URLs do not. Even for humans, SEF URLs are better because increased readability makes it easier to remember the address or to share a web page with friends. Combined, these benefits translate to more site visitors.</span></p>
<p><span style="color:#00ae00;"><span style="font-size:small;"><strong>B. Search Engine Friendly URL Configuration</strong></span></span></p>
<p><span>You have to do all important changes in the “Global Configuration” dialog.</span></p>
<p><span><em>Step-By-Step-Introduction</em></span></p>
<ol>
<li><span>Log in as an administrator using the Joomla! Back-end.</span></li>
<li><span>Click on the “Global Configuration” icon.</span></li>
</ol>
<p><span><img src="http://i1225.photobucket.com/albums/ee389/kathir_tutor/globalconfig.jpg" alt="" /> </span></p>
<ol>
<li><span>Locate the right panel called “SEO Settings.”</span></li>
<li><span>Activate the options desired in the following order.</span></li>
</ol>
<p><span><img src="http://i1225.photobucket.com/albums/ee389/kathir_tutor/seosettings.jpg" alt="" /><br />
</span></p>
<p>&nbsp;</p>
<p><span><strong>Option 1. Search Engine Friendly URLs</strong></span><br />
<span>Choose ”Yes” for the first option in the panel. </span><br />
<span>Confirm selection by clicking on “Apply”. </span><br />
<span><img src="http://i1225.photobucket.com/albums/ee389/kathir_tutor/apply.jpg" alt="" /></span></p>
<p><span><em>Let&#8217;s look at the URL. How has it changed? (You can check this by clicking on “Preview”.)</em></span><br />
<span><img src="http://i1225.photobucket.com/albums/ee389/kathir_tutor/change1.jpg" alt="" />The URL is now much shorter and there isn&#8217;t any “?” in there anymore. It looks like a normal URL. The only difference is that there is a PHP file name, index.php, instead of a directory name, inside of the URL.</span></p>
<p><span><strong>Option 2. Use Apache mod_rewrite.</strong></span></p>
<p><span>If you wish to get rid of the <strong>/index.php/</strong> value embedded in the URL, you can activate the second option. To use this option, you must also rename the htaccess.txt file in the root of your Joomla! Website to .htaccess  <em>Attention: If you need help with your .htaccess file, read the section,</em><span style="color:#0047ff;"><em> </em></span><br />
<br />
<strong><span style="color:#0047ff;"><em>D. Activating and Using Apache mod_rewrite.</em><img src="http://i1225.photobucket.com/albums/ee389/kathir_tutor/change2.jpg" alt="" /></span></strong></span></p>
<p><span>By using this option,  the “/index.php/” disappears from the URL.</span></p>
<p><span><strong>Option 3. Add Suffix to URLs</strong></span></p>
<p><span><img src="http://i1225.photobucket.com/albums/ee389/kathir_tutor/change3.jpg" alt="" />If you also activate the option “Add suffix to URLs” you will get an URL like this:</span></p>
<p><span>Now there is a file extension at the end of the URL. This might make the SEF better for some search engines.</span></p>
<p><span><strong>All three SEF URL options</strong></span></p>
<p><span><img src="http://i1225.photobucket.com/albums/ee389/kathir_tutor/change4.jpg" alt="" />If you activated all three SEF options, your URL should look like a permanent HTML document, located in a subfolder. The URL will look like this:</span></p>
<p><span style="color:#000000;"><span><strong>Testing Your SEF URL Configuration Options</strong></span></span></p>
<p><span>After setting options desired, verify your configuration by testing the front end links. If you do not get any errors, you do not need to read the rest of this guide. If you get “404 page not found” or “Error 500 – Internal Server Error” errors,  read on for additional configuration and troubleshooting information.</span></p>
<p><span style="color:#00ae00;"><span><span style="font-size:small;"><strong>C. SEF URL Troubleshooting Steps</strong></span></span></span></p>
<p><span>Use this if you activated SEF URLs according to the instructions, but get “404 Not Found errors” or “Error 500 – Internal Server Errors” when clicking the links.</span></p>
<ol>
<li><span>Verify you are using a PHP version that meets  the Joomla! V 1.5 minimum system requirements. 	<a href="http://help.joomla.org/content/view/1938/302/">http://help.joomla.org/content/view/1938/302/</a></span></li>
<li><span>If you are using a Beta or RC version,  upgrade to Final, if available, or use the latest nightly build 	<a href="http://dev.joomla.org/content/view/17/60/#download">http://dev.joomla.org/content/view/17/60/#download</a> </span></li>
<li><span>If you use the 2<sup>nd</sup> and/or 3<sup>rd</sup> SEF URL options, make certain you renamed your .htaccess file 	correctly at the root of your website. Use the htaccess.txt file 	delivered with Joomla!. Simple rename it to <strong>.htaccess</strong> (The 	name is: a period followed by the literal “htaccess” with 	nothing before or after.) You can rename the file using an FTP 	client or, on Windows, you can rename the file from a command 	prompt.</span></li>
</ol>
<ol>
<li><span>Verify Apache rewrite is working by adding 	this line to your .htaccess file: </span><span style="font-family:'Courier New', monospace;">RewriteRule (.*) 	http://www.google.com/ </span><span>Navigate to your website. If rewrite is 	working, you will end up at Google. If you do not, Apache rewrite is 	not working, which means Joomla!&#8217;s SEF URLs cannot work. See <strong>D. Activating and Using Apache mod_rewrite </strong>for more help 	configuring Apache rewrite.</span>
<p>&nbsp;</li>
<li><span>If mod_rewrite is working but the URLs are not, you might need to update the .htaccess RewriteBase if you have 	installed in a sub-folder (ex. /joomla). Open the “.htaccess” file, locate the RewriteBase line, remove the # and add the name of 	your sub-folder, as shown with this example: </span>
<p lang="en-US"><span style="font-family:'Courier New', monospace;"><span style="font-size:x-small;">RewriteBase /joomla</span></span></p>
</li>
</ol>
<p><span><strong>Still doesn&#8217;t work?</strong></span></p>
<p><span><span style="color:#000000;">If you followed these troubleshooting steps and are still are unable to get SEF URLs working, post in the </span><span style="color:#000000;"><strong>Joomla! V 1.5 Administration Board</strong></span><span style="color:#000000;"> for assistance. </span><a href="http://forum.joomla.org/index.php/board,431.0.html">http://forum.joomla.org/index.php/board,431.0.html</a><a href="http://forum.joomla.org/index.php/board,431.0.html"> </a></span></p>
<p><span style="color:#000000;"><span>Remain calm, provide an informative title, and include the following in your post:</span></span></p>
<ol>
<li><span style="color:#000000;"><span>The specific error 	message or problem;</span></span></li>
<li><span style="color:#000000;"><span>A link to your site, if 	possible;</span></span></li>
<li><span style="color:#000000;"><span>Steps to recreate the 	error, if possible.</span></span></li>
<li><span style="color:#000000;"><span>Your system 	information: including Apache, PHP, and MySQL versions;</span></span></li>
<li><span style="color:#000000;"><span>Confirmation that your 	system meets Joomla!&#8217;s minimum requirements;</span></span></li>
<li><span style="color:#000000;"><span>The version of Joomla! 	you are using and verification you have updated to final (if 	available) or the latest nightly;</span></span></li>
<li><span style="color:#000000;"><span>The specific SEF URL options you selected of the three available;</span></span></li>
<li><span style="color:#000000;"><span>Confirmation your .htaccess file is correctly named and located  at the root of your 	website;</span></span></li>
<li><span style="color:#000000;"><span>Results from testing your .htaccess for redirect to Google (Before posting, read the next 	section for help if mod_rewrite is not working.);</span></span></li>
<li><span style="color:#000000;"><span>Confirmation that RewriteBase was not needed or did not work.</span></span><span style="color:#00ae00;"><br />
<br />
<span><span style="font-size:small;"><strong>D. Activating and Using Apache mod_rewrite</strong></span></span></span></li>
</ol>
<p><span>If you followed the troubleshooting steps in the previous section and were unable to successfully navigate to Google, your Apache mod_rewrite function is not working. This results in an <em>“Error 500 – Internal Server Error”</em> when you click a link from the Frontend of a Joomla! Website that has the 2<sup>nd</sup> and/or 3<sup>rd</sup> SEF URL options turned on. </span></p>
<p><span>If you use shared-hosting, you will not likely be able to activate mod_rewrite. Instead, you must contact your web host provider and request activation. If you use your own server, these steps will help you activate mod_rewrite.</span></p>
<p><span><strong>To configure Apache for mod_rewrite (if you have system access):</strong></span></p>
<ol>
<li><span>Locate the “httpd.conf” file which you 	can find in the “conf” folder of your Apache installation.</span></li>
<li><span>Search for a line with this content:</span></li>
</ol>
<p><span style="font-family:'Courier New', monospace;"><span style="font-size:x-small;"> LoadModule rewrite_module modules/mod_rewrite.so</span></span></p>
<ol>&nbsp;</p>
<li><span>Delete the “#” at the beginning of the 	line.</span></li>
<li><span>Restart your Apache web server. </span></li>
<li><span>Verify Apache rewrite is working by adding 	this line to your .htaccess file: </span></li>
</ol>
<ol>&nbsp;</p>
<p><span style="font-family:'Courier New', monospace;">RewriteRule (.*) 	http://www.google.com/ </span></p>
<p>&nbsp;</ol>
<p><span>Navigate to your website. If rewrite is working, you will end up at Google. If you do not, Apache rewrite is not working.</span></p>
<p><span style="color:#000000;"><span>To learn more about mod_rewrite use the official mod_rewrite documentation:</span></span></p>
<p><span style="color:#000000;"> <span><a href="http://httpd.apache.org/docs/1.3/mod/mod_rewrite.html">http://httpd.apache.org/docs/1.3/mod/mod_rewrite.html</a></span></span></p>
<p><span style="color:#00ae00;"><span><span style="font-size:small;"><strong>E. Frequently Asked Questions</strong></span></span></span></p>
<p><span style="color:#000000;"><span><span style="font-size:small;"><strong>What do the numbers in the URL mean?</strong></span></span></span></p>
<p><span style="color:#000000;"><span><span style="font-size:small;">By comparing the old and the new URL we can see numbers in the old URL,</span></span></span></p>
<p><span style="color:#000000;"><img src="http://i1225.photobucket.com/albums/ee389/kathir_tutor/normalurl.jpg" alt="" /> </span></p>
<p><span style="color:#000000;"><span><span style="font-size:small;">but also in the new URL:</span></span></span></p>
<p><span style="color:#000000;"><img src="http://i1225.photobucket.com/albums/ee389/kathir_tutor/change4.jpg" alt="" /> </span></p>
<p><span style="color:#000000;"><span><span style="font-size:small;">This numbers are the parameters, which are needed by Joomla! to get the internal URL and show you the page you want to see. (In this case, the first on is the id of the category, the second one is the id of the article.)</span></span></span></p>
<p><span style="color:#000000;"><span><span style="font-size:small;"><strong>There is no “index.php” in the URL anymore. Can I delete the file now?</strong></span></span></span></p>
<p><span style="color:#000000;"><span><span style="font-size:small;">No! The URL may doesn&#8217;t contain the “index.php” anymore, but internal the mod_rewrite will only redirect to the original path without showing it to you.</span></span></span></p>
<p><span style="color:#000000;"><span><span style="font-size:small;"><strong>What is the Alias value? And how does it get created?</strong></span></span></span></p>
<p><span style="color:#000000;"><span><span style="font-size:small;">Alias is listed beneath the Title field in Articles, Categories, Sections and Menu Items. Joomla! Can automatically create the alias for you. An automatic alias  begins with the title; all upper case letters are changed to lower case; spaces and special characters not allowed in a URL are changed to a dash. </span></span></span></p>
<p><span style="color:#000000;"><span><span style="font-size:small;"><strong>I want to specify my own value for Alias.</strong></span></span></span></p>
<p><span style="color:#000000;"><span><span style="font-size:small;">If you do not like the Alias provided by Joomla!, you can enter a value of your choosing into that field. Many believe using good keywords in your URL helps search engine optimization. You can do so by including those keywords in your title, and allowing Joomla! to create the alias, or by creating the alias yourself.</span></span></span></p>
<p><span style="color:#000000;"><span><span style="font-size:small;"><strong>How is Alias used in a URL?</strong></span></span></span></p>
<p><span style="color:#000000;"><span><span style="font-size:small;">For a menu item, Joomla! uses the alias as the URL plug. Assuming you use the first two SEF URL options and you create a menu item called Products, your URL would be example.com/products. </span></span></span></p>
<p><span style="color:#000000;"><span><span style="font-size:small;">Joomla! also uses the primary key values of data within the URL to help the router navigate to the correct page. Continuing with the previous example, if your products menu item was for an Article-Category Blog, the link for the Article Title and/or Read More link would be three parts: </span></span></span></p>
<ul>
<li><span style="color:#000000;"><span><span style="font-size:small;">The menu 	item URL – example.com/products;</span></span></span></li>
<li><span style="color:#000000;"><span><span style="font-size:small;">Plus, the 	primary key for the Category and the Category alias – 32-fruit;</span></span></span></li>
<li><span style="color:#000000;"><span><span style="font-size:small;">Plus, the 	primary key for the Article and the Article alias – 1-apple;</span></span></span></li>
<li><span style="color:#000000;"><span><span style="font-size:small;">The 	complete URL is: <strong>http://example.com/products/32-fruit/1-apple</strong></span></span></span></li>
</ul>
<p><span style="color:#000000;"><span><span style="font-size:small;"><strong>How can I get rid of the numbers in the SEF URLs?</strong></span></span></span></p>
<p><span style="color:#000000;"><span><span style="font-size:small;">The numbers in the SEF URL are needed by Joomla!&#8217;s router to know how to direct site traffic. Once the router logic stabilizes, simple third party system plugins can be developed to augment the router capabilities by allowing more choice. At that time, numbers will likely be removed from the URL.</span></span></span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kathirpositive.wordpress.com/248/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kathirpositive.wordpress.com/248/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kathirpositive.wordpress.com/248/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kathirpositive.wordpress.com/248/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kathirpositive.wordpress.com/248/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kathirpositive.wordpress.com/248/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kathirpositive.wordpress.com/248/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kathirpositive.wordpress.com/248/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kathirpositive.wordpress.com/248/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kathirpositive.wordpress.com/248/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kathirpositive.wordpress.com/248/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kathirpositive.wordpress.com/248/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kathirpositive.wordpress.com/248/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kathirpositive.wordpress.com/248/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kathirpositive.wordpress.com&amp;blog=4994807&amp;post=248&amp;subd=kathirpositive&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kathirpositive.wordpress.com/2011/03/21/search-engine-friendly-urls-sef-urls-joomla/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0685f5139eec573f8729a1fdb70dd0e6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Kathirvel K</media:title>
		</media:content>

		<media:content url="http://i1225.photobucket.com/albums/ee389/kathir_tutor/normalurl.jpg" medium="image" />

		<media:content url="http://i1225.photobucket.com/albums/ee389/kathir_tutor/globalconfig.jpg" medium="image" />

		<media:content url="http://i1225.photobucket.com/albums/ee389/kathir_tutor/seosettings.jpg" medium="image" />

		<media:content url="http://i1225.photobucket.com/albums/ee389/kathir_tutor/apply.jpg" medium="image" />

		<media:content url="http://i1225.photobucket.com/albums/ee389/kathir_tutor/change1.jpg" medium="image" />

		<media:content url="http://i1225.photobucket.com/albums/ee389/kathir_tutor/change2.jpg" medium="image" />

		<media:content url="http://i1225.photobucket.com/albums/ee389/kathir_tutor/change3.jpg" medium="image" />

		<media:content url="http://i1225.photobucket.com/albums/ee389/kathir_tutor/change4.jpg" medium="image" />

		<media:content url="http://i1225.photobucket.com/albums/ee389/kathir_tutor/normalurl.jpg" medium="image" />

		<media:content url="http://i1225.photobucket.com/albums/ee389/kathir_tutor/change4.jpg" medium="image" />
	</item>
		<item>
		<title>Go to named anchor while page (body) loads</title>
		<link>http://kathirpositive.wordpress.com/2011/01/20/go-to-named-anchor-while-page-body-loads/</link>
		<comments>http://kathirpositive.wordpress.com/2011/01/20/go-to-named-anchor-while-page-body-loads/#comments</comments>
		<pubDate>Thu, 20 Jan 2011 12:11:00 +0000</pubDate>
		<dc:creator>Kathirvel K</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[web design tips and tricks]]></category>

		<guid isPermaLink="false">http://kathirpositive.wordpress.com/?p=235</guid>
		<description><![CDATA[A named anchor inside an HTML document. Just used to navigate within the page. The name attribute specifies the name of an anchor. Example 1: Simple HTML Scripts Named Anchor: &#60;a name=&#8221;Top&#8221;&#62; &#60;/a&#62; Call named anchor using href: &#60;a href=&#8221;#top&#8221;&#62;Go Top&#60;/a&#62; Call named anchor in specific page that specific named #anchor: &#60;a href=&#8221;page2.htm#top&#8221;&#62; Page2 #section&#60;/a&#62; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kathirpositive.wordpress.com&amp;blog=4994807&amp;post=235&amp;subd=kathirpositive&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A named anchor inside an HTML document. Just used to navigate within the page. The name attribute specifies the name of an anchor.</p>
<p><strong>Example 1: Simple HTML Scripts</strong></p>
<p><span style="color:#993300;">Named Anchor:</span></p>
<p>&lt;a name=&#8221;Top&#8221;&gt; &lt;/a&gt;</p>
<p><span style="color:#993300;">Call named anchor using href:</span></p>
<p>&lt;a href=&#8221;#top&#8221;&gt;Go Top&lt;/a&gt;</p>
<p><span style="color:#993300;">Call named anchor in specific page that specific named #anchor:</span></p>
<p>&lt;a href=&#8221;page2.htm#top&#8221;&gt; Page2 #section&lt;/a&gt;</p>
<p><strong>Example 2: Page Load Named Anchor By Using Javascript</strong></p>
<p><span style="color:#993300;">This need to include the function goToAnchor within head tag:</span></p>
<p>&lt;script type=&#8221;text/javascript&#8221;&gt;</p>
<p>function goNamedAnchor() {<br />
location.href = &#8220;Page2.html#AnchorName&#8221;;<br />
}</p>
<p>&lt;/script&gt;</p>
<p><span style="color:#993300;">Then add this onload event to the body tag of html page:</span></p>
<p>&lt;body onload=&#8221;goNamedAnchor();&#8221;&gt;</p>
<p><span style="color:#993300;">Then specific the #anchor name that we want it to jump to, when the page is loaded:</span></p>
<p>&lt;a name=&#8221;AnchorName&#8221;&gt;&lt;/a&gt;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kathirpositive.wordpress.com/235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kathirpositive.wordpress.com/235/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kathirpositive.wordpress.com/235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kathirpositive.wordpress.com/235/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kathirpositive.wordpress.com/235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kathirpositive.wordpress.com/235/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kathirpositive.wordpress.com/235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kathirpositive.wordpress.com/235/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kathirpositive.wordpress.com/235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kathirpositive.wordpress.com/235/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kathirpositive.wordpress.com/235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kathirpositive.wordpress.com/235/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kathirpositive.wordpress.com/235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kathirpositive.wordpress.com/235/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kathirpositive.wordpress.com&amp;blog=4994807&amp;post=235&amp;subd=kathirpositive&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kathirpositive.wordpress.com/2011/01/20/go-to-named-anchor-while-page-body-loads/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0685f5139eec573f8729a1fdb70dd0e6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Kathirvel K</media:title>
		</media:content>
	</item>
		<item>
		<title>Highlight Current page in menu using Javascript</title>
		<link>http://kathirpositive.wordpress.com/2010/07/13/highlight-current-page-in-menu-using-javascript/</link>
		<comments>http://kathirpositive.wordpress.com/2010/07/13/highlight-current-page-in-menu-using-javascript/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 12:16:16 +0000</pubDate>
		<dc:creator>Kathirvel K</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[web design tips and tricks]]></category>

		<guid isPermaLink="false">http://kathirpositive.wordpress.com/?p=225</guid>
		<description><![CDATA[HTML: &#60;div id=&#8221;NavBar&#8221;&#62; &#60;ul&#62; &#60;li&#62;&#60;a href=&#8221;home.html&#8221; id=&#8221;ctl00_toolbar_hlHome&#8221;&#62;Home&#60;/a&#62;&#60;/li&#62; &#60;li&#62;&#60;a href=&#8221;services.html&#8221; id=&#8221;ctl00_toolbar_hlSearch&#8221;&#62;Services&#60;/a&#62;&#60;/li&#62; &#60;li&#62;&#60;a href=&#8221;about.html&#8221; id=&#8221;ctl00_toolbar_hlProducts&#8221;&#62;About&#60;/a&#62;&#60;/li&#62; &#60;li&#62;&#60;a href=&#8221;contact.html&#8221; id=&#8221;ctl00_toolbar_hlServices&#8221;&#62;Contact&#60;/a&#62;&#60;/li&#62; &#60;/ul&#62; &#60;/div&#62; CSS: #NavBar{height: 30px;margin-bottom:2px; border-bottom:2px solid black;} #NavBar ul{display: inline;padding: 0;margin: 0; width: 960px;} #NavBar li{list-style-type: none;line-height: 28px;vertical-align: middle;display: block; text-transform: uppercase;font-size: 12px;float: left;margin-left: 0px;} #NavBar ul li a{ background: darkred repeat-x;height: 28px;display: block; text-decoration: none;text-align: center;color: #FFFFFF;margin-right:2px; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kathirpositive.wordpress.com&amp;blog=4994807&amp;post=225&amp;subd=kathirpositive&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>HTML:</strong></p>
<p><strong><span style="font-weight:normal;">&lt;div id=&#8221;NavBar&#8221;&gt;</span><br />
<span style="font-weight:normal;"> &lt;ul&gt;</span><br />
<span style="font-weight:normal;"> &lt;li&gt;&lt;a href=&#8221;home.html&#8221; id=&#8221;ctl00_toolbar_hlHome&#8221;&gt;Home&lt;/a&gt;&lt;/li&gt;</span><br />
<span style="font-weight:normal;"> &lt;li&gt;&lt;a href=&#8221;services.html&#8221; id=&#8221;ctl00_toolbar_hlSearch&#8221;&gt;Services&lt;/a&gt;&lt;/li&gt;</span><br />
<span style="font-weight:normal;"> &lt;li&gt;&lt;a href=&#8221;about.html&#8221; id=&#8221;ctl00_toolbar_hlProducts&#8221;&gt;About&lt;/a&gt;&lt;/li&gt;</span><br />
<span style="font-weight:normal;"> &lt;li&gt;&lt;a href=&#8221;contact.html&#8221; id=&#8221;ctl00_toolbar_hlServices&#8221;&gt;Contact&lt;/a&gt;&lt;/li&gt; </span><br />
<span style="font-weight:normal;"> &lt;/ul&gt;</span><br />
<span style="font-weight:normal;">&lt;/div&gt;</span><br />
</strong></p>
<p><strong>CSS:</strong></p>
<p>#NavBar{height: 30px;margin-bottom:2px;	border-bottom:2px solid black;}<br />
#NavBar ul{display: inline;padding: 0;margin: 0; width: 960px;}<br />
#NavBar li{list-style-type: none;line-height: 28px;vertical-align: middle;display: block;<br />
text-transform: uppercase;font-size: 12px;float: left;margin-left: 0px;}<br />
#NavBar ul li a{ background: darkred repeat-x;height: 28px;display: block;<br />
text-decoration: none;text-align: center;color: #FFFFFF;margin-right:2px;<br />
padding:0 25px;	font-weight:bold;	border:1px solid #990200;}<br />
#NavBar ul li a:hover{background: black repeat-x;height: 28px;display: block;<br />
color: #FFFFFF;text-decoration: none;border:1px solid #000000}<br />
#NavBar ul li a.activeMenuItem  {background: black;  height: 28px;display: block;<br />
color: #FFFFFF;text-decoration: none;border:1px solid #000000}</p>
<p><strong>JavaScript:</strong></p>
<div id="_mcePaste" style="margin:0;padding:0;"><span style="font-weight:normal;margin:0;padding:0;">function extractPageName(hrefString)</span></div>
<div id="_mcePaste" style="margin:0;padding:0;"><span style="font-weight:normal;margin:0;padding:0;">{</span></div>
<div id="_mcePaste" style="margin:0;padding:0;"><span style="font-weight:normal;margin:0;padding:0;">var arr = hrefString.split(‘/’);</span></div>
<div id="_mcePaste" style="margin:0;padding:0;"><span style="font-weight:normal;margin:0;padding:0;">return  (arr.length&lt;2) ? hrefString : arr[arr.length-2].toLowerCase() + arr[arr.length-1].toLowerCase();</span></div>
<div id="_mcePaste" style="margin:0;padding:0;"><span style="font-weight:normal;margin:0;padding:0;">}</span></div>
<div id="_mcePaste" style="margin:0;padding:0;"><span style="font-weight:normal;margin:0;padding:0;">function setActiveMenu(arr, crtPage)</span></div>
<div id="_mcePaste" style="margin:0;padding:0;"><span style="font-weight:normal;margin:0;padding:0;">{</span></div>
<div id="_mcePaste" style="margin:0;padding:0;"><span style="font-weight:normal;margin:0;padding:0;">for (var i=0; i&lt;arr.length; i++)</span></div>
<div id="_mcePaste" style="margin:0;padding:0;"><span style="font-weight:normal;margin:0;padding:0;">{</span></div>
<div id="_mcePaste" style="margin:0;padding:0;"><span style="font-weight:normal;margin:0;padding:0;">if(extractPageName(arr[i].href) == crtPage)</span></div>
<div id="_mcePaste" style="margin:0;padding:0;"><span style="font-weight:normal;margin:0;padding:0;">{</span></div>
<div id="_mcePaste" style="margin:0;padding:0;"><span style="font-weight:normal;margin:0;padding:0;">if (arr[i].parentNode.tagName != “DIV”)</span></div>
<div id="_mcePaste" style="margin:0;padding:0;"><span style="font-weight:normal;margin:0;padding:0;">{</span></div>
<div id="_mcePaste" style="margin:0;padding:0;"><span style="font-weight:normal;margin:0;padding:0;">arr[i].className = “activeMenuItem”;</span></div>
<div id="_mcePaste" style="margin:0;padding:0;"><span style="font-weight:normal;margin:0;padding:0;">arr[i].parentNode.className = “activeMenuItem”;</span></div>
<div id="_mcePaste" style="margin:0;padding:0;"><span style="font-weight:normal;margin:0;padding:0;">}</span></div>
<div id="_mcePaste" style="margin:0;padding:0;"><span style="font-weight:normal;margin:0;padding:0;">}</span></div>
<div id="_mcePaste" style="margin:0;padding:0;"><span style="font-weight:normal;margin:0;padding:0;">}</span></div>
<div id="_mcePaste" style="margin:0;padding:0;"><span style="font-weight:normal;margin:0;padding:0;">}</span></div>
<div id="_mcePaste" style="margin:0;padding:0;"><span style="font-weight:normal;margin:0;padding:0;">function setPage()</span></div>
<div id="_mcePaste" style="margin:0;padding:0;"><span style="font-weight:normal;margin:0;padding:0;">{</span></div>
<div id="_mcePaste" style="margin:0;padding:0;"><span style="font-weight:normal;margin:0;padding:0;">hrefString = document.location.href ? document.location.href : document.location;</span></div>
<div id="_mcePaste" style="margin:0;padding:0;"><span style="font-weight:normal;margin:0;padding:0;">if (document.getElementById(“NavBar”)!=null)</span></div>
<div id="_mcePaste" style="margin:0;padding:0;"><span style="font-weight:normal;margin:0;padding:0;">setActiveMenu(document.getElementById(“NavBar”).getElementsByTagName(“a”), extractPageName(hrefString));</span></div>
<div id="_mcePaste" style="margin:0;padding:0;"><span style="font-weight:normal;margin:0;padding:0;">}</span></div>
<p><strong></p>
<div id="_mcePaste"><span style="font-weight:normal;">&lt;/script&gt;</span></div>
<p></strong></p>
<p><strong>Finally call this JavaScript to all pages:</strong></p>
<p>&lt;script language=&#8221;javascript&#8221;&gt;setPage()&lt; /script&gt;</p>
<p><em><span style="color:#808080;">Source:</span></em><a href="http://www.richnetapps.com/automatically_highlight_current_page_in/"><em><span style="color:#808080;">http://www.richnetapps.com/automatically_highlight_current_page_in/</span></em></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kathirpositive.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kathirpositive.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kathirpositive.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kathirpositive.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kathirpositive.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kathirpositive.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kathirpositive.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kathirpositive.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kathirpositive.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kathirpositive.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kathirpositive.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kathirpositive.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kathirpositive.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kathirpositive.wordpress.com/225/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kathirpositive.wordpress.com&amp;blog=4994807&amp;post=225&amp;subd=kathirpositive&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kathirpositive.wordpress.com/2010/07/13/highlight-current-page-in-menu-using-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0685f5139eec573f8729a1fdb70dd0e6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Kathirvel K</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing Xampp and WordPress</title>
		<link>http://kathirpositive.wordpress.com/2010/05/19/installing-xampp-and-wordpress/</link>
		<comments>http://kathirpositive.wordpress.com/2010/05/19/installing-xampp-and-wordpress/#comments</comments>
		<pubDate>Thu, 20 May 2010 04:47:00 +0000</pubDate>
		<dc:creator>Kathirvel K</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[web design tips and tricks]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://kathirpositive.wordpress.com/?p=222</guid>
		<description><![CDATA[First go and download XAMPP Lite from http://www.apachefriends.org/en/xampp.html. You can choose a larger package if you need, but for WordPress, the Lite package is fine. You can choose one of two download packages &#8211; the ZIP or the EXE. If you are unsure, choose the EXE as this will install itself. (The EXE is also smaller). [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kathirpositive.wordpress.com&amp;blog=4994807&amp;post=222&amp;subd=kathirpositive&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>First go and download XAMPP Lite from <a href="http://www.apachefriends.org/en/xampp.html">http://www.apachefriends.org/en/xampp.html</a>. You can choose a larger package if you need, but for WordPress, the Lite package is fine.<br />
You can choose one of two download packages &#8211; the ZIP or the EXE. If you are unsure, choose the EXE as this will install itself. (The EXE is also smaller).<br />
Move the downloaded EXE file to the root of the drive. In my case, this is C:\</p>
<p><img src="http://www.tamba2.org.uk/wordpress/xampp/xampp1.jpg" alt="" /></p>
<p>Double-click the file and the extract dialog will appear:</p>
<p><img src="http://www.tamba2.org.uk/wordpress/xampp/xampp2.jpg" alt="" /><br />
Click extract &#8211; and wait a few moments while it does it&#8217;s job.<br />
You will then have the xampplite directory at root:</p>
<p><img src="http://www.tamba2.org.uk/wordpress/xampp/xampp3.jpg" alt="" /></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kathirpositive.wordpress.com/222/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kathirpositive.wordpress.com/222/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kathirpositive.wordpress.com/222/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kathirpositive.wordpress.com/222/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kathirpositive.wordpress.com/222/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kathirpositive.wordpress.com/222/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kathirpositive.wordpress.com/222/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kathirpositive.wordpress.com/222/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kathirpositive.wordpress.com/222/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kathirpositive.wordpress.com/222/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kathirpositive.wordpress.com/222/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kathirpositive.wordpress.com/222/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kathirpositive.wordpress.com/222/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kathirpositive.wordpress.com/222/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kathirpositive.wordpress.com&amp;blog=4994807&amp;post=222&amp;subd=kathirpositive&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kathirpositive.wordpress.com/2010/05/19/installing-xampp-and-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0685f5139eec573f8729a1fdb70dd0e6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Kathirvel K</media:title>
		</media:content>

		<media:content url="http://www.tamba2.org.uk/wordpress/xampp/xampp1.jpg" medium="image" />

		<media:content url="http://www.tamba2.org.uk/wordpress/xampp/xampp2.jpg" medium="image" />

		<media:content url="http://www.tamba2.org.uk/wordpress/xampp/xampp3.jpg" medium="image" />
	</item>
		<item>
		<title>Change Uppercase in Js (HTML DOM)</title>
		<link>http://kathirpositive.wordpress.com/2010/04/06/change-uppercase-js/</link>
		<comments>http://kathirpositive.wordpress.com/2010/04/06/change-uppercase-js/#comments</comments>
		<pubDate>Wed, 07 Apr 2010 04:51:28 +0000</pubDate>
		<dc:creator>Kathirvel K</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[web design tips and tricks]]></category>

		<guid isPermaLink="false">http://kathirpositive.wordpress.com/?p=216</guid>
		<description><![CDATA[&#60;html&#62; &#60;head&#62; &#60;script type=&#8221;text/javascript&#8221;&#62; function upperCase(x) { var y=document.getElementById(x).value; document.getElementById(x).value=y.toUpperCase(); } &#60;/script&#62; &#60;/head&#62; &#60;body&#62; Enter your name: &#60;input type=&#8221;text&#8221; id=&#8221;fname&#8221; onkeyup=&#8221;upperCase(this.id)&#8221; /&#62; &#60;/body&#62; &#60;/html&#62;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kathirpositive.wordpress.com&amp;blog=4994807&amp;post=216&amp;subd=kathirpositive&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste">&lt;html&gt;</div>
<div id="_mcePaste">&lt;head&gt;</div>
<div id="_mcePaste">&lt;script type=&#8221;text/javascript&#8221;&gt;</div>
<div id="_mcePaste">function upperCase(x)</div>
<div id="_mcePaste">{</div>
<div id="_mcePaste">var y=document.getElementById(x).value;</div>
<div id="_mcePaste">document.getElementById(x).value=y.toUpperCase();</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">&lt;/script&gt;</div>
<div id="_mcePaste">&lt;/head&gt;</div>
<div id="_mcePaste">&lt;body&gt;</div>
<div id="_mcePaste">Enter your name: &lt;input type=&#8221;text&#8221; id=&#8221;fname&#8221; onkeyup=&#8221;upperCase(this.id)&#8221; /&gt;</div>
<div id="_mcePaste">&lt;/body&gt;</div>
<div id="_mcePaste">&lt;/html&gt;</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kathirpositive.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kathirpositive.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kathirpositive.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kathirpositive.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kathirpositive.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kathirpositive.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kathirpositive.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kathirpositive.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kathirpositive.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kathirpositive.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kathirpositive.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kathirpositive.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kathirpositive.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kathirpositive.wordpress.com/216/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kathirpositive.wordpress.com&amp;blog=4994807&amp;post=216&amp;subd=kathirpositive&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kathirpositive.wordpress.com/2010/04/06/change-uppercase-js/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0685f5139eec573f8729a1fdb70dd0e6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Kathirvel K</media:title>
		</media:content>
	</item>
		<item>
		<title>Make fancy buttons using CSS sliding doors technique</title>
		<link>http://kathirpositive.wordpress.com/2010/01/21/make-fancy-buttons-using-css-sliding-doors-technique/</link>
		<comments>http://kathirpositive.wordpress.com/2010/01/21/make-fancy-buttons-using-css-sliding-doors-technique/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 07:43:21 +0000</pubDate>
		<dc:creator>Kathirvel K</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[web design tips and tricks]]></category>

		<guid isPermaLink="false">http://kathirpositive.wordpress.com/?p=210</guid>
		<description><![CDATA[What is sliding doors technique? The technique is very simple. If we want to have a dynamic-width button, we have to find a way to stretch it horizontally. We will accomplish this if we create two background images that will define the button: one for the left side and one for the right side &#8211; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kathirpositive.wordpress.com&amp;blog=4994807&amp;post=210&amp;subd=kathirpositive&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>What is sliding doors technique?</strong></p>
<p>The technique is very simple. If we want to have a dynamic-width button, we have to find a way to stretch it horizontally. We will accomplish this if we create two background images that will define the button: one for the left side and one for the right side &#8211; like in the example below.</p>
<p>LEFT                                                                                                           RIGHT</p>
<p><img src="http://msforge.net/blogs/janko/BlogImages/SlidingDoors/button_left.png" border="0" alt="" /> <img src="http://msforge.net/blogs/janko/BlogImages/SlidingDoors/button_right.png" border="0" alt="" /></p>
<p>Smaller, right image will slide on the top of the larger, left image (that why it is called sliding doors). The more right image slides to the left, the narrower button will be and vice versa. The image below shows the technique.</p>
<p><img src="http://msforge.net/blogs/janko/BlogImages/SlidingDoors/sliding_doors.png" border="0" alt="" /></p>
<p><strong>Styling the button</strong></p>
<p>First, let&#8217;s take a look at the HTML elements that will simulate button. We have &lt;span&gt; element within the &lt;a&gt; element. Span element contains left, wider image and text. The width of the text will determine the size of the button.</p>
<pre>&lt;a class="button" href="#"&gt;&lt;span&gt;Submit&lt;/span&gt;&lt;/a&gt;</pre>
<p><a href="http://11011.net/software/vspaste"></a></p>
<p>Now let&#8217;s take a look at the CSS code. We have a <strong>.button</strong> class that will be applied to &lt;a&gt; element and <strong>.button span</strong> class that will be applied to &lt;span&gt; element within &lt;a&gt; element. We also have<strong>.button:hover span</strong> that will change the font style within &lt;span&gt; element.  And that&#8217;s all. Simple, eh? The comments in the code below describes each element.</p>
<pre>a.button {
    /* Sliding right image */
    background: transparent url('button_right.png') no-repeat scroll top right;
display: block;
float: left;
height: 32px; /* CHANGE THIS VALUE ACCORDING TO IMAGE HEIGHT */
margin-right: 6px;
padding-right: 20px; /* CHENGE THIS VALUE ACCORDING TO RIGHT IMAGE WIDTH */
/* FONT PROPERTIES */
text-decoration: none;
color: #000000;
font-family: Arial, Helvetica, sans-serif;
font-size:12px;
font-weight:bold;
}
a.button span {
/* Background left image */
background: transparent url('button_left.png') no-repeat;
display: block;
line-height: 22px; /* CHANGE THIS VALUE ACCORDING TO BUTTONG HEIGHT */
padding: 7px 0 5px 18px;
}
a.button:hover span{
text-decoration:underline;
}</pre>
<p><a href="http://11011.net/software/vspaste"></a></p>
<p>The result will look like the examples below.</p>
<p><img src="http://msforge.net/blogs/janko/BlogImages/SlidingDoors/sliding_doors_example.png" border="0" alt="" /></p>
<p>You can see it &#8220;in action&#8221; on <a href="http://www.jankoatwarpspeed.com/examples/CSS-Sliding-doors/" target="_blank">example page</a>.</p>
<p><a href="http://www.jankoatwarpspeed.com/post/2008/04/30/make-fancy-buttons-using-css-sliding-doors-technique.aspx">source</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kathirpositive.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kathirpositive.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kathirpositive.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kathirpositive.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kathirpositive.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kathirpositive.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kathirpositive.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kathirpositive.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kathirpositive.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kathirpositive.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kathirpositive.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kathirpositive.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kathirpositive.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kathirpositive.wordpress.com/210/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kathirpositive.wordpress.com&amp;blog=4994807&amp;post=210&amp;subd=kathirpositive&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kathirpositive.wordpress.com/2010/01/21/make-fancy-buttons-using-css-sliding-doors-technique/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0685f5139eec573f8729a1fdb70dd0e6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Kathirvel K</media:title>
		</media:content>

		<media:content url="http://msforge.net/blogs/janko/BlogImages/SlidingDoors/button_left.png" medium="image" />

		<media:content url="http://msforge.net/blogs/janko/BlogImages/SlidingDoors/button_right.png" medium="image" />

		<media:content url="http://msforge.net/blogs/janko/BlogImages/SlidingDoors/sliding_doors.png" medium="image" />

		<media:content url="http://msforge.net/blogs/janko/BlogImages/SlidingDoors/sliding_doors_example.png" medium="image" />
	</item>
		<item>
		<title>Top 10 CSS buttons tutorial list</title>
		<link>http://kathirpositive.wordpress.com/2010/01/21/top-10-css-buttons-tutorial-list/</link>
		<comments>http://kathirpositive.wordpress.com/2010/01/21/top-10-css-buttons-tutorial-list/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 07:41:10 +0000</pubDate>
		<dc:creator>Kathirvel K</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[sites list]]></category>
		<category><![CDATA[web design tips and tricks]]></category>

		<guid isPermaLink="false">http://kathirpositive.wordpress.com/?p=208</guid>
		<description><![CDATA[How to make sexy buttons with CSS » Source Scalable CSS buttons with PNG images and background colors » Source Sexy CSS Hover Button » Source CSS Submit buttons » Source Simple Round CSS Buttons ( Wii Buttons ) » Source Make fancy buttons using CSS sliding doors technique » Source Beautiful CSS buttons with [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kathirpositive.wordpress.com&amp;blog=4994807&amp;post=208&amp;subd=kathirpositive&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h2>How to make sexy buttons with CSS</h2>
<p><strong>»</strong><strong> </strong><strong><a href="http://www.oscaralexander.com/tutorials/how-to-make-sexy-buttons-with-css.html">Source</a></strong></p>
<h2>Scalable CSS buttons with PNG images and background colors</h2>
<p><strong>»</strong><strong> </strong><strong><a href="http://www.monc.se/kitchen/59/scalable-css-buttons-using-png-and-background-colors">Source</a></strong></p>
<h2>Sexy CSS Hover Button</h2>
<p><strong>»</strong><strong> </strong><strong><a href="http://www.nublue.co.uk/blog/css-hover-button/">Source</a></strong></p>
<h2>CSS Submit buttons</h2>
<p><strong>»</strong><strong> </strong><strong><a href="http://www.ukthoughts.co.uk/journal/css-submit-buttons">Source</a></strong></p>
<h2>Simple Round CSS Buttons ( Wii Buttons )</h2>
<p><strong>»</strong><strong> </strong><strong><a href="http://www.webappers.com/2007/06/18/simple-round-css-buttons-wii-buttons/">Source</a></strong></p>
<h2>Make fancy buttons using CSS sliding doors technique</h2>
<p><strong>»</strong><strong> </strong><strong><a href="http://www.jankoatwarpspeed.com/post/2008/04/30/make-fancy-buttons-using-css-sliding-doors-technique.aspx">Source</a></strong></p>
<h2>Beautiful CSS buttons with icon set</h2>
<p><strong>»</strong><strong> </strong><strong><a href="http://woork.blogspot.com/2008/06/beautiful-css-buttons-with-icon-set.html">Source</a></strong></p>
<h2>Sliding Doors buttons using only 1 image</h2>
<p><strong>»</strong><strong> </strong><strong><a href="http://kailoon.com/css-sliding-door-using-only-1-image/">Source</a></strong></p>
<h2>Rediscovering the button element</h2>
<p><strong>»</strong><strong> </strong><strong><a href="http://particletree.com/features/rediscovering-the-button-element/">Source</a></strong></p>
<h2>Using sliding doors in WordPress</h2>
<p><strong>»</strong><strong> </strong><strong><a href="http://hackwordpress.com/sliding-doors-wordpress-navigation-css-technique/">Source</a></strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kathirpositive.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kathirpositive.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kathirpositive.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kathirpositive.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kathirpositive.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kathirpositive.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kathirpositive.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kathirpositive.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kathirpositive.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kathirpositive.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kathirpositive.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kathirpositive.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kathirpositive.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kathirpositive.wordpress.com/208/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kathirpositive.wordpress.com&amp;blog=4994807&amp;post=208&amp;subd=kathirpositive&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kathirpositive.wordpress.com/2010/01/21/top-10-css-buttons-tutorial-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0685f5139eec573f8729a1fdb70dd0e6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Kathirvel K</media:title>
		</media:content>
	</item>
	</channel>
</rss>
