I've been trying - without success - to make some changes to my dashboard via custom.css, but all the evidence suggests that the custom.css file isn't being parsed at all. This is really frustrating me now!
I put some complete garbage in the file to make sure it would throw up an error, and no error appeared in the browser console.
Code: Select all
/* custom.css */
// check that it's really reading the file...
body {
background-color: pink !important;
}
!loadofnonsense ! ! #
// these don't work either
.block_VentSys .off {
color: red !important;
}
.block_VentSys .on {
color:#00ff00 !important;
}
Is dashticz perhaps trying to open the files for write rather than read access (makes sense for CONFIG.js but shouldn't be the case for custom.css), and running as anonymous or some other user? [Edit: even changing the files to 666 permissions doesn't eliminate the css or UI config problem, so it's not that simple!]
Is there anything else could mean that custom.css isn't parsed or is ignored?