Hi folks, does anyone know how to change the background colour of individual columns, created using the layout builder?
I have a page with 3 column elements containing text and an image, and I want to give them each it’s own background colour, by targeting them with a custom style – in the same way you can with Colour Sections.
Any helps is appreciated.
Thanks,
G
Hey Glyphism!
You can’t assign them an ID, but they get an automatic numeric class according to the order they are created, you can check it using the Inspector tool in Chrome:
Regards,
Josue
Thanks Josue, that’s a great tip. I just created a class like so below, and it worked perfect. This ads lots of great opportunity for styling content within specific column areas.
.avia-builder-el-4 {
background-color: #000000;
}
However one issue I have just noticed is that if I make any layout changes to the page, the column ids are being regenerated, so that layout is breaking… is there any way to control this to ensure the id numbers stick?