Come together with the global Drupal community in Rotterdam, 28 Sept – 1 Oct 2026. Sessions, contribution, connection, and Early Bird savings until 8 June.
you are absolutely right with your mention. Based on your comment, I tried to accomplish gradient support for all browsers. So i made the following changes only at the style.css file and only at the gradient background attribute.
All changes are committed and will be included in next CorporateClean release 7.x-1.1. But if somebody needs these changes now, just replace already background rules with the following background rules.
I was under the impression that from IE8 and up that the proper filter syntax was to use -ms-filter: instead of filter: to properly make the CSS to be IE8-IE9 compliant AND the IE8-9 declaration must come first.
So in the case of the Banner style...I think the proper syntax would be
/*IE8-9*/
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#efeeee', endColorstr='#dadada')";
}
/* IE6-7 (which I think technically would work all the way back to IE4...but don't hold me to that.)*/
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#efeeee', endColorstr='#dadada');
}
From http://msdn.microsoft.com/en-us/library/ms533754%28v=vs.85%29.aspx
is this tidbit
Windows Internet Explorer 8. The -ms-filter attribute is an extension to CSS, and can be used as a synonym for filter in IE8 Standards mode. When you use -ms-filter, enclose the progid in single quotes (') or double quotes ("). Use commas (,) to separate multiple values.
Comments
Comment #1
gtsopour commentedHello lolsteamroller,
you are absolutely right with your mention. Based on your comment, I tried to accomplish gradient support for all browsers. So i made the following changes only at the style.css file and only at the gradient background attribute.
All changes are committed and will be included in next CorporateClean release 7.x-1.1. But if somebody needs these changes now, just replace already background rules with the following background rules.
#header
#banner
#content
#footer-bottom
#comments-title
#comments ul.links li a
.links ul li a, a.more, #edit-submit, #edit-preview, input.form-submit
Thanks lolsteamroller again
/George
Comment #2
lolsteamroller commentedHey.
Wanted to say thanks for this.
--lolsteamroller
Comment #3
davedickens commentedI was under the impression that from IE8 and up that the proper filter syntax was to use -ms-filter: instead of filter: to properly make the CSS to be IE8-IE9 compliant AND the IE8-9 declaration must come first.
So in the case of the Banner style...I think the proper syntax would be
/*IE8-9*/
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#efeeee', endColorstr='#dadada')";
}
/* IE6-7 (which I think technically would work all the way back to IE4...but don't hold me to that.)*/
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#efeeee', endColorstr='#dadada');
}
From http://msdn.microsoft.com/en-us/library/ms533754%28v=vs.85%29.aspx
is this tidbit
Windows Internet Explorer 8. The -ms-filter attribute is an extension to CSS, and can be used as a synonym for filter in IE8 Standards mode. When you use -ms-filter, enclose the progid in single quotes (') or double quotes ("). Use commas (,) to separate multiple values.