try this:
a.main_links:link
or
a.main_links:hover
There is no hover class on your selector.
I tested this and it worked:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Tester</title>
<style type="text/css" media="all">
@import "stylesheet.css";
</style>
</head>
<body>
<div id="container">
<a href="#" class="test">TEST!</a>
</div>
</body>
</html>
Code:
body {
padding: 0;
margin: 0;
text-align: center;
background-color: #363636;
font-size: 76%;
color: #363636;
}
#container {
width: 601px;
text-align: left;
background-color: #363636;
margin: 0 auto;
padding: 0;
}
a, a:link, a:active {
color: #b03a67;
font: 1em arial, verdana, helvetica, sans-serif;
}
a:hover {
color: #ff5093;
}
a.test:hover {
color: #fff;
}
Bookmarks