Look in the default.html template file (assuming you're using the default templates) for the lines of code following:
<!-- MONTHLY OR WEEKLY VIEW -->
then following:
<%FOREACH GRID COLUMN%>
The following line defines the colouring of the grid cell:
code:
<TD CLASS="thinborder" VALIGN=TOP WIDTH=14% <%=$rowheight%> BGCOLOR="<%IF SELECTED%><%=$_GRID_CELL_SELECTED_BGCOLOR%><%ELSE%><%=$_GRID_CELL_BGCOLOR%><%/IF%>">
You can try the following in place of it which should colour cells without a number in them the same as the page background colour.
code:
<% if ($DAY->{'dd'}) { %>
<TD CLASS="thinborder" VALIGN=TOP WIDTH=14% <%=$rowheight%> BGCOLOR="<%IF SELECTED%><%=$_GRID_CELL_SELECTED_BGCOLOR%><%ELSE%><%=$_GRID_CELL_BGCOLOR%><%/IF%>">
<% } else { %>
<TD CLASS="thinborder" VALIGN=TOP WIDTH=14% <%=$rowheight%> BGCOLOR="<%=$_BGCOLOR%>">
<% } %>
The <%=$_BGCOLOR%> being the code where the colour is specified.
Dan O.
BTW. That will only work on the monthly grid display as on any of the others, all the calendar cells have a number in them.
[This message has been edited by DanO (edited February 24, 2003).]