0

Is there an easy way to stop LinkButtons from being greyed out in IE when disabled, as it makes them hard to read.

Thanks

Georg Fritzsche
  • 97,545
  • 26
  • 194
  • 236
John
  • 11
  • 2

2 Answers2

2

Change the css styles for disabled link buttons.

See how do do it it here.

Soviut
  • 88,194
  • 49
  • 192
  • 260
0

As the question is tagged with "css", I think this answer could be helpful too:

The key concept of styling a link stands toward following steps:

  1. You have to declare styles of 4 different condition which are a:link , a:visited , a:hover , a:active .
  2. You have to be careful about the order. Because it matters. link > visited > hover > active.
  3. Eventhough you don't need styling one or more of conditions, nevertheless, style them all.

If you pay attention to these, you may have perfectly styled links.

I hope it helps.

scaryguy
  • 7,720
  • 3
  • 36
  • 52