Hi,
Add this code into <joomla url>templatesja_eventshtmlcom_contentcategoryblog_item.php file
<div class="ja-before-content">
<div class="ja-before-inner clearfix">
<div class="ja-social-toolbox-small">
<div class="inner clearfix">
<?php if ($params->get('show_publish_date')):
$createDay = date('d', strtotime( $this->item->publish_up));
$createMonth = date('M', strtotime( $this->item->publish_up));
$createYear = date('Y', strtotime( $this->item->publish_up));
?>
<div class="articleCreated">
<span class="date"><?php echo $createDay; ?></span>
<span class="month"><?php echo $createMonth; ?></span>
<span class="year"><?php echo $createYear; ?></span>
</div>
<?php endif; ?>
</div>
</div>
<?php echo $this->item->event->beforeDisplayContent; ?>
</div>
</div>
before
<?php echo $this->item->introtext; ?>