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.

    Changing the length of the line under the header

    Scheduled Pinned Locked Moved Custom CSS
    19 Posts 8 Posters 13.7k Views 8 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.
    • cruunnerrC Offline
      cruunnerr
      last edited by

      Hey guys,

      i was asking myself if it is possible to reduce the length of the line under the header…

      I installed the MMM-MovieListings module and because the width of the module can change depending on what movie is shown, the lines under the other modules are changing their length, too.

      Maybe someone have an idea. :)

      0_1515328940936_Bildschirmfoto 2018-01-07 um 13.39.20.png

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

        @cruunnerr that happens just for modules in the same region, you could either put the movie module in bottom_left, or you set max-width in custom css for the other modules to limit them

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

        1 Reply Last reply Reply Quote 1
        • cruunnerrC Offline
          cruunnerr
          last edited by

          yeah i thought so :(

          thank you anyway :)

          Mykle1M 1 Reply Last reply Reply Quote 0
          • Mykle1M Offline
            Mykle1 Project Sponsor Module Developer @cruunnerr
            last edited by

            @cruunnerr

            Or don’t use a header at all. My personal preference. :-)

            Create a working config
            How to add modules

            cruunnerrC 1 Reply Last reply Reply Quote 1
            • cruunnerrC Offline
              cruunnerr @Mykle1
              last edited by

              @Mykle1 said in Changing the length of the line under the header:

              @cruunnerr

              Or don’t use a header at all. My personal preference. :-)

              Was just hoping there is an amazing trick to use the custom.css for exactly my problem XD

              Maybe i simply shouldn’t install every module i find ^^

              Mykle1M 1 Reply Last reply Reply Quote 1
              • Mykle1M Offline
                Mykle1 Project Sponsor Module Developer @cruunnerr
                last edited by

                @cruunnerr said in Changing the length of the line under the header:

                Maybe i simply shouldn’t install every module i find ^^

                That’s exactly my point. Headers take up space. 3 or 4 headers take up the space of a small module.

                Create a working config
                How to add modules

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

                  @cruunnerr said in Changing the length of the line under the header:

                  Was just hoping there is an amazing trick to use the custom.css for exactly my problem XD

                  There are a lot of amazing tricks. You can do this in custom.css:

                  header {
                      border-bottom: none; /* instead of 1px solid #666; to remove all lines from all the headers */
                      width: 50%;          /* add this to change the width of all module headers */
                  }
                  .middle header {
                      /* addressing the header like this will only influence headers within the middle region */
                  }
                  #module_3_calendar header {
                      /* only addresses the calendar header (find out the modules id before) */
                  }
                  .shoppinglist header {
                      /* or use the class, which should be the module's name */
                  }
                  
                  1 Reply Last reply Reply Quote 5
                  • cruunnerrC Offline
                    cruunnerr
                    last edited by cruunnerr

                    That looks great !!!
                    Will try that later. Thank u very much dude :P

                    edit:

                    .left header {
                        border-bottom: none;
                    }
                    

                    THAT WORKS EXACTLY LIKE I WANT! Great :)

                    1 Reply Last reply Reply Quote 1
                    • M Offline
                      MadScientist
                      last edited by

                      I have the same problem with the MMM-temp-ds18b20 module. I would like to remove the header and the underlying line but can’t get it to work. I am really lost as I have no idea how the css stuff works. Can you post your custom.css file and not just the very lines you changed? Is there a good guide for dummies (!!!)?

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

                        In the config.js, when setting up the modules, leave the header fields empty. No line is shown when the header is empty.
                        EDIT:
                        header: "", that is …

                        M 1 Reply Last reply Reply Quote 0
                        • M Offline
                          MadScientist
                          last edited by

                          I tried that already. But instead of no header I get “undefined” as a header.

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

                            What I ment with hempty header was an empty string value for the header:

                                header: "", 
                            
                            1 Reply Last reply Reply Quote 1
                            • M Offline
                              MadScientist
                              last edited by MadScientist

                              Ok, tried that but it said "undefined with the underline. I had previously removed the label for the senor. So setting

                              header: "",
                              

                              and

                              label: "",
                              

                              AND changing from x-stack to y-stack

                              displayMode: 'y-stack',
                              

                              did the trick. Thanks for your help.

                              Is there a good place to learn about CSS? I tried figuring it out on my own but I just don’t understand how it’s done.

                              N 1 Reply Last reply Reply Quote 0
                              • N Offline
                                ninjabreadman @MadScientist
                                last edited by ninjabreadman

                                @MadScientist I’ve always liked W3Schools. It’s very concise, but introduces each concept and lets you play with it.

                                There are also learning/coursework sites like CodeAcademy, Code School, udemy, etc.

                                Groups like Ladies Learning Code also have slides and sample code available to walk you through.

                                There is CSS, but there are also media queries, CSS animations, layout frameworks, CSS extensions/preprocessors like Sass & LESS, among other things. Let alone different limitations, workarounds, and other peculiarities for different desktop and mobile browsers.

                                Finally, the best way to learn and retain is often to apply it. Building things will often reinforce whatever you learn through the sites and materials above.

                                Problem with config or JavaScript? Copy/paste it into JSHint.
                                Check out the detailed walkthroughs on install, config, modules, etc.

                                1 Reply Last reply Reply Quote 1
                                • M Offline
                                  MadScientist
                                  last edited by

                                  Thanks ninjabreadman. I will have a look at your proposed sites.

                                  1 Reply Last reply Reply Quote 0
                                  • G Offline
                                    goprojojo
                                    last edited by

                                    What module is that background?

                                    cruunnerrC 1 Reply Last reply Reply Quote 0
                                    • cruunnerrC Offline
                                      cruunnerr @goprojojo
                                      last edited by

                                      @goprojojo

                                      its not a module. Its just a background. Take a look here, i described it a little further down

                                      1 Reply Last reply Reply Quote 1
                                      • M Offline
                                        magicmarc @doubleT
                                        last edited by

                                        @doubleT For my travel module, the line doesn’t dissapear even though I leave header empty :confused_face: Do you know how to remove the line in some other way?

                                        Mykle1M 1 Reply Last reply Reply Quote 0
                                        • Mykle1M Offline
                                          Mykle1 Project Sponsor Module Developer @magicmarc
                                          last edited by

                                          @magicmarc said in Changing the length of the line under the header:

                                          For my travel module, the line doesn’t dissapear even though I leave header empty

                                          Try commenting out the entire line (or delete) // header:"", from the config entry

                                          Create a working config
                                          How to add modules

                                          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 / 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