Forum Moderators: not2easy
i am using a navigation bar at the top of my pages that has been designed with CSS and java (thanks to gazingus).
I have set it up so that visited links have no decoration and do not change colour in the navigation, as opposed to the main body of text where they do behave as normal links.
i.e. a:visited {.......normal behaviour
and a.actuator:visited {.......no changes to appearance
this works fine in firefox (gotta love it!)
but in internet explorer, for some reason, it ignores the 'a class="actuator"' and uses my normal link rules. (gotta... errr... not love it!)
any ideas?
many thanks,
jim.
<style type="text/css">
#actuator a{
text-decoration: none;
}
</style>
<body>
<p id="actuator">
<a href="#">Actuator link</a>
</p>
<p>
<a href="#">Normal link</a>
</p>
</body>
where the <p> tags are you could use anything <table> <div> etc.