
Re: looking for work around when using !important on backgro
I think I see what's going on. Can you try the following please:
In your PIE_uncompressed.htc, find the following:
Code:
hideBackground: function() {
var rs = this.targetElement.runtimeStyle;
rs.backgroundImage = 'url(about:blank)'; //ensures the background area reacts to mouse events
rs.backgroundColor = 'transparent';
}
Change it to add !important in the backgroundImage and backgroundColor styles:
Code:
hideBackground: function() {
var rs = this.targetElement.runtimeStyle;
rs.backgroundImage = 'url(about:blank) !important'; //ensures the background area reacts to mouse events
rs.backgroundColor = 'transparent !important';
}
This should hopefully give it higher importance than your authors' !important style. Let me know if that works.