Hello,

Thanks a lot for your nice theme and the colorable demo.

I just want to change the background color of the theme and it is does not seem that easy. I should have guessed since ALL variant share the same white background ... :).

The thing is that all "cut-off" pictures embed a white background instead of a transparent one and I don't see a way around that.

Is there a way to change the background color globally and only once ? on the main image map ? or is it a matter of changin one by one the dozens of generated pictures ? with the problem or saving / re applying / Redoing it each time a change is made to some other part of the theme ?

Am I looking into the wrong direction ?

Thanks a lot for your time and efforts for the community.

CommentFileSizeAuthor
#1 test-site.jpeg111 KBDeepika.chavan
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

Deepika.chavan’s picture

FileSize
111 KB

Hi,
I tried the same thing on my local site. I changed the white background color to 'purple'.
1. To create one custom css file added following line of code in pixture.info

stylesheets[all][] = local.css

2. Create new file say local.css and add following css code in your local.css file :

div#wrapper {
  background:purple url(images/bg-header.png) repeat-x scroll left top;
}

.node {
  background:#F9CBED none repeat scroll 0 0;
}

#sidebar-left, #sidebar-right {
  background: none;
}

.sidebar .block td.block-tl, .sidebar .block td.block-tr {
  background: #EB5AC3 none no-repeat scroll left top;
}

.sidebar .block td.block-bl, .sidebar .block td.block-br {
   background: #F9CBED none no-repeat scroll right bottom;
}

3. Cleared cached data. here -/admin/settings/performance.

Hope this is what you wanted. Please check the attachment.