This is such an informative thread. It seems a good place to pose a related problem.
I have not been successful yet removing inherited anchored qualities from a linked graphic sitting at the bottom of a css nested ul nav.
Here is hopefully the relevant (summarized) code:
<div id="navcontainer">
<ul id="navlist">
<li id="active"><a href="index.htm" id="current">Site Home Page</a></li>
<li><a href="/papers-articles/index-articles.htm">Articles</a></li>
<ul id="subnavlist">
<li><a href="/papers-articles/index-articles.htm">Constitution</a></li>
<li><a href="/papers-articles/index-articles.htm">Democracy</a></li>
</ul></li>
<li><a href="contact.htm">Contact Us</a></li>
<li><div align="center"><img src="images/logo.gif" vspace="10"></div></li>
<li><div align="center"><a class="ads, ads:active, ads:hover, ads:linked, ads:visited, ul ads, ul ads:active, ul ads:hover, ul ads:linked, ul ads:visited, ul ul ads, ul ul ads:active, ul ul ads:hover, ul ul ads:links, ul ul ads:visited" href="/audio/professor.mp3" ><img src="images/audio-link.jpg" border="0"></a></div>
</li>
</ul></li>
</div>
......css.......
#navcontainer { whatever }
#navcontainer ul { whatever }
#navcontainer li { whatever }
#navcontainer a { whatever }
#navcontainer a:hover { whatever }
#navcontainer ul ul li { whatever }
#navcontainer ul ul a { whatever }
#navcontainer ul ul a:hover { whatever }
#navcontainer a.ads, a.ads:active, a.ads:hover, a.ads:linked, a.ads:visited, ul a.ads, ul a.ads:active, ul a.ads:hover, ul a.ads:linked, ul a.ads:visited, ul ul a.ads, ul ul a.ads:active, ul ul a.ads:hover, ul ul a.ads:links, ul ul a.ads:visited
{ display: inline;
padding:0;
border:0;
margin:0;
width: 196px;
background-color: #369;
text-decoration: none;
}
Explanation; The html code is based a nested (2-level) unordered list, with hover effects, etc.
This forms a column for navigation 196 pixels wide. At the bottom, after the last item, I added a gif ['logo', non-linking] which sits there just so nice. However, when I added a linked gif of the same size just under it [professor.mp3], I now had to eliminate the active, hover and other anchor-related effects except perhaps for the hand mouseover that reveals a link there.
It didn't seem to work, so in my frustration I took out an elephant gun and added all the link possibilities to the 'ads' [as in advertising boxes] 'a' selectors, covering both levels of ul as well with all variants.
Alas, this didn't help either. I almost fear hearing how easy this is but, nonetheless, it would still be quite relieving.
Anybody?
PS - url is foundation1.org - bottom of nav on the homepage.