I have a background slideshow on a page on my site. I’m trying to make the content section on top of it have a transparent background, but can’t seem to do it.
Here is the site: http://supergroupshow.biz/in-which
Thanks!
I have a background slideshow on a page on my site. I’m trying to make the content section on top of it have a transparent background, but can’t seem to do it.
Here is the site: http://supergroupshow.biz/in-which
Thanks!
Try this
.x-section-1 {
background-color: transparent !Important;
}
You can change background-color: transparent to any color you want so:
background-color: black;
or
background-color: #e5e5e5;
If you inspect element you can see the section has a class named: .x-section-1
So next time you want this for a different section make sure you find out which section number you want to modify,
Cheers
Scott
I tried that, putting it in the global css, and just entering it as a style in cornerstone and neither worked. Any other ideas?
Hi There,
Please try adding the following CSS under Customizer > Custom > Global CSS:
.site {
background-color: rgba(255, 255, 255, 0);
}
After that add this inline CSS to the style field of your section:
background: transparent;