Tagged: color section
Hello, I have to have control of the transparency of the color section? I would like to use color in some section of my website a light transparency. But each will have its opacity. I’ll have to manipulate each. Is this possible?
For example. In the link below page I want to leave a little transparent the color section where has the text.
Hey mleite1!
You can add an ID to each color section in the For Developers: Section ID option in the color section. You can then target your section with CSS like so:
#my-color-section{
background: rgba(0, 0, 0, 0.6);
}
Regards,
Rikard
Hello, I created a name For Developers: Section ID, I took your code and added the name. I changed the color and set the opacity to 0.6. The color became clearer, but the Color Section was not transparent. I want the color section transparent stay and show the BG image of the page.
Hi!
Please try this for the section to be fully transparent:
#my-color-section{
background: rgba(0, 0, 0, 0.0);
}
Best regards,
Rikard
Hi!
You need to first reset the #main element background, the final code should be like this:
#main {
background: transparent;
}
#testcolorsection{
background: rgba(255, 255, 255, 0.8);
}
Cheers!
Josue
Perfect Josua.
Thanks