I would love a variant of this where the node content has a white background (always easier and certainly for corporate)

CommentFileSizeAuthor
#1 corporateclean-white.jpg390.26 KBgtsopour
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

gtsopour’s picture

Assigned: Unassigned » gtsopour
Issue tags: +corporate, +Corporate Theme, +Corporate Clean Theme
FileSize
390.26 KB

Hello JGO,
You can achieve this result modified only the Corporate Clean theme style.css file. Just make the following change to style.css line 107

From

#content { clear:both; overflow:hidden;
background: #e8e8e8;
/* IE10 */ 
background-image: -ms-linear-gradient(top, #e8e8e8 0%, #efefef 100%);
/* Mozilla Firefox */ 
background-image: -moz-linear-gradient(top, #e8e8e8 0%, #efefef 100%);
/* Opera */ 
background-image: -o-linear-gradient(top, #e8e8e8 0%, #efefef 100%);
/* Webkit (Safari/Chrome 10) */ 
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #e8e8e8), color-stop(1, #efefef));
/* Webkit (Chrome 11+) */ 
background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #efefef 100%);
/* Proposed W3C Markup */ 
background-image: linear-gradient(top, #e8e8e8 0%, #efefef 100%);
/* IE6-9 */ 
filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#e8e8e8', endColorstr='#efefef'); }

To

#content { clear:both; overflow:hidden;
background: #ffffff; }

You can see the final result to my attachment corporateclean-white.jpg

Thanks
/George

gtsopour’s picture

Category: feature » support
Status: Active » Fixed

I changed this issue to fixed.

Automatically closed -- issue fixed for 2 weeks with no activity.

ket qua bong da’s picture

Very clear :) thanks @gtsopour I also need some thing like this.