• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
MagicMirror Forum
  • Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.

change font of modules (local fonts)

Scheduled Pinned Locked Moved Solved Custom CSS
20 Posts 7 Posters 18.0k Views 7 Watching
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • B Offline
    broberg Project Sponsor @foryas
    last edited by Nov 12, 2017, 5:12 AM

    @foryas

    .calendar {
    Font-family : YourFont;
    }
    

    That would change the font for the module calendar

    F 1 Reply Last reply Nov 12, 2017, 3:57 PM Reply Quote 2
    • F Offline
      foryas @broberg
      last edited by Nov 12, 2017, 3:57 PM

      @broberg said in change font of modules (local fonts):

      .calendar

      how i can find class (.calendar for your example) of any module to use that?

      B 1 Reply Last reply Nov 12, 2017, 4:39 PM Reply Quote 0
      • B Offline
        broberg Project Sponsor @foryas
        last edited by Nov 12, 2017, 4:39 PM

        @foryas open the developer options in electron or check with F12 in your local browser to see the code.

        But the main module class name are always the name of the module as put in the config file

        .calendar for calendar
        .alarm for alarm
        .MMM-Instagram for MMM-Instagram

        etc etc

        F 1 Reply Last reply Nov 12, 2017, 4:45 PM Reply Quote 0
        • F Offline
          foryas @broberg
          last edited by Nov 12, 2017, 4:45 PM

          @broberg so thanks my friend solved.

          1 Reply Last reply Reply Quote 1
          • B Offline
            bekirs
            last edited by yawns Mar 16, 2018, 2:46 PM Mar 16, 2018, 1:05 PM

            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");
            }
            
            N 1 Reply Last reply Mar 16, 2018, 6:21 PM Reply Quote 0
            • N Offline
              ninjabreadman @bekirs
              last edited by ninjabreadman Mar 16, 2018, 6:22 PM Mar 16, 2018, 6:21 PM

              @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;
              }
              

              Problem with config or JavaScript? Copy/paste it into JSHint.
              Check out the detailed walkthroughs on install, config, modules, etc.

              1 Reply Last reply Reply Quote 0
              • B Offline
                bekirs
                last edited by Mar 19, 2018, 6:15 AM

                @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;
                }

                N J 2 Replies Last reply Mar 19, 2018, 8:59 PM Reply Quote 0
                • N Offline
                  ninjabreadman @bekirs
                  last edited by ninjabreadman Mar 28, 2018, 9:26 PM Mar 19, 2018, 8:59 PM

                  @bekirs My first question: Is Verdana actually located in ~/MagicMirror/fonts/Verdana.ttf? If so, you might try url("file:///home/pi/MagicMirror/fonts/Verdana.ttf"). When you run npm start dev in Terminal while in ~/MagicMirror, are there any console errors (in Terminal or Electron)?

                  Problem with config or JavaScript? Copy/paste it into JSHint.
                  Check out the detailed walkthroughs on install, config, modules, etc.

                  1 Reply Last reply Reply Quote 0
                  • B Offline
                    bekirs
                    last edited by Mar 28, 2018, 8:10 AM

                    verdana is located in true folder. and after i run npm start dev i could not see any error thank you

                    N 1 Reply Last reply Mar 28, 2018, 9:28 PM Reply Quote 0
                    • N Offline
                      ninjabreadman @bekirs
                      last edited by ninjabreadman Mar 28, 2018, 9:28 PM Mar 28, 2018, 9:28 PM

                      @bekirs Did you try using url("file:///home/pi/MagicMirror/fonts/Verdana.ttf")?

                      Problem with config or JavaScript? Copy/paste it into JSHint.
                      Check out the detailed walkthroughs on install, config, modules, etc.

                      1 Reply Last reply Reply Quote 0
                      • 1
                      • 2
                      • 1 / 2
                      • First post
                        Last post
                      Enjoying MagicMirror? Please consider a donation!
                      MagicMirror created by Michael Teeuw.
                      Forum managed by Sam, technical setup by Karsten.
                      This forum is using NodeBB as its core | Contributors
                      Contact | Privacy Policy