Hello,
in which CSS can I change the colour of the tree. More exactly, I want to change the coulour of the selected item of the tree. The default colour is blue with silver or white. I want to have another colour. Thank you!
- Well, it depends:
If you are using the theme in desktop mode, it automatically uses your system colors (namely background-color: Highlight; color: HighlightText;) for selected items in the wiki tree. You can set this either by changing your system color or by editing the following section in the desktop.css file:
a.node:hover, a.node:active, a#node_selected:link, a#node_selected:visited, a#node_selected:active, a#node_selected:hover { background-color: Highlight; color: HighlightText; }
If you are using the theme in site mode, then you have to edit the following section in the screen.css file:
a.node:hover, a.node:active, a#node_selected:active, a#node_selected:hover { background: #ffb03a url("../img/gradient-S.png") top repeat-x; color: black; text-decoration: none; }