Webskater
11-19-2004, 01:20 PM
In a style sheet I have:
a { font-family: Tahoma; font-size: 8pt; color: #000066; font-weight: bold; text-decoration: none}
a:hover { font-family: Tahoma; font-size: 8pt; color: #0000FF; font-weight: bold }
A.info { font-family: Tahoma; font-size: 8pt; color: maroon; font-weight: bold; text-decoration: none}
A.info:hover { color: blue;}
and these seem to work. Hyperlinks set as <a class=info> appear in maroon
However, on another page I want the hyperlinks to look completely different. So I have this on the page:
<style>
A.smenu { font-family: verdana: font-size: 7pt; color: black; text-decoration: none; }
A.smenu:hover { color: grey;}
</style>
But on this page the only thing that has changed is the color of the hyperlink. What do you have to do to get different looking hyperlinks on different pages?
Thanks for any help.
a { font-family: Tahoma; font-size: 8pt; color: #000066; font-weight: bold; text-decoration: none}
a:hover { font-family: Tahoma; font-size: 8pt; color: #0000FF; font-weight: bold }
A.info { font-family: Tahoma; font-size: 8pt; color: maroon; font-weight: bold; text-decoration: none}
A.info:hover { color: blue;}
and these seem to work. Hyperlinks set as <a class=info> appear in maroon
However, on another page I want the hyperlinks to look completely different. So I have this on the page:
<style>
A.smenu { font-family: verdana: font-size: 7pt; color: black; text-decoration: none; }
A.smenu:hover { color: grey;}
</style>
But on this page the only thing that has changed is the color of the hyperlink. What do you have to do to get different looking hyperlinks on different pages?
Thanks for any help.