Hi Friends,
I have a style as:
.leftpane { color: #009999; text-decoration:none; font-size: 9px; font-family: Verdana; }
and i use it as:
<a href=# class="leftpane">Text Here</a>
What i also want is that the hyperlink, when hovered should change its color to black. I am able to achieve this by using:
a:hover {color: #000000;}
But this is making all the hyperlinks in my page change their color on hover. I want this feature only to those of class "leftpane". So how do i merge this hover black style into leftpane? Or any idea to implement the same?
Thanx in advance,
Phani
I have a style as:
.leftpane { color: #009999; text-decoration:none; font-size: 9px; font-family: Verdana; }
and i use it as:
<a href=# class="leftpane">Text Here</a>
What i also want is that the hyperlink, when hovered should change its color to black. I am able to achieve this by using:
a:hover {color: #000000;}
But this is making all the hyperlinks in my page change their color on hover. I want this feature only to those of class "leftpane". So how do i merge this hover black style into leftpane? Or any idea to implement the same?
Thanx in advance,
Phani