i have installed the Events module...its great...although have a minor issue i just cant resolve

when altering the event.css i managed to change all the necessary colors other than the purple shaded cell that denotes the first day of the month in the calendar

i have tried altering 'event-calendar td.selected' but this doesnt change it...is it hard coded somewhere?

using Moodle developer toolbar, when i hover over the cell, the latter part of the path is (if the date is Tues, May 1):

>td # may1.may tue selected > div.event-empty

.. i expect it something to do with the "td # may1.may tue selected " part of the path, which is why i changed 'event-calendar td.selected', but im just having no luck....i even found the hex of the color which is 9999ff, so did a 'find' in the css, but that couldnt find it either

how do you change the color of the cell that represents the first day of the month? im baffled

any help very appreciated

djax80

Comments

zeta ζ’s picture

You’ve posted to
Events – For events, conferences and other Drupal happenings.

I recommend using Firebug (addon for Firefox).

You’re right: it is

.event-calendar td.selected {
   background:#9999FF none repeat scroll 0% 50%;
}

in event.css (line 59) – are you editing the right file? (Event module could be in three places) It does change the colour on my site.

BTW It doesn’t denote the first day of the month – It’s just that I can’t ‘select’ any other day.