MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. GerrieD
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    G
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 8
    • Groups 0

    GerrieD

    @GerrieD

    1
    Reputation
    1
    Profile views
    8
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    GerrieD Unfollow Follow

    Best posts made by GerrieD

    • RE: MMM-CalendarExt3

      @sdetweil said in MMM-CalendarExt3:

      display:none !important;

      That worked. I try to not use !important to much (someone told me not to do it)

      But in this case it worked 100%

      Thanks

      posted in Utilities
      G
      GerrieD

    Latest posts made by GerrieD

    • RE: MMM-CalendarExt3

      @MMRIZE the updated fixed my issue.

      thanks.

      posted in Utilities
      G
      GerrieD
    • RE: MMM-CalendarExt3

      @MMRIZE thanks for all your help.

      I will update later and let you know if it worked.

      posted in Utilities
      G
      GerrieD
    • RE: MMM-CalendarExt3

      thanks for adding maxEventLines: { row: line, row: line, … } .

      But I am having trouble getting it to work.

      		 {
                 module: "MMM-CalendarExt3",
                 position: "top_right",
                 title: "",
                 instanceId: '1',
      		   config: {
                   mode: 'month',
                   carouselId: "basicCalendar",
                   locale: 'en-ZA',
      		     header: "",
                   //headerTitleOptions: {month: 'long' , year:'numeric'},
      		     eventTimeOptions: {timeStyle: 'short'},
      		     useWeather: false,
                   //maxEventLines: 1,
                   firstDayOfWeek: 1,
      		     displayEndTime: false,
      		     useMarquee: true,
      		     displayCW: false,
      		     showMore: true,
      		     showEnd: false,
      		     weekIndex: 0, // From which week the view starts; -1 : last week, 0: this week 2: 2 weeks later, ...
      		     //weeksInView: 5, // How many weeks will be shown from `weekIndex`
      		     fontSize: "18px",
                   eventHight: "20px",
      		     calendarSet: ['Pieter', 'US_holiday'],
      			 maxEventLines: { 4:6, 5:5, 6:4 , 7:3},
      		   }
               },
      

      I would expect this line maxEventLines: { 4:6, 5:5, 6:4 , 7:3}, to limit the number of rows based on the number of weeks so this month has 6 week rows so the entries in the cell should be limited to 4?

      I even did a test case just to see if it would only make one line by doing this
      maxEventLines: { 3:1, 4:1, 5:1, 6:1 , 7:1, 8:1}, and it did not work.

      What am I missing.

      thanks for your help.

      posted in Utilities
      G
      GerrieD
    • RE: MMM-CalendarExt3

      @MMRIZE

      Wow thanks for adding this. I have not tested yet, but I assume that with this update I can limit the size of the calendar if we have a 6 week month like this month.

      posted in Utilities
      G
      GerrieD
    • RE: MMM-CalendarExt3

      @sdetweil

      Thanks, I will see where to fix that as well.

      Sam you are a legend here!!

      posted in Utilities
      G
      GerrieD
    • RE: MMM-CalendarExt3

      @sdetweil said in MMM-CalendarExt3:

      display:none !important;

      That worked. I try to not use !important to much (someone told me not to do it)

      But in this case it worked 100%

      Thanks

      posted in Utilities
      G
      GerrieD
    • RE: MMM-CalendarExt3

      @sdetweil thanks for you quick response

      I have followed a lot of your hep topics and thanks to you got familiar with the developers window.

      I added the display: none; to the module but in the developers window it is crossed out.

      f22d6ec9-c298-4106-8b81-a6bcf275ab3c-image.png

      posted in Utilities
      G
      GerrieD
    • RE: MMM-CalendarExt3

      this month has to much weeks so I am having overlap issues, one of my options is to remove the header (September) but I cant find where to remove it.
      I am trying to remove the Month at the top.

      		 {
                 module: "MMM-CalendarExt3",
                 position: "top_right",
                 title: "",
                 instanceId: '1',
      		   config: {
                   mode: 'month',
                   carouselId: "basicCalendar",
                   locale: 'en-ZA',
      		     header: "",
                   //headerTitleOptions: {month: 'long' , year:'numeric'},
      		     eventTimeOptions: {timeStyle: 'short'},
      		     useWeather: false,
                   maxEventLines: 5,
                   firstDayOfWeek: 1,
      		     displayEndTime: false,
      		     useMarquee: true,
      		     displayCW: false,
      		     showMore: true,
      		     showEnd: false,
      		     weekIndex: 0, // From which week the view starts; -1 : last week, 0: this week 2: 2 weeks later, ...
      		     weeksInView: 5, // How many weeks will be shown from `weekIndex`
      		     fontSize: "18px",
                   eventHight: "20px",
      		     calendarSet: ['Pieter', 'US_holiday'],
      	             }
               },
      		
      
      .MMM-CalendarExt3 .module-header {
      	text-align:center;
      	padding-bottom :30px;
      	font-size:80px;
      	color:rgb(45,73,69);     /*This is the Header Month Colour  */
      	/*text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;*/
      	display: none;
      }
      

      b54220c2-9cdd-4c21-9e42-989da6fe1151-image.png

      posted in Utilities
      G
      GerrieD