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.

    organization of the text next to the icon.

    Scheduled Pinned Locked Moved Custom CSS
    48 Posts 3 Posters 23.5k Views 5 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.
    • I Offline
      iorifly
      last edited by

      As I said. If I position the module on the left side. Everything is perfectly aligned.

      If I place the module on the right side, the text is far from the icons.

      Taking advantage of that will look at the code. It is possible, for example, when he displays “off” or “on” he writes in my language …
      I don’t think so, as it pulls that information from the Home Assistant server.

      S 1 Reply Last reply Reply Quote 0
      • I Offline
        iorifly
        last edited by

        I did not find any css files in this addom.

        It would be possible to add lines to separate some functions, or I’m saying stupidity.

        1 Reply Last reply Reply Quote 0
        • S Offline
          sdetweil @iorifly
          last edited by

          @iorifly

          yes, he creates an html table (table)
          and each row is a table row (tr)
          you would have to move this

          		// Name
          		newCell = newrow.insertCell(1);
          		newText = document.createTextNode(name);
          		newCell.appendChild(newText);
          		// Value
          		newCell = newrow.insertCell(2);
          		newCell.className = "align-right"
          			newText = document.createTextNode(value);
          		newCell.appendChild(newText);
          		// Unit
          		newCell = newrow.insertCell(3);
          		newCell.className = "align-left"
          			newText = document.createTextNode(unit);
          		newCell.appendChild(newText);
          

          in front of this

          		// icons
          		newCell = newrow.insertCell(0);
          

          and change the insertCell(?) numbers back to 0-3 in order again
          change 1 to 0,
          2 to 1,
          3 to 2
          and 0 to 3

          as for left/right areas of screen… yes, it is quite a challenge to have the text properly aligned, regardless of the area of the screen (position) selected… there is NO ‘simple’ fix

          Sam

          How to add modules

          learning how to use browser developers window for css changes

          1 Reply Last reply Reply Quote 0
          • I Offline
            iorifly
            last edited by

            I will try to play with this. But already mine gave a north !!!

            I will try to create the lines. About aligning if standing next to the icons already helps. Now creating html is simpler. I will try to understand. Anything I report.

            1 Reply Last reply Reply Quote 0
            • D Offline
              doubleT Module Developer
              last edited by

              Wait! I think that’s not what @iorifly wants, right?

              If I understand this correct (and it is difficult to understand ;) ) the text in the middle should be aligned left?

              If I place the module on the right side, the text is far from the icons.

              S 1 Reply Last reply Reply Quote 0
              • I Offline
                iorifly
                last edited by

                I will send another photo. with the module positioned to the left of the screen.

                1 Reply Last reply Reply Quote 0
                • S Offline
                  sdetweil @doubleT
                  last edited by

                  @doubleT yes, you are correct… sorry, I misunderstood , I thought he wanted the icons on the right end of the line

                  Sam

                  How to add modules

                  learning how to use browser developers window for css changes

                  1 Reply Last reply Reply Quote 0
                  • I Offline
                    iorifly
                    last edited by

                    I actually want it that way. See how the text is perfectly aligned to the icon.

                    https://imgur.com/InsQd3x

                    1 Reply Last reply Reply Quote 0
                    • I Offline
                      iorifly
                      last edited by

                      I also wanted to put lines

                      Like the ones I set as an example. I actually want white line like the one under “Home assistant”
                      https://imgur.com/sx9Muq2

                      1 Reply Last reply Reply Quote 0
                      • D Offline
                        doubleT Module Developer
                        last edited by

                        Ok, I understand. I’m looking at the code and I think it’s not written very good. There are cells named “align-left” and “align-right” – stupid in this case as there’s no CSS for it and the cells are taking their alignment from the module position, it seems.

                        Are you familiar with the dev mode? Can you check the html structure of the table and see if the cells and table rows that you try to change have any class names?

                        I’m trying to figure this out and then I’d suggest some entries in the custom.css file.

                        1 Reply Last reply Reply Quote 0
                        • S Offline
                          sdetweil
                          last edited by

                          text alignment, you will have to change the code. the author did not provide element classes you could modify with css. (see the code from one of my prior posts, he just set style to ‘align-left’ or ‘align-right’ or let it default (text nodes align right by default for ltr languages)

                          adding a line under some entries,
                          you will have to modify the code to add that capability

                          Sam

                          How to add modules

                          learning how to use browser developers window for css changes

                          1 Reply Last reply Reply Quote 0
                          • D Offline
                            doubleT Module Developer
                            last edited by

                            It can be done in css even if there are no class names. Give me a minute.

                            1 Reply Last reply Reply Quote 0
                            • I Offline
                              iorifly
                              last edited by

                              Thanks! I’m in no hurry. Even because it took me a long time to get here. sdetweil helped me extremely.

                              Thank you very much for all your support! sensational you !!!.

                              1 Reply Last reply Reply Quote 0
                              • D Offline
                                doubleT Module Developer
                                last edited by

                                If you want to work in the code and are not afraid that an update might overwrite it, you could try to change

                                		// Name
                                		newCell = newrow.insertCell(1);
                                		newText = document.createTextNode(name);
                                		newCell.appendChild(newText);
                                

                                to

                                		// Name
                                		newCell = newrow.insertCell(1);
                                		newCell.className = "align-left";
                                		newText = document.createTextNode(name);
                                		newCell.appendChild(newText);
                                

                                That seems to be what’s aligning the icon cell to the left. That css comes from MM’s main.css.

                                1 Reply Last reply Reply Quote 0
                                • I Offline
                                  iorifly
                                  last edited by iorifly

                                  I will try to locate this code.

                                  in which module file do I look for it?

                                  1 Reply Last reply Reply Quote 0
                                  • D Offline
                                    doubleT Module Developer
                                    last edited by

                                    MMM-homeassistant-sensors.js

                                    1 Reply Last reply Reply Quote 0
                                    • I Offline
                                      iorifly
                                      last edited by

                                      @doubleT said in organization of the text next to the icon.:

                                      newCell = newrow.insertCell(1);
                                      newCell.className = “align-left”;
                                      newText = document.createTextNode(name);
                                      newCell.appendChild(newText);

                                      alignment resolved. Can I now create lines to separate groups? Or is it impossible?

                                      1 Reply Last reply Reply Quote 0
                                      • D Offline
                                        doubleT Module Developer
                                        last edited by doubleT

                                        Ok, please keep in mind that this is not the best solution (working directly in the code).

                                        If you want to make the changes via custom.css file, try this:

                                        (Now, since the module is called “MMM-homeassistant-sensors” I’m going to assume the element is identifiable with _“.module.MMM-homeassistant-sensors” …)

                                        Tell each 2nd cell to align its content left:

                                        .module.MMM-homeassistant-sensors table tr td:nth-of-type(2) {
                                            text-align: left;
                                        }
                                        

                                        Tell the cells of the 3rd and 6th line to have a bottom border line:

                                        .module.MMM-homeassistant-sensors table tr:nth-of-type(3) td,
                                        .module.MMM-homeassistant-sensors table tr:nth-of-type(6) td {
                                            border-bottom: 1px solid white;
                                        }
                                        

                                        If the line is separated, try:

                                        .module.MMM-homeassistant-sensors table {
                                            border-spacing: 0;
                                        }
                                        

                                        EDIT: There was an error, it’s text-align, of course. Not test-align.

                                        1 Reply Last reply Reply Quote 0
                                        • I Offline
                                          iorifly
                                          last edited by

                                          Let me see if I got it. I need to change the custom.css file. Where is it located?

                                          in the css folder. I only have the main.css file

                                          1 Reply Last reply Reply Quote 0
                                          • D Offline
                                            doubleT Module Developer
                                            last edited by

                                            Create a file named “custom.css” and put the code from above inside it.

                                            1 Reply Last reply Reply Quote 0

                                            Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                            Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                            With your input, this post could be even better 💗

                                            Register Login
                                            • 1
                                            • 2
                                            • 3
                                            • 1 / 3
                                            • 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