Hi I am not a good coder,

Is there a module that can make customized block color on blocks?
example : you create a block >>>>then there is maybe a field (like garland) where you can modify header color, background color even link color of the block.
Man a module like that would be great.

also do you know if someone is doing design work for drupal that can matche these guys in joomla http://demo.rockettheme.com/

Comments

nonprofit’s picture

Hey wallbay1,

This would best be accomplished in your style.css, but it does involve coding (but only a little bit).

For example:

.block {
background: red;
}

Or, use a hex color.

Blessings!

-NP

wallbay1’s picture

Thank you very much

wallbay1’s picture

do you know if there is way to give different color to different block?

nonprofit’s picture

Hey wallbay1,

Your theming of the blocks will cascade depending on how you name your class (or ID).
For example,

.block {
property: value;
}

will apply to all blocks.

However,

#block-user-1 {
property: value;
}

or

#block-menu-692 {
property: value;
}

will only apply to the specific block mentioned.

You can easily assign different colors to different blocks by assigning a unique color to each in your style.css.

Blessings!

-NP