<<
Moss Calender Colours
How to change the colour of MOSS calendar events.
This tutorial shows how to change the colour of all events on a MOSS 2007 calendar, easily, and without editing any themes. It borrows heavily from the information on
this page. This requires designer/page-edit permissions.
1. On the calendar view, select "Site Actions" then "Edit Page".
2. Add a new "Content Editor" Web Part
3. Move the new Web Part underneath the calender
4. Edit the Web Part ("Edit" then "Modify Shared Web Part")
5. In the "Source Editor", paste the CSS below.
6. Make the Web Part hidden, under "Layout"
7. Choose "OK" then "Exit Edit Mode"
The CSS
This is for pale red.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
<style type="text/css"><!--
.contB {
border: 1px solid #FF6633;
border-width: 1px 2px 1px 2px;
}
.ms-cal-defaultbgcolor, .ms-cal-defaultbgcolorsel {
background-image: none;
background-color: #FF9933;
}
.ms-cal-defaultbgcolorsel {
background-color: #FFCC99;
}
td.ms-cal-defaultbgcolor a {
color: #CC0000;
}
--></style>