Read the statement by Michael Teeuw here.
change font of modules (local fonts)
-
@bekirs Did you try using
url("file:///home/pi/MagicMirror/fonts/Verdana.ttf")? -
@bekirs You need to use a virtual path to the file, not a physical path. Change your CSS as follows:
@font-face { font-family: "Verdana"; font-style: normal; font-weight: 100; src: url("/fonts/Verdana.ttf") format("truetype"); }That said, I’m not sure about TrueType support in Chrome, and subsequently Electron. if this still doesn’t work, you’ll need to convert the font into a supported format, such as
wofforwoff2. Font Squirrel is an online tool that can do it, but you might run into copy protection issues, as Verdana is a licensed font. Do a Google search forweb font generatorto find other options, or you can even try searching for a woff version of Verdana.Of course, the designer in me is screaming that there are so many nicer type faces suitable for UI than Verdana that are available for free. Google Fonts has many options that are readily downloadable, and subsequently can be converted to web font formats using Font Squirrel.
Good luck!
-
So, I’ve downloaded https://www.fontsquirrel.com/fonts/comic-relief and added a font to
/home/pi/MagicMirror/fontsAnd my custom css looks like this
body { @font-face { font-family: "SF"; font-style: normal; font-weight: 100; src: local("ComicRelief"), url("fonts/ComicRelief.ttf") format("truetype"); } }Despite that, font is not seen. What could be the reason?
-
@epi don’t wrap the
@font-facecss rule within thebodyCSS rule. CSS spec says this should work but I’ve found the in most cases browsers just ignore it. -
Still doesn’t work
/***************************************************** * Magic Mirror * * Custom CSS * * * * By Michael Teeuw http://michaelteeuw.nl * * MIT Licensed. * * * * Add any custom CSS below. * * Changes to this files will be ignored by GIT. * *****************************************************/ body { } @font-face { font-family: "SF"; font-style: normal; font-weight: 100; src: local("ComicRelief"), url("fonts/ComicRelief.ttf") format("truetype"); } -
@epi Now you need to apply your font to various elements of the layout. All you’ve done to this point is declare the availability of the font. Try something like this:
body * { font-family: "SF"; }That might get the job done, but there may be more specific rules you need to write to override in other cases. Try this and see how far it gets you.
-
thank you!
-
Did you ever get this working? I’m having exactly the same issue. I have the holiday countdown module. We’re off to Disney, so I thought it would be fun to put it in a Disney font. I’ve downloaded one and put it into a fonts folder under MagicMirror.
I have defined it with an @ statement, included the fonts/ source folder and file name, and added it to the countdown module, but it is still not changing the font for that module :( -
@dangerousden look at the css/roboto.css, or the css/fontawesome.css
and then main.css to see how they are used
