Closed (fixed)
Project:
Corporate Clean
Version:
7.x-1.0
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Issue tags:
Reporter:
Created:
19 Jul 2011 at 06:11 UTC
Updated:
30 Jul 2011 at 19:47 UTC
I've fixed it for myself, but add this to theme -
background: -o-linear-gradient(top, #efeeee, #dadada);
Thanks ahead.
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.