<?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: Simple Navigation with CSS Image Replacement</title>
	<atom:link href="http://ghettocooler.net/2007/05/31/simple-navigation-with-css-image-replacement/feed/" rel="self" type="application/rss+xml" />
	<link>http://ghettocooler.net/2007/05/31/simple-navigation-with-css-image-replacement/</link>
	<description></description>
	<lastBuildDate>Thu, 10 Nov 2011 19:44:17 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: CSS Image Replacement Help - DesignersTalk</title>
		<link>http://ghettocooler.net/2007/05/31/simple-navigation-with-css-image-replacement/comment-page-2/#comment-52525</link>
		<dc:creator>CSS Image Replacement Help - DesignersTalk</dc:creator>
		<pubDate>Thu, 24 Feb 2011 14:47:23 +0000</pubDate>
		<guid isPermaLink="false">http://ghettocooler.net/2007/05/31/simple-navigation-with-css-image-replacement/#comment-52525</guid>
		<description>[...] Image Replacement Help     i&#039;ve applied this CSS Image Replacement method to my navigation.  however, problem is that in IE 6-9, the background image goes out of [...]</description>
		<content:encoded><![CDATA[<p>[...] Image Replacement Help     i&#039;ve applied this CSS Image Replacement method to my navigation.  however, problem is that in IE 6-9, the background image goes out of [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rod</title>
		<link>http://ghettocooler.net/2007/05/31/simple-navigation-with-css-image-replacement/comment-page-1/#comment-52506</link>
		<dc:creator>Rod</dc:creator>
		<pubDate>Sat, 22 Jan 2011 10:21:59 +0000</pubDate>
		<guid isPermaLink="false">http://ghettocooler.net/2007/05/31/simple-navigation-with-css-image-replacement/#comment-52506</guid>
		<description>Brilliant!!! Helped me a LOT!!!</description>
		<content:encoded><![CDATA[<p>Brilliant!!! Helped me a LOT!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bill Keller</title>
		<link>http://ghettocooler.net/2007/05/31/simple-navigation-with-css-image-replacement/comment-page-1/#comment-52381</link>
		<dc:creator>Bill Keller</dc:creator>
		<pubDate>Fri, 09 Jul 2010 13:41:56 +0000</pubDate>
		<guid isPermaLink="false">http://ghettocooler.net/2007/05/31/simple-navigation-with-css-image-replacement/#comment-52381</guid>
		<description>Richard, you&#039;ll need to fix the HTML for your sub-navigation, it should be:

&lt;ol class=&quot;code&quot;&gt;
&lt;li&gt;&lt;code&gt;&lt;li id=&quot;discography-nav&quot;&gt;&lt;a href=&quot;#&quot;&gt;Discography&lt;/a&gt;&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;&#160;&#160; &lt;ul class=&quot;dropdown&quot;&gt;&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Topic 1&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;&lt;/li&gt;&lt;/code&gt;&lt;/li&gt;
&lt;/ol&gt;

And to set a new background image on .dropdown, you&#039;ll just need to get more specific with your CSS selectors, for example:

&lt;ol class=&quot;code&quot;&gt;
&lt;li&gt;&lt;code&gt;#blackEyedSusanNav li ul.dropdown a {background-image: foo;}&lt;/code&gt;&lt;/li&gt;
&lt;/ol&gt;

Then you can move on to tackling the next steps.</description>
		<content:encoded><![CDATA[<p>Richard, you&#8217;ll need to fix the HTML for your sub-navigation, it should be:</p>
<ol class="code">
<li><code>&lt;li id="discography-nav"&gt;&lt;a href="#"&gt;Discography&lt;/a&gt;</code></li>
<li><code>&nbsp;&nbsp; &lt;ul class="dropdown"&gt;&lt;li&gt;&lt;a href="#"&gt;Topic 1&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;</code></li>
<li><code>&lt;/li&gt;</code></li>
</ol>
<p>And to set a new background image on .dropdown, you&#8217;ll just need to get more specific with your CSS selectors, for example:</p>
<ol class="code">
<li><code>#blackEyedSusanNav li ul.dropdown a {background-image: foo;}</code></li>
</ol>
<p>Then you can move on to tackling the next steps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard</title>
		<link>http://ghettocooler.net/2007/05/31/simple-navigation-with-css-image-replacement/comment-page-1/#comment-52376</link>
		<dc:creator>Richard</dc:creator>
		<pubDate>Mon, 28 Jun 2010 12:44:43 +0000</pubDate>
		<guid isPermaLink="false">http://ghettocooler.net/2007/05/31/simple-navigation-with-css-image-replacement/#comment-52376</guid>
		<description>Thanks for a great tute - have got it working fine but was wondering how to incorporate a drop down menu in the navigation. I&#039;ve tried using a path of id&#039;s to target the hover state and then trigger a drop down. I can sort of get it working at the link &lt;a href=&quot;http://blackeyedsusans.com.au/newSite/submenuTest.html&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;  but the hover state is the whole nav menu area but for this exercise I only want the drop down to appear when the discography link is hovered over. Also it&#039;s repeating the image of the main nav as a background in the submenu.</description>
		<content:encoded><![CDATA[<p>Thanks for a great tute &#8211; have got it working fine but was wondering how to incorporate a drop down menu in the navigation. I&#8217;ve tried using a path of id&#8217;s to target the hover state and then trigger a drop down. I can sort of get it working at the link <a href="http://blackeyedsusans.com.au/newSite/submenuTest.html" rel="nofollow">here</a>  but the hover state is the whole nav menu area but for this exercise I only want the drop down to appear when the discography link is hovered over. Also it&#8217;s repeating the image of the main nav as a background in the submenu.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gogetsome</title>
		<link>http://ghettocooler.net/2007/05/31/simple-navigation-with-css-image-replacement/comment-page-1/#comment-52330</link>
		<dc:creator>gogetsome</dc:creator>
		<pubDate>Thu, 08 Apr 2010 19:10:28 +0000</pubDate>
		<guid isPermaLink="false">http://ghettocooler.net/2007/05/31/simple-navigation-with-css-image-replacement/#comment-52330</guid>
		<description>Great solution! I have the main navigation working perfectly. I want to also have a sub nav using the same technique. I have that set up and have everything working as expected except the hover state for the sub nav. How can I make the main nav section active and also have the sub nav page also active???</description>
		<content:encoded><![CDATA[<p>Great solution! I have the main navigation working perfectly. I want to also have a sub nav using the same technique. I have that set up and have everything working as expected except the hover state for the sub nav. How can I make the main nav section active and also have the sub nav page also active???</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: @gillian</title>
		<link>http://ghettocooler.net/2007/05/31/simple-navigation-with-css-image-replacement/comment-page-1/#comment-52328</link>
		<dc:creator>@gillian</dc:creator>
		<pubDate>Thu, 01 Apr 2010 19:41:24 +0000</pubDate>
		<guid isPermaLink="false">http://ghettocooler.net/2007/05/31/simple-navigation-with-css-image-replacement/#comment-52328</guid>
		<description>Thanks so much! This was really helpful!</description>
		<content:encoded><![CDATA[<p>Thanks so much! This was really helpful!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bill Keller</title>
		<link>http://ghettocooler.net/2007/05/31/simple-navigation-with-css-image-replacement/comment-page-1/#comment-52323</link>
		<dc:creator>Bill Keller</dc:creator>
		<pubDate>Thu, 25 Mar 2010 10:29:27 +0000</pubDate>
		<guid isPermaLink="false">http://ghettocooler.net/2007/05/31/simple-navigation-with-css-image-replacement/#comment-52323</guid>
		<description>&lt;a href=&quot;#comment-52322&quot; rel=&quot;nofollow&quot;&gt;@Julie&lt;/a&gt;, glad you&#039;re finding it helpful. This is just a normal CSS selector. You can use any selectors necessary to &quot;get your navigation to stay in the :hover state&quot;. Follow the normal CSS selector rules &amp; you&#039;ll be in good shape.

In the example I provide, any &lt;strong&gt;Anchor&lt;/strong&gt; tag inside of an &lt;strong&gt;LI&lt;/strong&gt;, inside of an &lt;strong&gt;UL&lt;/strong&gt;, on a page with a &lt;strong&gt;Body id=&quot;about&quot;&lt;/strong&gt; will be selected.</description>
		<content:encoded><![CDATA[<p><a href="#comment-52322" rel="nofollow">@Julie</a>, glad you&#8217;re finding it helpful. This is just a normal CSS selector. You can use any selectors necessary to &#8220;get your navigation to stay in the :hover state&#8221;. Follow the normal CSS selector rules &#038; you&#8217;ll be in good shape.</p>
<p>In the example I provide, any <strong>Anchor</strong> tag inside of an <strong>LI</strong>, inside of an <strong>UL</strong>, on a page with a <strong>Body id=&#8221;about&#8221;</strong> will be selected.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Julie</title>
		<link>http://ghettocooler.net/2007/05/31/simple-navigation-with-css-image-replacement/comment-page-1/#comment-52322</link>
		<dc:creator>Julie</dc:creator>
		<pubDate>Wed, 24 Mar 2010 20:01:30 +0000</pubDate>
		<guid isPermaLink="false">http://ghettocooler.net/2007/05/31/simple-navigation-with-css-image-replacement/#comment-52322</guid>
		<description>&quot;Update:

To get your hover state to stay in the hover state, to mark the users currently selected page for example, I like to use an ID or class on the body tag.

For example, on a contact page add:

   1. 

And in your CSS hover state, add a line for body#contact:

   1. ul li a:hover,
   2. body#contact ul li a {
   3.    background-position: 0 -66px;
   4.    } 
&quot;

Thanks for the tutorial. It&#039;s very helpful. I&#039;m relatively new to a lot of this. Regarding the update quoted here, what is recommended when the image replacement navigation is in a div tag, versus floating loose in the body? The body ID isn&#039;t working for me. Would a class solve this? Thanks much!</description>
		<content:encoded><![CDATA[<p>&#8220;Update:</p>
<p>To get your hover state to stay in the hover state, to mark the users currently selected page for example, I like to use an ID or class on the body tag.</p>
<p>For example, on a contact page add:</p>
<p>   1. </p>
<p>And in your CSS hover state, add a line for body#contact:</p>
<p>   1. ul li a:hover,<br />
   2. body#contact ul li a {<br />
   3.    background-position: 0 -66px;<br />
   4.    }<br />
&#8221;</p>
<p>Thanks for the tutorial. It&#8217;s very helpful. I&#8217;m relatively new to a lot of this. Regarding the update quoted here, what is recommended when the image replacement navigation is in a div tag, versus floating loose in the body? The body ID isn&#8217;t working for me. Would a class solve this? Thanks much!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ADGA Intro to Web Design &#187; Blog Archive &#187; More questions from class</title>
		<link>http://ghettocooler.net/2007/05/31/simple-navigation-with-css-image-replacement/comment-page-1/#comment-51994</link>
		<dc:creator>ADGA Intro to Web Design &#187; Blog Archive &#187; More questions from class</dc:creator>
		<pubDate>Sat, 31 Oct 2009 15:13:00 +0000</pubDate>
		<guid isPermaLink="false">http://ghettocooler.net/2007/05/31/simple-navigation-with-css-image-replacement/#comment-51994</guid>
		<description>[...] Simple Navigation with CSS Image Replacement [...]</description>
		<content:encoded><![CDATA[<p>[...] Simple Navigation with CSS Image Replacement [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Huw Rowlands</title>
		<link>http://ghettocooler.net/2007/05/31/simple-navigation-with-css-image-replacement/comment-page-1/#comment-51877</link>
		<dc:creator>Huw Rowlands</dc:creator>
		<pubDate>Mon, 17 Aug 2009 20:26:23 +0000</pubDate>
		<guid isPermaLink="false">http://ghettocooler.net/2007/05/31/simple-navigation-with-css-image-replacement/#comment-51877</guid>
		<description>This tut has helped over and over again. No other one helps just as much as this one does. Thanks!</description>
		<content:encoded><![CDATA[<p>This tut has helped over and over again. No other one helps just as much as this one does. Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic page generated in 0.250 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-05-16 06:41:04 -->

