Tagged: transparent
Can you please provide some tips or tricks to make a color section transparent so the back ground image behind the main content is visible through the color section? I want to play a frameless video in the transparent section to show it over the background image.
when editing the color section, give it an ID an then use:
http://kriesi.at/documentation/enfold/custom-css-and-quick-css/
#yourID {
background-color: transparent;
}
Hey!
Thank you for using the theme!
@Flikk is correct, you can edit the color section then look for the For Developers: Section ID field. Add a unique id for the color section. For example, use bg-transparent. Add this on Quick CSS or custom.css:
#bg-transparent {
background-color: transparent;
}
Aside from that, you’ll need to set the background color of the main and wrap_all container to transparent:
#main, .html_stretched #wrap_all {
background-color: transparent;
}
Best regards,
Ismael
Hello,
Updating this thread, hope it’s ok :)
I used the codes above and it works, I guess (http://www.watphagbg.se) but the content area is still not 100% transparent, how do I adjust the transparancy?
Thanks!
Anh