• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
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.

Looking for feedback and advice

Scheduled Pinned Locked Moved General Discussion
15 Posts 2 Posters 435 Views 2 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.
  • S Offline
    sdetweil @Xsoldier2000
    last edited by Apr 1, 2025, 6:14 PM

    @Xsoldier2000 there were a couple topics on ext3 agenda more size recently

    Sam

    How to add modules

    learning how to use browser developers window for css changes

    X 1 Reply Last reply Apr 1, 2025, 6:20 PM Reply Quote 0
    • X Offline
      Xsoldier2000 @sdetweil
      last edited by Apr 1, 2025, 6:20 PM

      @sdetweil Ahhh, I am just using the OOTB Calendar module, I’ll look into the EXT3 Agenda module. Thank you!

      S 1 Reply Last reply Apr 1, 2025, 6:24 PM Reply Quote 0
      • S Offline
        sdetweil @Xsoldier2000
        last edited by Apr 1, 2025, 6:24 PM

        @Xsoldier2000 but???

        Last but not least, I can’t seem to extend the MMM-CalendarEXT3 module to the bottom of the screen,

        Sam

        How to add modules

        learning how to use browser developers window for css changes

        X 1 Reply Last reply Apr 1, 2025, 6:28 PM Reply Quote 0
        • X Offline
          Xsoldier2000 @sdetweil
          last edited by Apr 1, 2025, 6:24 PM

          @sdetweil said in Looking for feedback and advice:

          @Xsoldier2000 you can disable the ext3 while you adjust others

          Ended up commenting out the position to do that. Just didn’t know if the Calendar module was acting the way it should.

          1 Reply Last reply Reply Quote 0
          • X Offline
            Xsoldier2000 @sdetweil
            last edited by Apr 1, 2025, 6:28 PM

            @sdetweil said in Looking for feedback and advice:

            @Xsoldier2000 but???

            Last but not least, I can’t seem to extend the MMM-CalendarEXT3 module to the bottom of the screen,

            Not sure what you mean here…I’ve tried expanding the height, but it doesn’t seem to go past a certain hard point on the screen. Is there a limit? (I wouldn’t like to add another week on the calendar, just stretch it down.)

            S 1 Reply Last reply Apr 1, 2025, 6:32 PM Reply Quote 0
            • S Offline
              sdetweil @Xsoldier2000
              last edited by Apr 1, 2025, 6:32 PM

              @Xsoldier2000 you said cant extend ext3, i said look at…
              then you said only using the default calendar

              so now i am confused

              Sam

              How to add modules

              learning how to use browser developers window for css changes

              X 1 Reply Last reply Apr 1, 2025, 9:41 PM Reply Quote 0
              • X Offline
                Xsoldier2000 @sdetweil
                last edited by Apr 1, 2025, 9:41 PM

                @sdetweil Agenda view on left side is default calendar (can see in my posted config)
                Main month calendar on right side of screen is EXT3.

                X 1 Reply Last reply Apr 3, 2025, 12:58 PM Reply Quote 0
                • X Offline
                  Xsoldier2000 @Xsoldier2000
                  last edited by Apr 3, 2025, 12:58 PM

                  Posting this for any newcomers like me that weren’t really pointed in any direction, and don’t know the terminology in which to search for answers.

                  1. Advice (right or wrong) on current setup
                    A: I don’t really have answer for this, I know what I did to correct my issues, but don’t fully understand the why of it all.
                  2. Extend the event name for less wrap-around
                    A: maxTitleLength, maxLocationTitleLength & maxLocationEvents (look at the Config details on the github of the module) is what worked for me.
                  3. Show Location (if any) of event? (line below possible?)
                    A: showLocation: true,
                  4. Extend EXT3 to bottom of screen in this position
                    A: this took a lot longer to figure out, but using Dev mode is what made me figure it out. I was trying to use a height: XXXXXpx; (in the .css module content) which was making the screen jump up like half a page…in Dev mode, found the body module was way oversized, changed the height parameter to 100% and that fixed the jumping issue, then figured out in the EXT3 module, I could increase the maxEventLines to expand the module to the bottom of the screen (look at the Config details on the github of the module), works perfect now.
                  5. Reconfigure EXT3 module correctly?
                    Answered in #4 above.

                  ***I still don’t know what the body is or does, but I now know it should match your screensize (i believe) There is also something in the EXT3 module that makes the height parameter not work which is probably by design, because stretching a module would probably make it look weird, thankfully adding event lines is builtin. Going back and reading all the modules on github made me figure everything out. Uploading the final result. ***
                  d2231c40-cef2-4075-bffd-4ed56f44c5bc-image.png

                  S 2 Replies Last reply Apr 3, 2025, 1:20 PM Reply Quote 1
                  • S Offline
                    sdetweil @Xsoldier2000
                    last edited by Apr 3, 2025, 1:20 PM

                    @Xsoldier2000 when you say look at github, what do you mean? the module README.md file is what is shown for the module github page. after git clone, you have that on your system and can view ut at any time

                    for Ext3 it has definitions and explanations of the css variables used to size the content, and calendar cells to hold the content

                    MagicMirror is a web page, shown in a browser. all the content ( module output) is generated dynamically by javascript code.

                    an html page contains two major elements

                    head - documents scripts and css files used on this page
                    body - holds the displayable context. text, ,tables, graphs, images, etc

                    the design of that page can be seen in the index.html file in the MagicMirror folder

                    all the script and css files are added by the MagicMirror runtime for each active module

                    css/main.css holds the styling for the default page and modules
                    including the size abd shspe of the page and spaces(regions) for module content

                    as you have discovered the Ext3 family of modules is one of the most CSS configurable modules available

                    Sam

                    How to add modules

                    learning how to use browser developers window for css changes

                    X 1 Reply Last reply Apr 3, 2025, 1:45 PM Reply Quote 0
                    • S Offline
                      sdetweil @Xsoldier2000
                      last edited by sdetweil Apr 3, 2025, 1:30 PM Apr 3, 2025, 1:28 PM

                      @Xsoldier2000 for your 3, you should indicate what module that property applies to.

                      Ext3 css height property not working… well
                      as you found ext3 calculates the size base on num event lines, event line height, number of calendar week rows shown, etc, all set with --xxx css variables described in the module doc(readme file)

                      which are all overridable (changable) in/using custom.css

                      Sam

                      How to add modules

                      learning how to use browser developers window for css changes

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