How to hide week number area? with Calendar Addon

Hello.

I want to hide week number area, not blanking.
I changed padding-left value to 0 on calendar.css.

.v-calendar-header-month td:first-child {
padding-left: 0px;
/* Same as VCalendar.MONTHLY_WEEKTOOLBARWIDTH - .v-calendar-week-numbers border */
}

About calendar header, the week number area was hidden.

but about calendar content, they was not hidden.

I think VCalendar.MONTHLY_WEEKTOOLBARWIDTH(=20 as default) to changed to 0, to hide them.

Someone have any idea?

Sorry for my english.
11852.png

Hello Masayuki,

try to add the display:none property in .v-calendar-day-number inside calendar.css or in your own theme . As you can see in the images is all what you need.

Good luck!
Iván
11854.png
11855.png

Sorry , I 've just noticed you refer to the week day area. Do the same as the reply says but with .v-calendar-week-number instead.

Good Luck!
Iván.

Hi Iván.

I tried it.

And it worked!

Thanks!
11856.png