Hi,
In my site i have used "background-color:transparent !important;" css, it is not working in IE but in Mozilla is working fine.
And I am using IE 11. Please let me know is there any thing wrong in the syntax. If that is the case please provide me correct solution for that.
Any help would be greatly appreciated.
Regards,
Saya
Sayareddy GPosted Aug 18, 2014, 7:21 AM
Ankur JainPosted Aug 18, 2014, 7:13 AM
Sayareddy GPosted Aug 18, 2014, 6:43 AM
Actually in my sharepoint site the same code "background-color:transparent !important;" was working fine before installing sharepoint 2010 service pack 2. After installation we got this issue. And if i change "transparent" with any color, it is applying that color. Only "transparent" background css is not working in IE.
Ankur JainPosted Aug 18, 2014, 5:43 AM
-moz-opacity: 0;
opacity: 0;
filter: alpha(opacity=0);
Sayareddy GPosted Aug 18, 2014, 5:24 AM
Thanks for your reply.
I have tried this already. There is no use from this code.
Ankur JainPosted Aug 18, 2014, 4:22 AM
try faking a background image or setting it to a blank.gif instead of making it transparent.
background:url(blank.gif);
please mark it as answer if its helpful...