<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Image Sprite Navigation With CSS</title>
	<atom:link href="http://stylemeltdown.com/image-sprite-navigation-with-css/feed/" rel="self" type="application/rss+xml" />
	<link>http://stylemeltdown.com/image-sprite-navigation-with-css/</link>
	<description>Anything but forward is a waste of time</description>
	<lastBuildDate>Sun, 22 Jan 2012 20:52:12 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: RizoRex</title>
		<link>http://stylemeltdown.com/image-sprite-navigation-with-css/#comment-3909</link>
		<dc:creator>RizoRex</dc:creator>
		<pubDate>Sun, 15 Jan 2012 12:51:47 +0000</pubDate>
		<guid isPermaLink="false">http://stylemeltdown.com/2007/10/22/image-sprite-navigation-with-css/#comment-3909</guid>
		<description>This tutorial was posted back in 2007 and it is still applicable to this day.  Thank you Mr. Mr. Alex Hackbart your tutorial is so awesome that I was able to use it on my Footer Navigation thereby saving me some Javascript on my website. Your method wasn&#039;t even mentioned in my book &quot;Web Design All in One for Dummies.  Long live to you sir.</description>
		<content:encoded><![CDATA[<p>This tutorial was posted back in 2007 and it is still applicable to this day.  Thank you Mr. Mr. Alex Hackbart your tutorial is so awesome that I was able to use it on my Footer Navigation thereby saving me some Javascript on my website. Your method wasn&#8217;t even mentioned in my book &#8220;Web Design All in One for Dummies.  Long live to you sir.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nicky</title>
		<link>http://stylemeltdown.com/image-sprite-navigation-with-css/#comment-3900</link>
		<dc:creator>nicky</dc:creator>
		<pubDate>Sun, 11 Dec 2011 17:41:37 +0000</pubDate>
		<guid isPermaLink="false">http://stylemeltdown.com/2007/10/22/image-sprite-navigation-with-css/#comment-3900</guid>
		<description>i learned alot about working with sprites reading this  great tutorial , thanks</description>
		<content:encoded><![CDATA[<p>i learned alot about working with sprites reading this  great tutorial , thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Oslei</title>
		<link>http://stylemeltdown.com/image-sprite-navigation-with-css/#comment-3898</link>
		<dc:creator>Oslei</dc:creator>
		<pubDate>Sat, 12 Nov 2011 00:22:02 +0000</pubDate>
		<guid isPermaLink="false">http://stylemeltdown.com/2007/10/22/image-sprite-navigation-with-css/#comment-3898</guid>
		<description>Great , just great !!!
Thanks for this tutorial. Works like a charm in Firefox.</description>
		<content:encoded><![CDATA[<p>Great , just great !!!<br />
Thanks for this tutorial. Works like a charm in Firefox.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: victoriano2010</title>
		<link>http://stylemeltdown.com/image-sprite-navigation-with-css/#comment-3897</link>
		<dc:creator>victoriano2010</dc:creator>
		<pubDate>Thu, 10 Nov 2011 00:51:00 +0000</pubDate>
		<guid isPermaLink="false">http://stylemeltdown.com/2007/10/22/image-sprite-navigation-with-css/#comment-3897</guid>
		<description>It was good and I got to know few good things.</description>
		<content:encoded><![CDATA[<p>It was good and I got to know few good things.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Crumbz</title>
		<link>http://stylemeltdown.com/image-sprite-navigation-with-css/#comment-3818</link>
		<dc:creator>Crumbz</dc:creator>
		<pubDate>Wed, 28 Sep 2011 19:32:16 +0000</pubDate>
		<guid isPermaLink="false">http://stylemeltdown.com/2007/10/22/image-sprite-navigation-with-css/#comment-3818</guid>
		<description>I am having a little trouble getting this to work... I am doing a variation of the tutorial using four smal images that change positions only on the y axis.
Here&#039;s my HTML:

    &lt;a href=&quot;#&quot; rel=&quot;nofollow&quot;&gt;ABOUT&lt;/a&gt;
    &lt;a href=&quot;#&quot; rel=&quot;nofollow&quot;&gt;RESOURCES&lt;/a&gt;
    &lt;a href=&quot;#&quot; rel=&quot;nofollow&quot;&gt;AREAS OF PRACTICE&lt;/a&gt;
    &lt;a href=&quot;#&quot; rel=&quot;nofollow&quot;&gt;CONTACT&lt;/a&gt;


and Heres my css:
@charset &quot;UTF-8&quot;;
/* CSS Document */

#navigation {
	margin: 0px;
	padding: 0px;
	height: 40px;
	width: 1024px;
	list-style-type: none;
}
#navigationli, #about {
    height: 40px;
	width:256px;
    display: inline;
	background-image:url(../images/spritenavigation_01.gif);
	
}
#navigationli, #resources {
    height: 40px;
	width:256px;
    display: inline;
	background-image:url(../images/spritenavigation_02.gif);
}

#navigationli, #areasofpractice {
    height: 40px;
	width:256px;
    display: inline;
	background-image:url(../images/spritenavigation_03.gif);
}

#navigationli, #contact {
    height: 40px;
	width:256px;
    display: inline;
	background-image:url(../images/spritenavigation_04.gif)
}


#navigation li {
    float: left;
    list-style: none;
    display: inline;
    text-indent: -9999em;
}
	 #contact li a:hover {
	background-image: url(../images/spritenavigation_04.gif);
	background-position: 0px +40px;
}</description>
		<content:encoded><![CDATA[<p>I am having a little trouble getting this to work&#8230; I am doing a variation of the tutorial using four smal images that change positions only on the y axis.<br />
Here&#8217;s my HTML:</p>
<p>    <a href="#" rel="nofollow">ABOUT</a><br />
    <a href="#" rel="nofollow">RESOURCES</a><br />
    <a href="#" rel="nofollow">AREAS OF PRACTICE</a><br />
    <a href="#" rel="nofollow">CONTACT</a></p>
<p>and Heres my css:<br />
@charset &#8220;UTF-8&#8243;;<br />
/* CSS Document */</p>
<p>#navigation {<br />
	margin: 0px;<br />
	padding: 0px;<br />
	height: 40px;<br />
	width: 1024px;<br />
	list-style-type: none;<br />
}<br />
#navigationli, #about {<br />
    height: 40px;<br />
	width:256px;<br />
    display: inline;<br />
	background-image:url(../images/spritenavigation_01.gif);</p>
<p>}<br />
#navigationli, #resources {<br />
    height: 40px;<br />
	width:256px;<br />
    display: inline;<br />
	background-image:url(../images/spritenavigation_02.gif);<br />
}</p>
<p>#navigationli, #areasofpractice {<br />
    height: 40px;<br />
	width:256px;<br />
    display: inline;<br />
	background-image:url(../images/spritenavigation_03.gif);<br />
}</p>
<p>#navigationli, #contact {<br />
    height: 40px;<br />
	width:256px;<br />
    display: inline;<br />
	background-image:url(../images/spritenavigation_04.gif)<br />
}</p>
<p>#navigation li {<br />
    float: left;<br />
    list-style: none;<br />
    display: inline;<br />
    text-indent: -9999em;<br />
}<br />
	 #contact li a:hover {<br />
	background-image: url(../images/spritenavigation_04.gif);<br />
	background-position: 0px +40px;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pranjal</title>
		<link>http://stylemeltdown.com/image-sprite-navigation-with-css/#comment-3638</link>
		<dc:creator>Pranjal</dc:creator>
		<pubDate>Fri, 23 Sep 2011 21:48:39 +0000</pubDate>
		<guid isPermaLink="false">http://stylemeltdown.com/2007/10/22/image-sprite-navigation-with-css/#comment-3638</guid>
		<description>Can someone share a link with more details to integrate it with WordPress?</description>
		<content:encoded><![CDATA[<p>Can someone share a link with more details to integrate it with WordPress?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pranjal</title>
		<link>http://stylemeltdown.com/image-sprite-navigation-with-css/#comment-3637</link>
		<dc:creator>Pranjal</dc:creator>
		<pubDate>Fri, 23 Sep 2011 21:46:07 +0000</pubDate>
		<guid isPermaLink="false">http://stylemeltdown.com/2007/10/22/image-sprite-navigation-with-css/#comment-3637</guid>
		<description>Now i can say what is CSS sprite and how to use it...thanks for sharing</description>
		<content:encoded><![CDATA[<p>Now i can say what is CSS sprite and how to use it&#8230;thanks for sharing</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: faysy</title>
		<link>http://stylemeltdown.com/image-sprite-navigation-with-css/#comment-3563</link>
		<dc:creator>faysy</dc:creator>
		<pubDate>Wed, 21 Sep 2011 23:14:59 +0000</pubDate>
		<guid isPermaLink="false">http://stylemeltdown.com/2007/10/22/image-sprite-navigation-with-css/#comment-3563</guid>
		<description>Really awesome... helped a lot..thanx man!!! :D</description>
		<content:encoded><![CDATA[<p>Really awesome&#8230; helped a lot..thanx man!!! <img src='http://stylemeltdown.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: atw3</title>
		<link>http://stylemeltdown.com/image-sprite-navigation-with-css/#comment-3109</link>
		<dc:creator>atw3</dc:creator>
		<pubDate>Fri, 09 Sep 2011 09:54:14 +0000</pubDate>
		<guid isPermaLink="false">http://stylemeltdown.com/2007/10/22/image-sprite-navigation-with-css/#comment-3109</guid>
		<description>NEED FREE WEB HOSTING...?

&lt;b&gt; Get Free Web Hostings at http://atw3.com/&lt;/b&gt;</description>
		<content:encoded><![CDATA[<p>NEED FREE WEB HOSTING&#8230;?</p>
<p><b> Get Free Web Hostings at <a href="http://atw3.com/" rel="nofollow">http://atw3.com/</a></b></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: atw3</title>
		<link>http://stylemeltdown.com/image-sprite-navigation-with-css/#comment-3108</link>
		<dc:creator>atw3</dc:creator>
		<pubDate>Fri, 09 Sep 2011 09:53:41 +0000</pubDate>
		<guid isPermaLink="false">http://stylemeltdown.com/2007/10/22/image-sprite-navigation-with-css/#comment-3108</guid>
		<description>&lt;b&gt; Get Free Web Hostings at http://atw3.com/&lt;/b&gt;</description>
		<content:encoded><![CDATA[<p><b> Get Free Web Hostings at <a href="http://atw3.com/" rel="nofollow">http://atw3.com/</a></b></p>
]]></content:encoded>
	</item>
</channel>
</rss>

