<?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>Wed, 16 May 2012 13:52:56 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: Leo</title>
		<link>http://stylemeltdown.com/image-sprite-navigation-with-css/#comment-3915</link>
		<dc:creator>Leo</dc:creator>
		<pubDate>Wed, 16 May 2012 13:52:56 +0000</pubDate>
		<guid isPermaLink="false">http://stylemeltdown.com/2007/10/22/image-sprite-navigation-with-css/#comment-3915</guid>
		<description>Hey, thanks for this awesome little tutorial. Now, I am running into a bit of a problem when I want it to automatically scale to the web browser window size: I can&#039;t get it to work! Does anyone have any idea on how this could be solved in a good way? Code below:


@charset &quot;UTF-8&quot;;

img {
	max-width:100%;
}

#nav {
	background:url(&quot;images/navbar.png&quot;) no-repeat;
	/*background-size: 100%;*/
	max-width:100%;
	height:100px;
	margin:0;
	padding:0;
}

#nav span {
display:none;
}

#nav li, #nav a {
height:87px;
display:block;
}

#nav li {
float:left;
list-style:none;
display:inline;
}

/*#nav-01 {width:16%;}
#nav-02 {width:17%;}
#nav-03 {width:18%;}
#nav-04 {width:18%;}
#nav-05 {width:17%;}
#nav-06 {width:14%;}*/

#nav-01 {width:306px;}
#nav-02 {width:322px;}
#nav-03 {width:343px;}
#nav-04 {width:343px;}
#nav-05 {width:318px;}
#nav-06 {width:267px;}

#nav-01 a:hover {background:url(&quot;images/navbar.png&quot;) 0px -97px no-repeat;}
#nav-02 a:hover {background:url(&quot;images/navbar.png&quot;) -306px -97px no-repeat;}
#nav-03 a:hover {background:url(&quot;images/navbar.png&quot;) -628px -97px no-repeat;}
#nav-04 a:hover {background:url(&quot;images/navbar.png&quot;) -971px -97px no-repeat;}
#nav-05 a:hover {background:url(&quot;images/navbar.png&quot;) -1314px -97px no-repeat;}
#nav-06 a:hover {background:url(&quot;images/navbar.png&quot;) -1632px -97px no-repeat;}

/*#nav-01 a:hover {background:url(&quot;images/navbar.png&quot;) 0px -97px no-repeat;}
#nav-02 a:hover {background:url(&quot;images/navbar.png&quot;) -16% -97px no-repeat;}
#nav-03 a:hover {background:url(&quot;images/navbar.png&quot;) -33% -97px no-repeat;}
#nav-04 a:hover {background:url(&quot;images/navbar.png&quot;) -51% -97px no-repeat;}
#nav-05 a:hover {background:url(&quot;images/navbar.png&quot;) -69% -97px no-repeat;}
#nav-06 a:hover {background:url(&quot;images/navbar.png&quot;) -86% -97px no-repeat;}*/

#banner {
max-width:100%;
}

