I Noticed that the link commands that are used in explorer are ignored in netscape.
Im not that good at Css, but i know how to use them, so is something wrong whit this, or is netscape like that??
a.:link,
a.:visited,
a.:active{
font size: 14px;
color: #ffffff;
text-decoration: none;
}
a.:hover{
color: #777777;
text-decoration: none;
}The full stop (or period) shouldn’t be there. You only need it if you are using classes (element.classseudo-element), so it should look like this:
a:link,
a:visited {
font-size: 14px;
color: #ffffff;
text-decoration: none;
}
a:hover {
color: #777777;
text-decoration: none;
}
Also, the order should be :link, :visited, :hover, :active. So unless you are specifically styling :active, you shouldn’t even need to include it.
Lastly, you forgot the hyphen betweeen FONT and SIZE. THANKYOU!!!You’re welcome, glad I could help.
If you haven’t already been there, you should check out W3 Schools (<!-- m --><a class="postlink" href="http://www.w3schools.com/css/">http://www.w3schools.com/css/</a><!-- m -->); great resource for CSS and all kinds of other stuff.
Im not that good at Css, but i know how to use them, so is something wrong whit this, or is netscape like that??
a.:link,
a.:visited,
a.:active{
font size: 14px;
color: #ffffff;
text-decoration: none;
}
a.:hover{
color: #777777;
text-decoration: none;
}The full stop (or period) shouldn’t be there. You only need it if you are using classes (element.classseudo-element), so it should look like this:
a:link,
a:visited {
font-size: 14px;
color: #ffffff;
text-decoration: none;
}
a:hover {
color: #777777;
text-decoration: none;
}
Also, the order should be :link, :visited, :hover, :active. So unless you are specifically styling :active, you shouldn’t even need to include it.
Lastly, you forgot the hyphen betweeen FONT and SIZE. THANKYOU!!!You’re welcome, glad I could help.
If you haven’t already been there, you should check out W3 Schools (<!-- m --><a class="postlink" href="http://www.w3schools.com/css/">http://www.w3schools.com/css/</a><!-- m -->); great resource for CSS and all kinds of other stuff.