I have a page which uses a stylesheet. The text at the top of the page is using "Maintop" and the text at the bottom of the page is using "MainBottom".
The Stylesheet looks like this:
.MainTop {
font-family: Verdana, Arial,;
font-size: 11 px;
font-weight: bold;
}
a:link, a:visited {
color:cyan
}
.MainBottom {
font-family: Verdana, Arial,;
font-size: xx-small;
font-weight: bold;
}
a:link, a:visited {
color: yellow
}
The Problem: All the text on the page is showing up yellow as specified in .MainBottom. If I delete the a:link line in .MainBottom, all the text shows up as cyan--as specified in .Maintop.
Does anyone know what I'm doing wrong?
The Stylesheet looks like this:
.MainTop {
font-family: Verdana, Arial,;
font-size: 11 px;
font-weight: bold;
}
a:link, a:visited {
color:cyan
}
.MainBottom {
font-family: Verdana, Arial,;
font-size: xx-small;
font-weight: bold;
}
a:link, a:visited {
color: yellow
}
The Problem: All the text on the page is showing up yellow as specified in .MainBottom. If I delete the a:link line in .MainBottom, all the text shows up as cyan--as specified in .Maintop.
Does anyone know what I'm doing wrong?