I have the following styles:
My problem is that if I uncomment the "font-style: italic;" code, the style is not loaded after an asynchronous postback in IE7.
When I remove this line of code everything works fine.
I would Really really like to have to the text in the <span> with the "unavailabl e" style to be italicized.
I tried changing it to font-style:oblique;
However this did not fix the problem either.
Is there a way around this problem?
Thanks for your time
-Frinny
Code:
.unavailable
{
/*font-style: italic;*/
color: #878787;
}
.available{
}
When I remove this line of code everything works fine.
I would Really really like to have to the text in the <span> with the "unavailabl e" style to be italicized.
I tried changing it to font-style:oblique;
However this did not fix the problem either.
Is there a way around this problem?
Thanks for your time
-Frinny
Comment