#wrapper {
max-width:100%;
}</description>
		<content:encoded><![CDATA[<p>Hey, thanks for this awesome little tutorial. Now, I am running into a bit of a problem when I want it to automatically scale to the web browser window size: I can&#8217;t get it to work! Does anyone have any idea on how this could be solved in a good way? Code below:</p>
<p>@charset &#8220;UTF-8&#8243;;</p>
<p>img {<br />
	max-width:100%;<br />
}</p>
<p>#nav {<br />
	background:url(&#8220;images/navbar.png&#8221;) no-repeat;<br />
	/*background-size: 100%;*/<br />
	max-width:100%;<br />
	height:100px;<br />
	margin:0;<br />
	padding:0;<br />
}</p>
<p>#nav span {<br />
display:none;<br />
}</p>
<p>#nav li, #nav a {<br />
height:87px;<br />
display:block;<br />
}</p>
<p>#nav li {<br />
float:left;<br />
list-style:none;<br />
display:inline;<br />
}</p>
<p>/*#nav-01 {width:16%;}<br />
#nav-02 {width:17%;}<br />
#nav-03 {width:18%;}<br />
#nav-04 {width:18%;}<br />
#nav-05 {width:17%;}<br />
#nav-06 {width:14%;}*/</p>
<p>#nav-01 {width:306px;}<br />
#nav-02 {width:322px;}<br />
#nav-03 {width:343px;}<br />
#nav-04 {width:343px;}<br />
#nav-05 {width:318px;}<br />
#nav-06 {width:267px;}</p>
<p>#nav-01 a:hover {background:url(&#8220;images/navbar.png&#8221;) 0px -97px no-repeat;}<br />
#nav-02 a:hover {background:url(&#8220;images/navbar.png&#8221;) -306px -97px no-repeat;}<br />
#nav-03 a:hover {background:url(&#8220;images/navbar.png&#8221;) -628px -97px no-repeat;}<br />
#nav-04 a:hover {background:url(&#8220;images/navbar.png&#8221;) -971px -97px no-repeat;}<br />
#nav-05 a:hover {background:url(&#8220;images/navbar.png&#8221;) -1314px -97px no-repeat;}<br />
#nav-06 a:hover {background:url(&#8220;images/navbar.png&#8221;) -1632px -97px no-repeat;}</p>
<p>/*#nav-01 a:hover {background:url(&#8220;images/navbar.png&#8221;) 0px -97px no-repeat;}<br />
#nav-02 a:hover {background:url(&#8220;images/navbar.png&#8221;) -16% -97px no-repeat;}<br />
#nav-03 a:hover {background:url(&#8220;images/navbar.png&#8221;) -33% -97px no-repeat;}<br />
#nav-04 a:hover {background:url(&#8220;images/navbar.png&#8221;) -51% -97px no-repeat;}<br />
#nav-05 a:hover {background:url(&#8220;images/navbar.png&#8221;) -69% -97px no-repeat;}<br />
#nav-06 a:hover {background:url(&#8220;images/navbar.png&#8221;) -86% -97px no-repeat;}*/</p>
<p>#banner {<br />
max-width:100%;<br />
}</p>
<p>#wrapper {<br />
max-width:100%;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jayendra</title>
		<link>http://stylemeltdown.com/image-sprite-navigation-with-css/#comment-3914</link>
		<dc:creator>jayendra</dc:creator>
		<pubDate>Wed, 25 Apr 2012 09:14:19 +0000</pubDate>
		<guid isPermaLink="false">http://stylemeltdown.com/2007/10/22/image-sprite-navigation-with-css/#comment-3914</guid>
		<description>Great tutorial. Now, I can use image spirit in my website. 

Thanks</description>
		<content:encoded><![CDATA[<p>Great tutorial. Now, I can use image spirit in my website. </p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DesignElixir</title>
		<link>http://stylemeltdown.com/image-sprite-navigation-with-css/#comment-3911</link>
		<dc:creator>DesignElixir</dc:creator>
		<pubDate>Sat, 03 Mar 2012 17:44:40 +0000</pubDate>
		<guid isPermaLink="false">http://stylemeltdown.com/2007/10/22/image-sprite-navigation-with-css/#comment-3911</guid>
		<description>Great tutorial Alex!  I was able to implement CSS Sprites for my menu bar following your tutorial and modifying it a bit - I created a widget box for the menu bar.  However, I have a small issue- there is a small sliver of the hover image appearing at the top of my sprite menu bar and I can&#039;t get rid of it. I have tried messing with margins, padding, and display block heights but it is still there.  Would you mind cruising over to my site and giving me ideas on how to fix it?  I have been at it for a while and just cant figure it out/   I kept the sprite names nav-example and the widget is HTML5.  Any help is appreciated!</description>
		<content:encoded><![CDATA[<p>Great tutorial Alex!  I was able to implement CSS Sprites for my menu bar following your tutorial and modifying it a bit &#8211; I created a widget box for the menu bar.  However, I have a small issue- there is a small sliver of the hover image appearing at the top of my sprite menu bar and I can&#8217;t get rid of it. I have tried messing with margins, padding, and display block heights but it is still there.  Would you mind cruising over to my site and giving me ideas on how to fix it?  I have been at it for a while and just cant figure it out/   I kept the sprite names nav-example and the widget is HTML5.  Any help is appreciated!</p>
]]></content:encoded>
	</item>
	<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>
</channel>
</rss>

