It just seems that it would fit better if the fonts were smaller. Any suggestions?
The code in the block_view_upcoming.html file read like this:
-------------------------
Code
<!--[* add JS to page if needed *]-->
<!--[ pnmodgetvar module="PostCalendar" name="pcUsePopups" assign="pcUsePopups" ]-->
<!--[ if $pcUsePopups eq true ]-->
<!--[pnpageaddvar name="javascript" value="modules/PostCalendar/pnjavascript/postcalendar_overlibconfig.js"]-->
<!--[ /if ]-->
<!--[ pnmodgetvar module="PostCalendar" name="pcEventsOpenInNewWindow" assign="pcEventsOpenInNewWindow" ]-->
<!--[ if pcEventsOpenInNewWindow eq true ]-->
<!--[pnpageaddvar name="javascript" value="modules/PostCalendar/pnjavascript/postcalendar_jspopup.js"]-->
<!--[ /if ]-->
<div class="postcalendar_block_view_upcoming">
<!--[ if $SHOW_TITLE eq 1 ]-->
<h2 class='postcalendar_block_innertitle'><!--[gt text='Upcoming events']--></h2>
<!--[ /if ]-->
<!--[ counter start=0 assign=eventcount ]-->
<!--[ pc_sort_events var="S_EVENTS" sort="time" order="asc" value=$A_EVENTS ]-->
<!--[ foreach name=dates item=events key=date from=$S_EVENTS ]-->
<!--[ if $date > $TODAY_DATE ]-->
<!--[ foreach name=eventloop key=id item=event from=$events ]-->
<!--[ if $eventcount < $DISPLAY_LIMIT ]-->
<!--[ if $event.alldayevent != true ]-->
<!--[ if HOUR_TIME ]-->
<!--[ assign var="timestamp" value=$event.startTime|date_format:'%H:%M' ]-->
<!--[ else ]-->
<!--[ assign var="timestamp" value=$event.startTime|date_format:'%l:%M %p' ]-->
<!--[ /if ]-->
<!--[ else ]-->
<!--[ assign var="timestamp" value="" ]-->
<!--[ /if ]-->
<ul>
<!--[ if $smarty.foreach.eventloop.iteration eq 1 ]-->
<li class="pc_blockdate">
<!--[ $date|pc_date_format ]-->
</li>
<!--[ /if ]-->
<li class="pc_blockevent">
<a class="eventlink" href="<!--[ pc_url action=detail eid=$event.eid date=$date ]-->"
<!--[ pc_popup delay="500"
timeout="3600"
bgcolor=$event.catcolor
caption=$event.title
text=$event.hometext|truncate:255:"..." ]-->><!--[ $timestamp ]--> <!--[ $event.title|strip_tags ]-->
<!--[ if $event.alldayevent != true ]-->
(<!--[ $event.duration_hours ]-->:<!--[ $event.duration_minutes ]--> <!--[gt text='Long']-->)
<!--[ /if ]-->
</a>
</li>
</ul>
<!--[ /if ]-->
<!--[ counter ]-->
<!--[ /foreach ]-->
<!--[ /if ]-->
<!--[ /foreach ]-->
<!--[ if $eventcount == 0 ]-->
<!--[gt text='No events today.']-->
<!--[ /if ]-->
</div>
<!--[ pnmodgetvar module="PostCalendar" name="pcUsePopups" assign="pcUsePopups" ]-->
<!--[ if $pcUsePopups eq true ]-->
<!--[pnpageaddvar name="javascript" value="modules/PostCalendar/pnjavascript/postcalendar_overlibconfig.js"]-->
<!--[ /if ]-->
<!--[ pnmodgetvar module="PostCalendar" name="pcEventsOpenInNewWindow" assign="pcEventsOpenInNewWindow" ]-->
<!--[ if pcEventsOpenInNewWindow eq true ]-->
<!--[pnpageaddvar name="javascript" value="modules/PostCalendar/pnjavascript/postcalendar_jspopup.js"]-->
<!--[ /if ]-->
<div class="postcalendar_block_view_upcoming">
<!--[ if $SHOW_TITLE eq 1 ]-->
<h2 class='postcalendar_block_innertitle'><!--[gt text='Upcoming events']--></h2>
<!--[ /if ]-->
<!--[ counter start=0 assign=eventcount ]-->
<!--[ pc_sort_events var="S_EVENTS" sort="time" order="asc" value=$A_EVENTS ]-->
<!--[ foreach name=dates item=events key=date from=$S_EVENTS ]-->
<!--[ if $date > $TODAY_DATE ]-->
<!--[ foreach name=eventloop key=id item=event from=$events ]-->
<!--[ if $eventcount < $DISPLAY_LIMIT ]-->
<!--[ if $event.alldayevent != true ]-->
<!--[ if HOUR_TIME ]-->
<!--[ assign var="timestamp" value=$event.startTime|date_format:'%H:%M' ]-->
<!--[ else ]-->
<!--[ assign var="timestamp" value=$event.startTime|date_format:'%l:%M %p' ]-->
<!--[ /if ]-->
<!--[ else ]-->
<!--[ assign var="timestamp" value="" ]-->
<!--[ /if ]-->
<ul>
<!--[ if $smarty.foreach.eventloop.iteration eq 1 ]-->
<li class="pc_blockdate">
<!--[ $date|pc_date_format ]-->
</li>
<!--[ /if ]-->
<li class="pc_blockevent">
<a class="eventlink" href="<!--[ pc_url action=detail eid=$event.eid date=$date ]-->"
<!--[ pc_popup delay="500"
timeout="3600"
bgcolor=$event.catcolor
caption=$event.title
text=$event.hometext|truncate:255:"..." ]-->><!--[ $timestamp ]--> <!--[ $event.title|strip_tags ]-->
<!--[ if $event.alldayevent != true ]-->
(<!--[ $event.duration_hours ]-->:<!--[ $event.duration_minutes ]--> <!--[gt text='Long']-->)
<!--[ /if ]-->
</a>
</li>
</ul>
<!--[ /if ]-->
<!--[ counter ]-->
<!--[ /foreach ]-->
<!--[ /if ]-->
<!--[ /foreach ]-->
<!--[ if $eventcount == 0 ]-->
<!--[gt text='No events today.']-->
<!--[ /if ]-->
</div>
-------------------------
