default overrides

liunx

Guest
Hey, i was wondering if anyone could point me in the direction of a script that could override my default link script. what i have is a basic script that says certain links will change to a certain color on mouseover, i was just wondering if someone could give me the script so i can make certain links not change colors on mouseover. <br />
i assume this is a pretty basic thing, but i just dont know how. hope that all makes sense. thanks.<!--content-->Something like this, perhaps?<br />
<br />
<style type="text/css"><br />
A.mylinks:link, A.mylinks:visited, A.mylinks:active<br />
{<br />
color: darkblue;<br />
text-decoration: none;<br />
}<br />
A.mylinks:hover<br />
{<br />
color: red;<br />
text-decoration: none;<br />
}<br />
</style><br />
</head><br />
<body><br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"http://www.w3c.org" class="mylinks">test</a><!--content-->edit: nevermind, i figured it out. thanks.<!--content-->
 
Back
Top