Hi Dan,
Thanks for your input. Actually I will post a link here to let you know what I'm talking about:
The other pages have links at the bottom of the page in the "copyright" div that I put together, but on the "links" page I tried what you said, but maybe I'm confused?
I want the text and colors in the "content" to be as such:
a:link {
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
font-weight: bold;
color: #efbf95;
text-align: center;
}
a:visited {
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
font-weight: bold;
color: #efbf95;
}
a:hover {
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
font-weight: bold;
color: c78e5d;
}
but the links in the copyright are affected the same way.
so, I write it as?
a.link
a.visited
a.hover
instead? when I applied these classes to the links, they didn't work
I coded them like this:
a.link {
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
font-weight: bold;
color: #efbf95;
text-align: center;
}
a.visited {
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
font-weight: bold;
color: #efbf95;
}
a.hover {
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
font-weight: bold;
color: c78e5d;
}
I want to change the colors AND the text as well, completely different than the links in the copyright area.
swizzy