#2342 - Composr 10b5: Theme wizard always uses white in some elements no matter what seed color you use This is a spacer post for a website comment topic. The content this topic relates to: #2342 - Composr 10b5: Theme wizard always uses white in some elements no matter what seed color you use By Guest posted 24th Mar 2016, 11:08 AM Do not fill this field in. We'll add a CSS gradient for browsers that support it, which will stretch... diff --git a/themes/default/css/global.css b/themes/default/css/global.css index 3b9d208..57faf18 100644 --- a/themes/default/css/global.css +++ b/themes/default/css/global.css @@ -1451,6 +1451,7 @@ td>.box, .right>.box, .left>.box { background-color: {$GET,box_title_background}; background-image: url('{$IMG_INLINE;,gradient}'); background-repeat: repeat-x; + {$BETA_CSS_PROPERTY,background-image: linear-gradient(to bottom\, {$GET,lgrad}\, {$GET,dgrad});} color: {$GET,box_title_text}; text-align: center; font-weight: bold; Maybe your server does not support GD well for image generation. I'll check. By Guest posted 24th Mar 2016, 1:53 PM Fixed, and fixed on your server. It was a pre-existing issue that became more prominent due to an unrelated change in b5. 0 guests and 0 members have recently viewed this. Sort: Relevance Newest first Oldest first Rating Popularity
diff --git a/themes/default/css/global.css b/themes/default/css/global.css
index 3b9d208..57faf18 100644
--- a/themes/default/css/global.css
+++ b/themes/default/css/global.css
@@ -1451,6 +1451,7 @@ td>.box, .right>.box, .left>.box {
background-color: {$GET,box_title_background};
background-image: url('{$IMG_INLINE;,gradient}');
background-repeat: repeat-x;
+ {$BETA_CSS_PROPERTY,background-image: linear-gradient(to bottom\, {$GET,lgrad}\, {$GET,dgrad});}
color: {$GET,box_title_text};
text-align: center;
font-weight: bold;
Maybe your server does not support GD well for image generation. I'll check.
It was a pre-existing issue that became more prominent due to an unrelated change in b5.