Hi,
Text block has a default background which is white. Is there a way to change this?
thanks
Hi!
Text Block element has no background color by default. If you would like to add, please use following code
.avia_textblock {
background-color: red;
}
Regards,
Yigit
Hi Yigit – can I add color to an icon box and special heading?
Hey!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.iconbox_content {
background-color: yellow;
}
please edit your special heading element and change its color on color tab
Regards,
Yigit
Thank you so much
Hi,
I think this code will make all text blocks’ backgroud red. I wan to use different colors for different text blocks. Is it possible?
Hey!
Please turn on custom CSS field for ALB elements ( http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ ) and give your text block elements custom CSS classes and use the code as following
.avia_textblock.my-custom-red-block {
background-color: red;
}
Cheers!
Yigit
Elliott and Yigit,
Thanks, it is done