MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. broberg
    3. Posts
    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: Date only module

      You could play around with css

      maybe something like this :

      
      .clock .date {
      position: relative;
      top: 100px;
      }
      
      

      (add this to the custom.css not the main.css)

      posted in Feature Requests
      brobergB
      broberg
    • RE: Home assistant controling my magic mirror

      Mmm-syslog is also a good basis for building a custom http get module. I’m using that to activate/deactivate the monitor from my Hubitat Elevation.

      posted in General Discussion
      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: Newsfeed "loading..."

      What is the limit for old headlines and does your newsfeed have actual current headlines? (i.e are there headlines newer than the set time limit)

      posted in Troubleshooting
      brobergB
      broberg
    • 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: How can i hide all module right after turn on the mirror? + youtube question

      try using https://forum.magicmirror.builders/topic/1402/mmm-profileswitcher-a-profile-user-layout-switching-module

      just make a profile with no modules displayed.

      posted in General Discussion
      brobergB
      broberg
    • RE: How to add more space between lines in weatherforecast? default module

      @Stoffbeuteluwe

      add

      .weatherforecast table {
        border-spacing: 0px 10px;
      }
      
      

      To your custom.css

      posted in Troubleshooting
      brobergB
      broberg
    • RE: How add transparent background to modules

      @JonoGee

      Okey,
      I see your problem.

      You have put the .module.currentweather{} within the body{ }

      Just remove the first line body { and the lonely } before .module.MMM-PushBulletNotifications {

      Then it will work just fine.

      And btw, You have a lot of stray }-brackets remove them aswell

      posted in Custom CSS
      brobergB
      broberg
    • RE: How add transparent background to modules

      Show us your css code that you are trying to use

      @JonoGee said in How add transparent background to modules:

      I have tried this format …

      .module.calendar {
        background-color:rgba(0,0,0,0.6);
        border-radius:8px;
        padding:8px;
      }
      

      and it works perfect for most modules but simply will not work for currentweather, weatherforecast or compliments?
      Any ideas folks?

      posted in Custom CSS
      brobergB
      broberg
    • RE: Tilting the display by a couple of degrees to make it straight

      You know what, @evroom s solution might just work.

      Tried it and it isn’t half bad, it gets blurry, but not overly so. (disclaimer, tried this on a 24" 1440p display)

      body {
      transform: rotate(0.2deg);
      transform-origin: top left;
      }
      
      
      posted in Troubleshooting
      brobergB
      broberg
    • RE: default clock size?

      @costascontis said in default clock size?:

      @broberg thnx mate,but if i use transform: scale all the module goes left and off screen like this:

      Ahh, okey

      add

      transform-origin: top left;
      

      under transform: scale

      Or to change font sizes.

      
      .clock .time {
       font-size: 100px;
      }
      
      .clock .date {
       font-size: 30px;
      }
      
      posted in Utilities
      brobergB
      broberg
    • RE: default clock size?

      @costascontis

      try adding this to your custom.css file

      
      .clock {
      transform: scale(1.2);
      }
      
      

      Or if you want more control you could change the font size itself, but the above will scale the entire module.

      posted in Utilities
      brobergB
      broberg
    • RE: Tilting the display by a couple of degrees to make it straight

      @alborzs it probably is possible, but it will look terrible, if not blurry it will create artifacts.

      posted in Troubleshooting
      brobergB
      broberg
    • Capacitive touch mirror

      Hi, the question has been up before,
      So, the touch films/foils available usually doesn’t work with the mirrors out there.

      But by accident I noticed that Displax actually sells two way mirrors with a built in touch-layer.

      I have no pricing but they probably aren’t cheap.

      But atleast there is an option out there.

      https://displax.com/multitouch-mirror/

      posted in Hardware
      brobergB
      broberg
    • RE: Currentweather distance

      add

      
      .currentweather .weathericon {
      letter-spacing: -10px;
      }
      
      
      

      to your custom.css, adjust the spacing 'til you’re satisfied.

      posted in Development
      brobergB
      broberg
    • RE: Location of the icon table in wx module

      @sdetweil okey! so it does

      posted in Troubleshooting
      brobergB
      broberg
    • RE: Location of the icon table in wx module

      @bokow ok

      If it’s the default weather module then the icons are fetched from the openweathermap api I suppose

      posted in Troubleshooting
      brobergB
      broberg
    • RE: Location of the icon table in wx module

      Wx module?

      posted in Troubleshooting
      brobergB
      broberg
    • RE: Finding module classes

      @sdetweil said in Finding module classes:

      and color is lowercase

      It’s good practice, but css doesn’t care about upper/lowercase

      posted in Troubleshooting
      brobergB
      broberg
    • RE: Finding module classes

      the classes can be found either by checking the “inspector” with your browser or in the modules .js-file

      the “12 hours ago” uses the class “dimmed” that decides the color of that section.
      So

      .newsfeed .dimmed {color: yellow}
      
      posted in Troubleshooting
      brobergB
      broberg
    • 1
    • 2
    • 6
    • 7
    • 8
    • 9
    • 10
    • 39
    • 40
    • 8 / 40