I'm building a simple screen. I've added a couple of layouts to organize it. Like so: https://imgur.com/a/61mqDBp
I changed the MainWindow's background to an image through the styleSheet property

Qt Code:
  1. background-image: url(:/MainBackground/MM_Main_Background.png);\nbackground-color: transparent
To copy to clipboard, switch view to plain text mode 

The transparent line was an attempt to fix the issue. Doesn't change anything.

I then added three objects to the top horizontal layout
- a Label
- a lineEdit
- a Label
I used pixmap and added an image to both labels. Both of the images have transparent backgrounds. I was expecting the images to have the correct background color based on their location, but it seems that they keep the color of the background's left side. I've tried changing their properties to be transparent, changed centralWidget and MainWindow's colors but no dice. I did this based on my Google search results but I have not found something concrete/similar to my problem. I'm probably not searching well enough but I don't know how to best word my problem.

Thanks in advance to anyone that reads this.

Empty.ui