Change "green" color for not selectable day
I would like to change this very light green color for the non selectable days in the calendar.
Could someone please tell me how I can change this color into a dark grey color for example.
2 Answers
Hi, this is very simple.
Go to "Plugins" and klick on "Plugin-Editor". On the next, choose "EasyAppointment" on the right upper corner.
Then select on the right side "Css" and the File "eafront-bootstrap.css". Then go to Line 255 where you can find the following code:
.ea-bootstrap .ui-datepicker .no-slots, .ea-bootstrap .ui-datepicker .no-slots:hover {Now you can change "background-color:" to following Value for Dark-Grey:
background-color:rgba(163,163,117,0.5);
color: #fff;
cursor: default;
}
- Hex: #A9A9A9
- RGB: rgb(169,169,169,0.5)
Hi Michael, thanks for help 🙂
Please login or Register to submit your answer