I have a label in my main window that displays some text. I also have a background image in the main window that needs to show through the label. Only the background and the text should be visible.
I've set the alpha to zero with a white label background following the instructions I found on SO (here and here).
label->setStyleSheet("background-color: rgba(255, 255, 255, 0);");
However, I still see a dark box.