Pretty sure this is the gist of what ve9gra said; step by step:
I used my browser to "view page source" for the page with my calendar. That way I could see what sort of class/ID tag the event dates were given with when EPC generates its table.
For my calendar (I only have one category) all event dates were given the class ".s21". So I edited my essstyle.css file to include:
Code:
.s21 {font-weight: bolder;
color: #000000;
border: 0px;
background-color: ;
background-image: url("caldot.png");}
From there, you can use CSS to do whatever the heck you want with the event day display. I made a little image of a "dot" so the date now appears in a yellow circle.
I don't have a variety of categories, but I imagine if you did .. they'd each get a .sSOMETHING class, and you'd modify all of those in essstyle.css to appear how you'd like them to.
Hope that helped.
|