Quote Originally Posted by LaCamus View Post
Then...
in: includes/templates/your_template/templates/tpl_events_calendar_default.php
Code:
  <div class="event_image_outer">
    <div class="event_image_inner">
      <?php echo event_flink_small($event_array['image'], $event_array['title'], 'class="c1" hspace="0" vspace="0"'); ?>
    </div>
    <div class="clearLeft"> </div>
  </div>
...will work.

For those who still want to utilize the auto size detection feature of zen carts' image functions, they should use:
Code:
  <div class="event_image_outer">
    <div class="event_image_inner">
      <?php echo event_flink_small($event_array['image'], $event_array['title'], 'class="c1" hspace="0" vspace="0"',true); ?>
    </div>
    <div class="clearLeft"> </div>
  </div>
one more thing.. in this code the hspace and vspace attributes of <img> are deprecated in HTML 4.01. This code is going run into validation issues..

would be better to add a margins setting (margin: 0px;) to the "c1" class in the stylesheet instead..