By mhalpern on
I am using Pixture_reloaded and I like the block theme with the block-title and block-content colors, but I have just one special block that I don't want these styles applied to. I know if the block I create is for instance block-block-2 I can modify the styles by adding a block-block-2 div. But this doesn't get rid of the styles for the block-title and block-content. How would I do this or can't I have a "custom" block style just for one block?
Comments
This special block will have
This special block will have its own unique CSS ID if 'm not mistaken, so you're half way there by adding specific stylings to that block, and what you need to do next is to override inherited CSS classes for block-title and block-content.
So something like #block-block-1 .block-content { etc...} - will override the inherited classes. If you're not sure which classes to override use Firebug to look up all the CSS definitions being applied.
Hope it helps.
that's it!
Worked perfectly, thanks so much!