Hey Guys,

I'm trying to style my QGroupBox a little.
What I've done yet:

Qt Code:
  1.  
  2. background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
  3. stop: 0 #E0E0E0, stop: 1 #FFFFFF);
  4. border: 2px solid rgb(66, 66, 66);
  5. border-top: 30px solid rgb(66, 66, 66);
  6.  
  7.  
  8. border-bottom-right-radius: 20px;
  9. border-bottom-left-radius: 20px;
  10. margin-top: 0ex; /* leave space at the top for the title */
  11. font-weight: bold;
  12. }
  13.  
  14. QGroupBox::title {
  15.  
  16. subcontrol-origin: margin;
  17. subcontrol-position: top left; /* position at the top center */
  18.  
  19. background-color: rgb(66, 66, 66);
  20. color: rgb(255, 255, 255);
  21. padding: 8 10px;
  22. }
To copy to clipboard, switch view to plain text mode 

That looks good for me, but what i would like to have is an image left of the title.
Any ideas how to do that?

Thanks in advance.

LG from germany