Tagged: background, body, transparent
Hi.
I am trying to make the primary site background area transparent instead of a color, and I have tried several CSS snippets without success. Essentially, I want all of the content boxes (made using the built in page builder) to appear as though they are floating…
page: http://mindsparklabz.com/clients/gifts/home/
any ideas?
Hey MindSpark!
Add this to your custom CSS.
.container_wrap {
background: rgba(255,255,255,0.3) !important;
}
#main { background-color:transparent !important; }
The 0.3 value is how transparent you want it to be.
Cheers!
Elliott
thanks!