Read the statement by Michael Teeuw here.
The most basic question about custom css
-
@JMac in the /css directory. Save the file as custom.css
-
@tdw
I’m currently looking at 3 files within the MagicMirror/css folder.
custom.css
custom.css-sample
main.cssso does it go in the custom.css file or do I have to make a new custom.css file containing the information for this one module and save it?
do all future css changes go within the custom.css file, or does each css change have it’s own file?
-
@JMac there is only one custom.css
the design in MagicMirror for css is a stack
main.css is loaded first
then any css files provided by modules
and last custom.cssthat means any definitions in custom.css will override anything defined before
-
so I added,
#GPHOTO_CURRENT {
background-size: cover;
}
to the custom.css in the MagicMirror/css folder,from your list this appears to be the correct place to put it, yet it appears to make no difference.
-
@JMac see the link in my signature about learning css