0

I'd like to change the background color of PCManFM-Qt, the file manager of LxQt. I now a custom stylesheet can be used with the option -stylesheet. I found the program Gammaray, a program similar to gtk-inspector. After some trying I got something working with featherpad. The css code:

#centralWidget{ background-color: red; }

works, but I cannot make red the QTextEdit widget. I don't care about featherpad, because I'd like to change the background color of PCManFM-Qt.

eyllanesc
  • 235,170
  • 19
  • 170
  • 241
franky99
  • 53
  • 1
  • 6

1 Answers1

0

Try QTextEdit { background-color: red; }, or similiar

Qt has to know the object to which apply CSS props.

stepger
  • 21
  • 5