calendar color changing
-
This has sort of been answered, but not in a way I understood well enough to implement. Yes, changing the calendar color should be in the css, but how exactly do I execute such a change?
The documentation discusses copying php files to an alternate location, but didn’t state (where I saw) that css worked the same way.
Then when I review the source I find css elements like this:
.em.em-calendar .em-cal-head>div {
background: var(–header-background);
color: var(–header-color);
margin: 10px 0;
padding: 0 10px;
border-left: var(–header-border);
text-transform: uppercase;
overflow-x: hidden;
text-overflow: ellipsis
}This suggests to me that all I need to do is set the variable names to the color values I want, but I don’t understand where ( maybe how?, and not color picking) to do this.
The page I need help with: [log in to see the link]
- The topic ‘calendar color changing’ is closed to new replies.