Modal Background Opacity

I love how easy it is to set the modal background colour. Is there a way to set the modal background opacity so the page shows through in the background slightly?

@brad, hello

Do it is very simple, though not through a visual interface. You just need to add a style for the modal element:

background-color: rgba(0, 125, 215, 0.7) !important

either

background-color: #007bff !important;
opacity: 0.7;

this code will give transparency not only to the background, but also to the window itself (sometimes required in design decisions)

1 Like

This may help I put together a while ago
https://wapplervirtualacademy.com/faqs/3/

1 Like

Thanks guys, I will try and blend both your responses and see if I can figure it out. Much appreciated.