A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
Word wrap Module?
-
Hi, i have a quesiton. I have a module which is in the bottom_left and for some reason, the text doesn’t word wrap. I am just wondering if there’s a way to do this with the custom.css file or if I have to add something to my module itself. I basically just want to wrap it similar to as wide as the calendar module is.
Thanks in advance.default
-
Hi, yes it’s possible but you would have to define the size for the module for it to contain the text.
(Otherwise it just fills the available space in the bottom_left region)so in the custom.css add something like this :
.MMM_modulename { width : 400px; }
Replace the “MMM_modulename” with the name of the module and adjust the width accordingly.