MagicMirror Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • Donate
    • Discord
    MagicMirror² v2.24.0 is available! For more information about this release, check out this topic.

    Adding new region positions top_center1 and top_center2

    Development
    3
    5
    3946
    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.
    • S
      sindbad6 last edited by

      I use my magic mirror in landscape format. And I two place four modules side by side. My idea was to divide the top_center position in two.

      Therefore I added new region definitions in the custom.css:

      .region.top.center1 {
        left: 33%;
        -moz-transform: translateX(-33%);
        -o-transform: translateX(-33%);
        -webkit-transform: translateX(-33%);
        -ms-transform: translateX(-33%);
        transform: translateX(-33%);
      }
      
      .region.top.center2 {
        left: 60%;
        -moz-transform: translateX(-33%);
        -o-transform: translateX(-33%);
        -webkit-transform: translateX(-33%);
        -ms-transform: translateX(-33%);
        transform: translateX(-33%);
      }
      
      .region.top.center1,
      .region.top.center2 {
        top: 100%;
      }
      

      And use in the config.js

      module: 'MMM-Fuel',
      position: 'top_center1', 
      config: {
      

      Of course, this doesn’t work. I read something, about a region class definition. But I didn’t found, what else I have to do. Any ideas what is missing?

      1 Reply Last reply Reply Quote 1
      • yawns
        yawns Moderator last edited by

        I never tried, but I guess you need to edit index.html located in MagicMirror root folder to define the new regions

        S 1 Reply Last reply Reply Quote 2
        • S
          sindbad6 @yawns last edited by

          @yawns : Thanks a lot, that’s it. Now it works.

          zeular 1 Reply Last reply Reply Quote 0
          • zeular
            zeular @sindbad6 last edited by zeular

            @sindbad6 said in Adding new region positions top_center1 and top_center2:

            @yawns : Thanks a lot, that’s it. Now it works.

            Hi
            I can’t get it to work, what did you do in the index.html? My modules shows up and then dissapears…

            EDIT: Got it! If someone else want to know:

            		div class="region top center"><div class="container"></div></div>
            		div class="region top center1"><div class="container"></div></div>
            		div class="region top center2"><div class="container"></div></div>
            		div class="region top right"><div class="container"></div></div>
            
            
            S 1 Reply Last reply Reply Quote 3
            • S
              sindbad6 @zeular last edited by

              @zeular Yeah, that’s the way I did it too.

              1 Reply Last reply Reply Quote 0
              • 1 / 1
              • First post
                Last post
              Enjoying MagicMirror? Please consider a donation!
              MagicMirror created by Michael Teeuw.
              Forum managed by Paul-Vincent Roll and Rodrigo Ramírez Norambuena.
              This forum is using NodeBB as its core | Contributors
              Contact | Privacy Policy