Hi, i need some different colors for my sidebar blocks. I know there are some other colors available, like blue, green, gray, but i need my "Block Title Background" in dark red and my "Block Background" in light gray. So, how do i create or change this? Thank you!

Comments

drupalninja99’s picture

Hi there, the way to do it is you have to add Fusion styles to the theme but it is overly complicated. I would recommend setting the style to 'none', then adding a css class under 'CSS classes' on that same page. Then you would need to add the CSS. The easiest way without editing the theme is to install css_injector which lets you add CSS. So you would do something like:

.custom_classname h2.block-title {
   background: (color);
}
samgreco’s picture

Can you at least point us in a direction where we might learn to add skin colors? I have someone that would very much like a couple more choices.

drupalninja99’s picture

You would need to modify files inside of the openchurch_theme or create a subtheme of openchurch which is definitely an advanced use case. The skins are in profiles/openchurch/themes/openchurch_theme/skins/core/core.inc and then you also have to add corresponding CSS to make it work.

samgreco’s picture

Well, I do have a sub theme of OpenChurch. So, that's the info I need basically. I'll look at the existing file and see what I can learn.

drupalninja99’s picture

Issue summary: View changes
Status: Active » Closed (works as designed)