PDA

View Full Version : How to get Calendar to display month



Tony Swash
Tue 29th Apr '03, 11:26am
How can I get the Calendar to display the name of month it is displaying, preferably in the middle of the top display bar? I have poked around in the calendar template and I can find the way the previous and next month names are displayed but not the name of month that is being displayed.

Reverend
Tue 29th Apr '03, 5:25pm
In the Calendar template find this;
<td bgcolor="{categorybackcolor}" colspan="7">
<normalfont color="{categoryfontcolor}"><b>$bbtitle Calendar</b></normalfont></td>and replace with this
<td bgcolor="{categorybackcolor}" colspan="7">
<center><normalfont color="{categoryfontcolor}"><b>$monthtext</b></normalfont></center></td>

Tony Swash
Tue 29th Apr '03, 6:28pm
In the Calendar template find this;
<td bgcolor="{categorybackcolor}" colspan="7">
<normalfont color="{categoryfontcolor}"><b>$bbtitle Calendar</b></normalfont></td>and replace with this
<td bgcolor="{categorybackcolor}" colspan="7">
<center><normalfont color="{categoryfontcolor}"><b>$monthtext</b></normalfont></center></td>

That worked a treat, just what I wanted. Thank you so much.