Perseus
Registered
Here is my CSS:
a:link {
font-family: Verdana, serif;
color: white;
text-decoration: none;
}
a:visited {
font-family: Verdana, serif;
color: white;
text-decoration: none;
}
a:hover {
font-family: Verdana, serif;
color: white;
text-decoration: underline;
}
a:active {
font-family: Verdana, serif;
color: #859234;
text-decoration: none;
}
#navigation ul {
list-style: none;
padding: 0px;
position: absolute;
left: 60px;
top: 97px;
padding: 0px;
margin: 0px;
}
And my HTML:
<div id="navigation">
<ul>
<li><a href="index.html">home</a> <a href="portfolio.html">portfolio</a> <a href="services.html">services</a> <a href="contact.html">contact</a></li>
</ul>
</div>
This works in every browser except IE for Mac...any ideas? I would like this fixed ASAP
a:link {
font-family: Verdana, serif;
color: white;
text-decoration: none;
}
a:visited {
font-family: Verdana, serif;
color: white;
text-decoration: none;
}
a:hover {
font-family: Verdana, serif;
color: white;
text-decoration: underline;
}
a:active {
font-family: Verdana, serif;
color: #859234;
text-decoration: none;
}
#navigation ul {
list-style: none;
padding: 0px;
position: absolute;
left: 60px;
top: 97px;
padding: 0px;
margin: 0px;
}
And my HTML:
<div id="navigation">
<ul>
<li><a href="index.html">home</a> <a href="portfolio.html">portfolio</a> <a href="services.html">services</a> <a href="contact.html">contact</a></li>
</ul>
</div>
This works in every browser except IE for Mac...any ideas? I would like this fixed ASAP