1-Visitor
May 28, 2021
Question
Background color is set to white but it's black on android device
- May 28, 2021
- 1 reply
- 2948 views
I need to have a white transparent background on a panel widget.
background-color: rgba(255,255,255,0.85);
The is the css code I'm using on the panel widget. When I test in preview everything looks fine, I test on iOS everything looks fine but on Android the background is black.
I tried to see if other colors would work and they do. I can set it to any other color but not white.
This is everything I've tried and it didn't work
background-color: rgb(255,255,255);
background-color: white;
background: white;
background: #FFFFFF;
I had defined height of the panel and removed it in case it could be causing this problem, it wasn't.

