views:

29

answers:

2

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

Thanks

+2  A: 

Change the css styles for disabled link buttons.

See how do do it it here.

Soviut
A: 

Hi,

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