PHP Calendar
This calendar is configurable to meet different requests.
The php calendar source code is downloadable.
Here are samples how to customize the code
Chang Calendar Color
<style type="text/css">
<!--
.calendarHeader {
font-weight: bolder;
color: #CC0000;
background-color: #FF9900;
}
.calendarToday {
background-color: #FFFFFF;
}
.calendar {
background-color: #FFFFAA;
}
.style10 {
color: #FF0000;
font-weight: bold;
}
-->
</style> |
The calendar is a HTML table. It is used CSS style
definition,
calendarHeader, calendarToday, calendar.
These parameters are configurable to your needs. Or for simplicity,
just copy the above CSS style to your page HEAD section.
|