MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. broberg
    3. Best
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    Offline
    • Profile
    • Following 1
    • Followers 5
    • Topics 12
    • Posts 792
    • Groups 3

    Posts

    Recent Best Controversial
    • RE: How to add more space between lines in weatherforecast? default module

      @Stoffbeuteluwe

      the first number is the horisontal spacing < — >
      The second is vertical.

      so just change the 0px to say 20px and you will have more seperation between them.

      posted in Troubleshooting
      brobergB
      broberg
    • RE: Newsfeed "loading..."

      Lookin at your config you have set that it should ignore headlines that are older than what, 4.5 minutes?
      Change the ignoreOlderThan: to at least the default 1 day which is 86400000

      posted in Troubleshooting
      brobergB
      broberg
    • RE: Help with CSS to align Sonos Art Work

      @frogywill

      Ahh sorry, didn’t read carefully enough.

      try this then, should shift the text to the right and let the image pop up next to it

      .song {position: relative;}
      .song .name {position: absolute; left: 200px;}
      
      posted in Troubleshooting
      brobergB
      broberg
    • RE: config

      you were missing a { after config: under the module currentweather

      and also one to many , under the module weatherforecast

      Corrected code :

      		{
      			module: "currentweather",
      			position: "top_right",
      			config: {   
      				location: "",
      				locationID: "53.9576",  //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city
      				appid: "76b503a29647f3a01dd9ba1055daea6d",
      			}
      		},
      		{
      			module: "weatherforecast",
      			position: "top_right",
      			header: "Weather Forecast",
      			config: {
      				location: "",
      				locationID: "53.9576",  //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city
      				appid: "76b503a29647f3a01dd9ba1055daea6d",
      			}
      		},
      
      
      
      posted in Troubleshooting
      brobergB
      broberg
    • RE: MMM-CountDown

      There is no classes in MMM-CountDown that is called .event .date or .daysLabel

      There is .time and .week

      .MMM-CountDown .week{
      color: yellow;
      }
      
      .MMM-CountDown .time {
      color: orange;
      }
      
      posted in Troubleshooting
      brobergB
      broberg
    • RE: Currentweather,doesn't appear.

      The only thing that I see wrong is that the position doesn’t exist.

      These are the positions that you can choose from :

      top_bar, top_left, top_center, top_right, upper_third, middle_center, lower_third, bottom_left, bottom_center, bottom_right, bottom_bar, fullscreen_above, and fullscreen_below
      

      A reference for the positions (regions) can be found here :
      https://forum.magicmirror.builders/topic/286/regions/2

      posted in Troubleshooting
      brobergB
      broberg
    • RE: keep getting error after modifying config.js file

      As samson said you are missing a comma after position

      But it also likes like you are using a text editor that converts single quotes to smart quotes.

      There is a difference between “clock” and "clock".
      Use either the Nano text editor if you are working directly on the Pi, if you are working from another pc/mac change your text editor to one that doesn’t convert quotes to smart quotes (like atom, notepad+, sublime or similar)

      And, when the value of an variable is a number or true/false you don’t use any quotes at all.

      So

      {
      module: "clock",
      position: "top_left",
      config: {
         timeFormat:12,  ------------ Pure number, no quotes
         showPeriod:false,   ------------ true or false, no quotes
         displayType:"both",
         analogSize:"400px"
         }
      },
      
      posted in Troubleshooting
      brobergB
      broberg
    • 1 / 1