Read the statement by Michael Teeuw here.
MMM-CalendarExt3 showHeader config option
-
@scottwalsh cant you use css to hide the header?
-
I have two instances of the module, and I only want to hide the header on one instance. If I use CSS, wouldn’t it hide it for both?
-
@scottwalsh use the MagicMirror module classes option to define a special class to use in the css selector
see the options here
https://docs.magicmirror.builders/modules/configuration.htmlmodule:"...", position:"....", classes:"foo bar", config:{ . . }
then use
.foo
or .bar
instead of
.CX3or use the module id in the css selector
#module-id-stringsee the second link in my signature below about using the browser developer window elements tab to explore the generated html content, including the module id
-
Thanks for the tips, will take a look tomorrow to see how would do it via CSS.
Why would you recommend doing it via CSS? Turning the headers on and off as a config option feel more intuitive to me compared to using CSS to surpress them.
-
@scottwalsh because this module depends on css to suppress lots of other content , so its natural, and doesn’t require code change in any version