** you are talking about editing be "default.html" in the following path: calerdarscript/templates/calendars/default/default.html? **
Yes.
** And, by comment out, do you mean something like this: "# **
It depends on what code you want to comment out. If it is Perl code like inside <% ... %> tags than yes a # sign can be used to negate processing of the code on the rest of that line. You can not however, comment out the <% ... %> tags themselves.
If you're commenting out HTML code, HTML comment tags ( <!-- ... --> ) would have to be used around what you didn't want displayed in the browser. That HTML code would still be visible in the page's source code just not displayed by the browser.
However, I found a simpler way to stop the printing on the code you don't want shown and that is by just adding the 0 like I showed above:
change:
<% if ($VIEW eq "Month") { %>
to
<% if (0) { %>
Dan O.
[This message has been edited by DanO (edited March 18, 2004).]