Read the statement by Michael Teeuw here.
change font of modules (local fonts)
-
@broberg so thanks my friend solved.
-
hi all,
I tried to change my newsfeed font and i added below commands to custom.css but it didnt work. What should i do ?
Thanks
.newsfeed { font-family: Verdana; font-style: normal; font-weight: 100; src: local("Verdana"), url("/home/pi/MagicMirror/fonts/Verdana.ttf") format("truetype"); }
-
@bekirs
@font-face
is not a style rule, but declaration (“at-rule”). Here’s an explanation of how it works.So your code should instead be:
@font-face { font-family: Verdana; font-style: normal; font-weight: 100; src: local("Verdana"), url("/home/pi/MagicMirror/fonts/Verdana.ttf") format("truetype"); } .newsfeed { font-family: Verdana; }
This avoids using the local version of the Verdana font. Why not use the local Verdana font (or install your desired alternative) and use the below instead?
.newsfeed { font-family: Verdana; }
-
@ninjabreadman said in change font of modules (local fonts):
@font-face {
font-family: Verdana;
font-style: normal;
font-weight: 100;
src:
local(“Verdana”),
url(“/home/pi/MagicMirror/fonts/Verdana.ttf”) format(“truetype”);
}.newsfeed {
font-family: Verdana;
}I wrote below but it didnt work
@font-face {
font-family: Verdana;
font-style: normal;
font-weight: 100;
src:
local(“Verdana”),
url(“/home/pi/MagicMirror/fonts/Verdana.ttf”) format(“truetype”);
}.newsfeed {
font-family: Verdana;
} -
@bekirs My first question: Is Verdana actually located in
~/MagicMirror/fonts/Verdana.ttf
? If so, you might tryurl("file:///home/pi/MagicMirror/fonts/Verdana.ttf")
. When you runnpm start dev
in Terminal while in~/MagicMirror
, are there any console errors (in Terminal or Electron)? -
verdana is located in true folder. and after i run npm start dev i could not see any error thank you
-
@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
woff
orwoff2
. 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 generator
to 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/fonts
And 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-face
css rule within thebody
CSS rule. CSS spec says this should work but I’ve found the in most cases browsers just ignore it.