How to remove/change "today" color indicator

How do I change the color of the background of the calendar indicator for today ? (the yellow one)

Uploading…

Hi @Asyong

Please set the next CSS rule to solve it:

.dhx_scale_holder_now{background-image:none}

Here is a Demo

1 Like

Thank you so much @Polina!

However this will remove the lines as shown in your demo for the dividers in the Scheduler.
It also doesn’t work for monthly view.

@Asyong

Also, you can set the background-image from other days: https://prnt.sc/t91wot

For month view please apply inherit bg color in CSS:

.dhx_now .dhx_month_head, .dhx_now .dhx_month_body{
	background-color: inherit;
}

New demo is here.

1 Like