• 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.

Calendar Font Size

Scheduled Pinned Locked Moved Custom CSS
13 Posts 2 Posters 9.6k 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.
  • J Offline
    justjim1220 Module Developer @DerOptiker86
    last edited by Jul 31, 2018, 5:51 PM

    @deroptiker86

    Hmmm, let me play with it on my end.
    I’ll be right back in a few minutes.

    "Life's Too Short To Dance With Ugly People"
    Jim Hallock - 1995

    1 Reply Last reply Reply Quote 0
    • D Offline
      DerOptiker86
      last edited by Jul 31, 2018, 5:54 PM

      nice thx!

      
      .calendar .time {
        padding-left: 30px;
        text-align: right;
        vertical-align: top;
      }
      
      .calendar {
       width: 375px;
       font-size: 200px;
       line-height: 40px;
      }
      
      
      

      i also drop my cofig.js here… maybe thats my fault:

        language: "de",
              timeFormat: 24,
              units: "metric",
      
              modules: [
                      {
                              module: "alert",
                      },
                      {
                              module: "updatenotification",
                              position: "top_bar"
                      },
                      {
                              module: "clock",
                              position: "top_left"
                      },
                      {
                              module: "calendar",
                              header: "Icloud Calender",
                              position: "top_center",
                              config: {
                                      calendars: [
                                              {
                                                      symbol: "calendar-check-o ",
                                                      url:"webcal://pxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                                              }
                                      ]
                              }
                      },
                      {
                              module: 'MMM-NFL',
                              position: 'left',
                              config: {
                                      colored: true
                              }
                      },
                      {
                              module: 'MMM-NFL',
                              position: 'right',
                              config: {
                                      colored: true,
                                      focus_on: "NE"
                              }
                      },
                      {
                              module: "MMM-rain-forecast",
                              position: "top_right",   // see mirror setting for options
                              header: "Gibt es Regen",
                              config: {
                                      lat: xxxx,
                                      lon: xxxxx,
                                      pleaseWait: "Bitte warten",
                                      noRainText: "Bis %s kein Regen",
                                      fillColour: '#0074d9'   // This is a blue color you can also use blue, cyan etc
                              }
                      },
                      {
                              module: 'mmm-moon-phases',
                              header: 'Aktuelle Mondphase',   // optionally you can add a header to this block
                              position: 'bottom_right',        // this can be any of the regions
                              config: {
                              }
                      },
                      {
                              module: "weatherforecast",
      
      
      
      J 2 Replies Last reply Jul 31, 2018, 6:31 PM Reply Quote 0
      • J Offline
        justjim1220 Module Developer @DerOptiker86
        last edited by justjim1220 Jul 31, 2018, 6:33 PM Jul 31, 2018, 6:31 PM

        @DerOptiker86

        OK, add the following to your config.js…

        tableClass: "large",
        

        like this…

        {
            module: "calendar",
            header: "iCloud Calendar",
            position: "top_center",
            config: {
                tableClass: "large",
        	calendars: [
        	    {
        	        symbol: "calendar-check-o ",
        		url: " "
        	    }
        	]
            }
        },
        

        you can change a lot of the defaults in the config…

        defaults: {
        		maximumEntries: 10, // Total Maximum Entries
        		maximumNumberOfDays: 365,
        		displaySymbol: true,
        		defaultSymbol: "calendar-alt", // Fontawesome Symbol see http://fontawesome.io/cheatsheet/
        		displayRepeatingCountTitle: false,
        		defaultRepeatingCountTitle: "",
        		maxTitleLength: 50,
        		wrapEvents: false, // wrap events to multiple lines breaking at maxTitleLength
        		fetchInterval: 30 * 60 * 1000, // Update every 30 minutes.
        		animationSpeed: 2000,
        		fade: false,
        		urgency: 7,
        		timeFormat: "relative",
        		dateFormat: "MMM Do",
        		fullDayEventDateFormat: "MMM Do",
        		getRelative: 6,
        		fadePoint: 0.25, // Start on 1/4th of the list.
        		hidePrivate: false,
        		hideOngoing: false,
        		colored: true,
        		coloredSymbolOnly: true,
        		tableClass: "large",
        		calendars: [
        			{
        				symbol: "calendar",
        				url: "http://www.calendarlabs.com/templates/ical/US-Holidays.ics",
        			},
        		],
        		titleReplace: {
        			"De verjaardag van ": "",
        			"'s birthday": ""
        		},
        		broadcastEvents: true,
        		excludedEvents: []
        	},
        

        I hope this is what you’re looking for. :winking_face:

        "Life's Too Short To Dance With Ugly People"
        Jim Hallock - 1995

        1 Reply Last reply Reply Quote 0
        • D Offline
          DerOptiker86
          last edited by Jul 31, 2018, 6:43 PM

          :rolling_on_the_floor_laughing: :rolling_on_the_floor_laughing: :rolling_on_the_floor_laughing:

          it works :face_with_tears_of_joy: :face_with_tears_of_joy:

          now i only must to fix the size :vulcan_salute_light_skin_tone:

          realy thank you for your fast help!!!

          :call_me_hand_medium-light_skin_tone:

          0_1533062604555_IMG_9845.JPG

          J 1 Reply Last reply Jul 31, 2018, 7:09 PM Reply Quote 1
          • J Offline
            justjim1220 Module Developer @DerOptiker86
            last edited by Jul 31, 2018, 7:08 PM

            @DerOptiker86

            And, you can remove this entry in your custom.css…

            .calendar {
             width: 375px;
             font-size: 200px;
             line-height: 40px;
            }
            

            :upside-down_face:

            "Life's Too Short To Dance With Ugly People"
            Jim Hallock - 1995

            1 Reply Last reply Reply Quote 0
            • J Offline
              justjim1220 Module Developer @DerOptiker86
              last edited by Jul 31, 2018, 7:09 PM

              @deroptiker86

              Always glad to help out!

              "Life's Too Short To Dance With Ugly People"
              Jim Hallock - 1995

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