Hello
I’m trying to achieve what’s been discussed in their thread – https://kriesi.at/support/topic/add-background-color-to-column/ – but for some reason it’s not working for me.
Should the code block go within the column, or above it?
Does the content then have to be within the code block. Or will the background apply to all content within that column.
It’s a 3/5 column within a colour section that I’m trying to apply a background colour to. Then hopefully change the opacity of it.
Hi edfossie!
Could you provide us with a link to the site in question so that we can take a closer look please? Screenshots of what you are trying to achieve would also help.
Cheers!
Rikard
Hey!
Add this to your custom CSS.
#av_section_1 .av_textblock_section {
background: rgba(0,0,0,0.6);
padding: 20px;
}
It would be best to give the color section an ID and then change the CSS to this.
#yourID .av_textblock_section {
background: rgba(0,0,0,0.6);
padding: 20px;
}
Cheers!
Elliott
Great stuff, thanks