Hello,
I would like to know how can i put a semi translucent background behind some text, buttons, and even contact form. As you can see on my page i have 3 columns and i would like to add a semi translucent background white background for each of this, but in a way there will still be some space in between each of them (so they are not touching and form a one big white block). Any idea how I could do this?
Hey Sasolini!
Try adding this to a codeblock element in your page.
<style type = "text/css">
.entry-content-wrapper .flex_column {
background: none repeat scroll 0 0 rgba(255, 255, 255, 0.3);
padding: 20px;
}
</style>
If you only want it done for a few columns then nest the columns inside a color section and give the section an ID and use that in the CSS code instead.
#yourID .flex_column { }
Best regards,
Elliott
Thank you Elliott, this works just as I wanted it.