Reply To: page transparency


imaginem
Support

Hi,

This will require CSS customization. CSS offers two easy properties to make elements transparent.

opacity

and

background: rgba

You can adjust transparency using those properties too.

eg.

background: rgba(0,0,0,0.4);

That’s 0,0,0 rgb for black

0.4 – 40% transparency.

I’d recommend contacting a developer on this.

Thanks