tags:

views:

35

answers:

2

Disabled buttons look enabled in Firefox and Chrome. I opened the same page in ie, firefox, chrome and this is the output:

alt text

"DashBoard" and "Calendar" are disabled
"Agent Info" is enabled.

Here I'm using normal asp buttons with css. What do I do?

A: 

You can modify the way they look with CSS:

element[disabled]
{
    ...
}
Jan Kuča
+1  A: 

You could add css for disabled buttons. Something like

input[disabled="disabled"] { /* disabled styles */ }
jrummell
thanks dude it worked
Harsha