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.

    custom.css

    Scheduled Pinned Locked Moved Troubleshooting
    10 Posts 5 Posters 8.1k Views 4 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.
    • yo-lessY Offline
      yo-less Module Developer @Pierre
      last edited by yo-less

      @Pierre Take a look at the following code in the compliments.js file:

      	wrapper.className = "thin xlarge bright";
      

      Among other things, it tells the mirror to print the message in extra large letters.

      You have two options:

      1. You can change the extra large letter size for all modules
      2. You can redefine the letter size for the compliments module

      To change the extra large letter size for all modules, add the following code to your custom.css file:

      .xlarge {
        font-size:  YOURFONTSIZE px;
      }
      

      Instead of YOURFONTSIZE, you pick something you like. This is a good option if it doesn’t break any of your other existing modules because they become harder to read or start changing their layout, because this way, even when you update your mirror, the CSS file info will remain the same.

      The other option would be to change the code of the compliments.js file to, say:

      	wrapper.className = "thin myXlarge bright";
      
      

      Next, you would have to define this new style myXlarge in your custom.css file:

      .myXlarge {
        font-size:  YOURFONTSIZE px;
      }
      

      This way, you wouldn’t affect any of the other modules but you would have to change the compliments.js file after every update of the mirror.

      I’m not aware of any way to change global css styles (such as: “xlarge”) for only a specific module using the custom.css file. Does anyone else have any idea whether that can be done?

      1 Reply Last reply Reply Quote 0
      • P Offline
        Pierre
        last edited by

        Thanks for the thorough answer! I tried the second method although knowing the risk of it all disappearing when the next update. I´m clotting down all the changes in a txt-file so that I can change it back after the update.

        Great explanation! Thanks!

        yo-lessY 1 Reply Last reply Reply Quote 0
        • yo-lessY Offline
          yo-less Module Developer @Pierre
          last edited by

          @Pierre Nice to know I could help you :)

          1 Reply Last reply Reply Quote 0
          • strawberry 3.141S Offline
            strawberry 3.141 Project Sponsor Module Developer
            last edited by

            a proper solution would be to do your changes in the custom.css only, so you’ll not lose your modification by an update

            in general you do the following rule

            .MODULE_NAME .CLASS_TO_CHANGE {
                /*CSS RULE*/
            }
            
            .compliments .xlarge {
                font-weight: bold;
            }
            

            this will only affect your compliments module

            Please create a github issue if you need help, so I can keep track

            1 Reply Last reply Reply Quote 3
            • I Offline
              ianperrin
              last edited by

              @yo-less said in custom.css:

              I’m not aware of any way to change global css styles (such as: “xlarge”) for only a specific module using the custom.css file. Does anyone else have any idea whether that can be done?

              Each of the modules are wrapped in a div element with a class corresponding to the name you use to define the module in the config file e.g.

              <div class="module compliments">
              ...
              </div>
              

              So to change the styles of a particular module, you can use the following in the custom.css file

              .compliments .xlarge {
                  font-size: 10pt;
              }
              

              "Live as if you were to die tomorrow. Learn as if you were to live forever." - Mahatma Gandhi

              1 Reply Last reply Reply Quote 2
              • I Offline
                ianperrin
                last edited by

                Looks like @strawberry-3-141 beat me to the reply ;)

                "Live as if you were to die tomorrow. Learn as if you were to live forever." - Mahatma Gandhi

                strawberry 3.141S 1 Reply Last reply Reply Quote 0
                • strawberry 3.141S Offline
                  strawberry 3.141 Project Sponsor Module Developer @ianperrin
                  last edited by

                  @ianperrin maybe i was quicker, but I learned it out of your contribution to my module ;)

                  Please create a github issue if you need help, so I can keep track

                  1 Reply Last reply Reply Quote 1
                  • yo-lessY Offline
                    yo-less Module Developer
                    last edited by

                    @ianperrin Thanks for the clarification. I could swear I tried using “.compliments .xlarge” before posting as my own module css files use the same syntax and it looked like it didn’t work, but I’ve just tried it again and it’s working as it should :). Great to know.

                    1 Reply Last reply Reply Quote 1
                    • MichMichM Offline
                      MichMich Admin
                      last edited by

                      Totally off topic, but it’s so freaking awesome to see you guys discuss stuff I just made up on the fly … 😂

                      1 Reply Last reply Reply Quote 2
                      • 1 / 1
                      • 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