Hello all
I want to apply a different style to buttons in the shopping cart depending on whether they are disabled or not.
So far it sort of works but in IE6 it produces the following effect as attached in the GIF sc_style.gif. The disabled text has a grey on white blurry effect which doesn't show up in Netscape, for example.
The CSS is as follows:
active buttons:
CSS: input.atc { font-size:10px; background:#333366; color:#FFFFFF; border:1 #FFFFFF solid}
<input>: <input type="submit" name="ACTION" value="Retrieve" class="atc" />
disabled buttons:
CSS: input.btndisable { font-size:10px; background:#7B93BA; border:1 #FFFFFF solid; color:#FFFFFF}
<input>: <input type="submit" name="ACTION" value="Update" class="btndisable" disabled="disabled" />
I have tried it with disabled="disabled" as just 'disabled' but no change.
Any suggestions?
Thank you!
I want to apply a different style to buttons in the shopping cart depending on whether they are disabled or not.
So far it sort of works but in IE6 it produces the following effect as attached in the GIF sc_style.gif. The disabled text has a grey on white blurry effect which doesn't show up in Netscape, for example.
The CSS is as follows:
active buttons:
CSS: input.atc { font-size:10px; background:#333366; color:#FFFFFF; border:1 #FFFFFF solid}
<input>: <input type="submit" name="ACTION" value="Retrieve" class="atc" />
disabled buttons:
CSS: input.btndisable { font-size:10px; background:#7B93BA; border:1 #FFFFFF solid; color:#FFFFFF}
<input>: <input type="submit" name="ACTION" value="Update" class="btndisable" disabled="disabled" />
I have tried it with disabled="disabled" as just 'disabled' but no change.
Any suggestions?
Thank you!
Comment