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

    Posts

    Recent Best Controversial
    • RE: My config.js file is messed up. someone want to help? :P

      @KMH0 check for missing { } one is missing @ soccer live score

      {
                           module: 'MMM-SoccerLiveScore',
                           position: 'top_left',
                           header: 'Live-Scores',
                           config: {
                           leagues: [17, 17, 17],
                           showNames: true,
                           showLogos: true,
                           displayTime: 60 * 1000,
                           showTables: true
                           }
      }, 
      
      posted in Troubleshooting
      schlachtkreuzer6S
      schlachtkreuzer6
    • RE: Have you heard this? Slim rpi3

      @Mykle1 HAHA!!

      posted in Hardware
      schlachtkreuzer6S
      schlachtkreuzer6
    • RE: MMM-MyCommute

      Great Module thanks for developing! :)

      I got a question or more a request?

      Is there any way to enable start/endtime and hide days at the same time? So general the module is not shown weekends [0,6] and than starting Mondays with the destination A1 from 0715 to 0900 and B1 16:00 to 18:00 [2,3,4,5] . And tuesday A1 same (0717-0900) and B2 13:00 to 14:00 [1,3,4,5] Wed-Fri A1 continues.

      Many thanks for your help!

      posted in Transport
      schlachtkreuzer6S
      schlachtkreuzer6
    • RE: Troubleshooting: Changing z-index of different modules

      @strawberry-3.141 Ah if I don´t mix left over right than every thing works (I think I should drink more coffee or go to bed earlier^^) . But I don´t understand why z-index in top center does not work for me… anyway many many many many maaaany thanks strawberry :D

      .region.left {
      z-index: 2;
      position: absolute;
      }
      
      posted in Custom CSS
      schlachtkreuzer6S
      schlachtkreuzer6
    • Troubleshooting: Changing z-index of different modules

      Hi! I got some troubles with my custom.css that the z-index does not work . So my problem is, that the MMM-Globe (.region.top.center) overlaps the text of my calendar module (or anything else depending where i set the globe). So i tried some things (https://forum.magicmirror.builders/topic/1393/layer-definition-here-mmm-globe-overlaps-left-panel/22)

      Here is my custom.css:

      /*****************************************************
       * 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 {
        margin: 20px;
        position: absolute;
        height: calc(100% - 40px);
        width: calc(100% - 40px);
        background: #000;
        color: #aaa;
        font-family: "Roboto Condensed", sans-serif;
        font-weight: 400;
        font-size: 2em;
        line-height: 1.5em;
        -webkit-font-smoothing: antialiased;
      }
      
      .region.top.center {
      z-index: -2;
      position: absolute;
      }
      
      .brightb {
      color: #55acee;
      }
      .currentweather .wi-sunrise {
      color: #ffd700;
      }
      .currentweather .wi-sunset {
      color: #ffa500;
      }
      .currentweather .wi-day-sunny {
      color: #ffff00;
      }
      .currentweather .wi-night-showers {
      color: #55acee;
      }
      .currentweather .wi-degrees {
      color: #415;
      }
      .currentweather .wi-rain {
      color: #55acee;
      }
      .currentweather .wi-showers {
      color: #55acee;
      }
      .currentweather .wi-night-showers {
      color: #55acee;
      }
      .currentweather .wi-night-alt-cloudy-windy {
      color: #aaa;
      }
      .currentweather .wi-night-cloudy {
      color: #aaa;
      }
      .currentweather .wi-cloudy {
      color: #aaa;
      }
      .currentweather .wi-day-cloudy {
      color: #aaa;
      }
      .currentweather .wi-cloudy {
      color: #aaa;
      }
      .currentweather .wi-cloudy-windy {
      color: #aaa;
      }
      .currentweather .wi-showers {
      color: #55acee;
      }
      .currentweather .wi-thunderstorm {
      color: #ff00ff;
      }
      .currentweather .wi-snow {
      color: #fff;
      }
      .currentweather .wi-fog {
      color: #999;
      }
      .currentweather .wi-night-clear {
      color: #fff;
      }
      .currentweather .wi-night-rain {
      color: #55acee;
      }
      .currentweather .wi-night-thunderstorm {
      color: #ff00ff;
      }
      .currentweather .wi-night-snow {
      color: #fff;
      }
      .weatherforecast .wi-sunrise {
      color: #ffd700;
      }
      .weatherforecast .wi-sunset {
      color: #ffa500;
      }
      .weatherforecast .wi-day-sunny {
      color: #ffff00;
      }
      .weatherforecast .wi-night-showers {
      color: #55acee;
      }
      .weatherforecast .wi-degrees {
      color: #415;
      }
      .weatherforecast .wi-rain {
      color: #55acee;
      }
      .weatherforecast .wi-showers {
      color: #55acee;
      }
      .weatherforecast .wi-night-showers {
      color: #55acee;
      }
      .weatherforecast .wi-night-alt-cloudy-windy {
      color: #aaa;
      }
      .weatherforecast .wi-night-cloudy {
      color: #aaa;
      }
      .weatherforecast .wi-cloudy {
      color: #aaa;
      }
      .weatherforecast .wi-day-cloudy {
      color: #aaa;
      }
      .weatherforecast .wi-cloudy {
      color: #aaa;
      }
      .weatherforecast .wi-cloudy-windy {
      color: #aaa;
      }
      .weatherforecast .wi-showers {
      color: #55acee;
      }
      .weatherforecast .wi-thunderstorm {
      color: #ff00ff;
      }
      .weatherforecast .wi-snow {
      color: #fff;
      }
      .weatherforecast .wi-fog {
      color: #999;
      }
      .weatherforecast .wi-night-clear {
      color: #fff;
      }
      .weatherforecast .wi-night-rain {
      color: #55acee;
      }
      .weatherforecast .wi-night-thunderstorm {
      color: #ff00ff;
      }
      .currentweather .wi-night-snow {
      color: #fff;
      }
      
      .region.fullscreen {
        position: absolute;
        top: -20px;
        left: -20px;
        right: -20px;
        bottom: -20px;
      }
      
      posted in Custom CSS
      schlachtkreuzer6S
      schlachtkreuzer6
    • RE: layer definition: here MMM-Globe overlaps left panel

      @Niggich nope :( does not work either

      posted in Troubleshooting
      schlachtkreuzer6S
      schlachtkreuzer6
    • RE: layer definition: here MMM-Globe overlaps left panel

      @Niggich nope does not work for me… strange! i changed the location of the globe (lower third), without any success.

      posted in Troubleshooting
      schlachtkreuzer6S
      schlachtkreuzer6
    • RE: layer definition: here MMM-Globe overlaps left panel

      @Niggich yes

      posted in Troubleshooting
      schlachtkreuzer6S
      schlachtkreuzer6
    • RE: layer definition: here MMM-Globe overlaps left panel

      @strawberry-3.141 @Niggich
      Hi guys! I crashed my sd card and now this :
      .region.top.center { z-index: -2 position: absolute; }
      work anymore!?! If I c+p this in my custom.css the globe disappears!?

      posted in Troubleshooting
      schlachtkreuzer6S
      schlachtkreuzer6
    • 1 / 1