Skip to content

Examples & Tips

Seongnoh Sean Yi edited this page Sep 25, 2024 · 15 revisions
  • Hide default calendar module : Just remove position from the default calendar module config.
// config/config.js 
{
  module: "calendar",
  // position: "top_left",
  config: {
...
  • Remove week number:
/* custom.css */
.CX3 .cellContainer .cell:nth-child(1) .cw {
  display: none;
}