Hi,
I have specified that links should be a certain style using the following in a style sheet.
a:link
a:visited
a:hover
a:active
However, I only really want this to apply to the top menu links. At the moment, all links on the page get this style. How can I specify that other links have a new style?
thanksPut your menu into a div with an id. Then ajust your css to conform.
EXAMPLE:
<style type="text/css">
#div a:link{color:#000000;}
</style>
<div id="div"></div>
That should work.
I have specified that links should be a certain style using the following in a style sheet.
a:link
a:visited
a:hover
a:active
However, I only really want this to apply to the top menu links. At the moment, all links on the page get this style. How can I specify that other links have a new style?
thanksPut your menu into a div with an id. Then ajust your css to conform.
EXAMPLE:
<style type="text/css">
#div a:link{color:#000000;}
</style>
<div id="div"></div>
That should work.