<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/1.5.1.3" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: Mouse Rollovers</title>
	<link>http://www.mindarch.com/betweencodeblog/2006/02/06/mouse-rollovers/</link>
	<description>Not as risque as between the sheets, but of interest to designers.</description>
	<pubDate>Wed,  7 Jan 2009 13:56:00 +0000</pubDate>
	<generator>http://wordpress.org/?v=1.5.1.3</generator>

	<item>
		<title>by: Charles Harris</title>
		<link>http://www.mindarch.com/betweencodeblog/2006/02/06/mouse-rollovers/#comment-28</link>
		<pubDate>Tue, 21 Nov 2006 15:43:40 +0000</pubDate>
		<guid>http://www.mindarch.com/betweencodeblog/2006/02/06/mouse-rollovers/#comment-28</guid>
					<description>I personally have an issue with the use of images for navigation.  I understand the occasional need, however it should still be done through the use of css not html.  Rather than use code like:   for a link I would suggest something more along the lines of:
HTML 
[code]
    
        
              Link One
              Link Two
              Link Three
        
     
[/code]

CSS
[code]
div#your_id_name_here{
    border-right: 1px solid #fff;
    height: 210px;
    width: 150px;
}

div#your_id_name_here ul{
    list-style: none;
    margin:0;
    padding:0;
}

div#your_id_name_here ul li{
    list-style: none;

}

div#your_id_name_here ul li a{
    background-image url(&quot;image url here&quot;) no-repeat;
    text-decoration: none;
}

div#your_id_name_here ul li a:hover{
    background-image url(&quot;image url here&quot;) no-repeat;
    text-decoration: none;
}

div#your_id_name_here ul li:visited{
    background-image url(&quot;image url here&quot;) no-repeat;
    text-decoration: none;
}

[/code]

While this is not as quick as the previous example (using html) but it is compliant with w3c standards.  Note: my sample here is not functional, but relays the idea of what and how to accomplish the same task.</description>
		<content:encoded><![CDATA[	<p>I personally have an issue with the use of images for navigation.  I understand the occasional need, however it should still be done through the use of css not html.  Rather than use code like:   for a link I would suggest something more along the lines of:<br />
HTML<br />
[code]</p>
	<p>              Link One<br />
              Link Two<br />
              Link Three</p>
	<p>[/code]</p>
	<p>CSS<br />
[code]<br />
div#your_id_name_here{<br />
    border-right: 1px solid #fff;<br />
    height: 210px;<br />
    width: 150px;<br />
}</p>
	<p>div#your_id_name_here ul{<br />
    list-style: none;<br />
    margin:0;<br />
    padding:0;<br />
}</p>
	<p>div#your_id_name_here ul li{<br />
    list-style: none;</p>
	<p>}</p>
	<p>div#your_id_name_here ul li a{<br />
    background-image url(&#8221;image url here&#8221;) no-repeat;<br />
    text-decoration: none;<br />
}</p>
	<p>div#your_id_name_here ul li a:hover{<br />
    background-image url(&#8221;image url here&#8221;) no-repeat;<br />
    text-decoration: none;<br />
}</p>
	<p>div#your_id_name_here ul li:visited{<br />
    background-image url(&#8221;image url here&#8221;) no-repeat;<br />
    text-decoration: none;<br />
}</p>
	<p>[/code]</p>
	<p>While this is not as quick as the previous example (using html) but it is compliant with w3c standards.  Note: my sample here is not functional, but relays the idea of what and how to accomplish the same task.
</p>
]]></content:encoded>
				</item>
</channel>
</rss>
