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

    Posts

    Recent Best Controversial
    • RE: MMM-CalendarExt3 shows both start and end time. How to stop showing end time.

      @EngrAg81 Ok, I think this is what you would edit to change the way those numbers are displayed, ie, High/low temp. This will be in the custom.css.

      CX3 .cellHeader .cellWeather .maxTemp {
        color: white;
        font-weight: bold;
        font-size: 90%;
      }
      
      .CX3 .cellHeader .cellWeather .minTemp {
        color: darkgray;
        font-weight: normal;
      }
      
      .CX3 .cellHeader .cellWeather .temperature {
        display: var(--displayWeatherTemp);
        padding-left: 5px;
        font-size: 90%;
      }
       
      .CX3 .cellHeader .cellWeather .maxTemp::before {
        content: " \25b2";  
      }
      
      .CX3 .cellHeader .cellWeather .minTemp::before {
        content: " \25bc";
      }
       
      .CX3 .cellHeader .cellWeather .temperature::after {
        content: "° ";
      }
      
      
      posted in Troubleshooting
      B
      bobbylx
    • 1 / 1