How To Make The Background-color Of The Main Body Transparent - Question | JoomShaper
Black Friday sale is live with flat 50% OFF. Sale ends soon! Grab your deal now!

How To Make The Background-color Of The Main Body Transparent

P

Petra

Template 2 years ago

It is possible to make the background color of the main body transparent? Currently it is white and I would like to make the color transparent, or remove it completely.

I'm using the wayne template with the boxed layout.

Thanks!

0
3 Answers
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 2 years ago #131773

Hi,

yes, this time you have to use Custom CSS to modify background color.

Here is example CSS code:

.layout-boxed .body-innerwrapper {
  background: rgba(255,255,255,0.5);
}

RGBA - contain color value (RGB) and transparency value.

An RGBA color value is specified with: rgba(red, green, blue, alpha)


whole rest is on your hands (and keyboard).

0
P
Petra
Accepted Answer
2 years ago #131774

Thanks!

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 2 years ago #131776
.layout-boxed .body-innerwrapper {
background: transparent; }

100% transparent. Tips taken from our Helix documenation :)

0