hi
I put linkbutton in page that but hover attribute for it:
<asp:LinkButton ID="LinkButton18" runat="server" CssClass="Lnkgalary1G">Hello</asp:LinkButton>
.Lnkgalary1G:hover
{
color: #fbb704;
}
and I deffine label and but some text on it...
<asp:Label ID="Label1" runat="server" CssClass="lblNM">This is Test</asp:Label>
here when I go to text (Hello) it will change linkbutton's color now I want when I go to text (This is test == label's text) it change linkbutton's text color...
How I can do it?
best regards
neda