Span class question

Please look at the footer text on the bottom of this page:
<!-- m --><a class="postlink" href="http://www.xn3ct.net/SampleSite02/index.html">http://www.xn3ct.net/SampleSite02/index.html</a><!-- m -->
Mozilla underlines the links (which I don't want), while IE doesn't. What do I need to do, so Mozilla doesn't underline the links?
.Footer {
font-family: Verdana, sans-serif;
text-align: center;
color: #993300;
font-size: 7pt;
letter-spacing: 0px;
}
.Map:link, .Map:visited, .Map:active, {
font-family: Verdana, sans-serif;
color: #993300;
font-size: 7pt;
letter-spacing: 0px;
text-decoration: none;
}
.Map:hover {
color: #FF6600;
text-decoration: underline;
background-color: #3d332e;
}
Thanks.

-jmsI forgot.
I believe I need to use SPAN CLASS, but tried and couldn't figure it working, so I used:
<a class="Map" href=http://www.webdeveloper.com/forum/archive/index.php/"map.html" target="_self">Click here to see a map.</a>
instead.The w3.org CSS validator threw an error on the line in your CSS file that says...

.Map:link, .Map:visited, .Map:active, {

I looked at it a whole bunch of times before I saw the problem: get rid of the last comma (right before the opening curly brace). :)
 
Back
Top