Hello,
I need add text wrap in news item page. Please check the attach image.
Thank You
.itemImageBlock {
float: left !important;
}
.itemImage {
float:left;
}
<div class="itemBody">
<?php echo $this->item->event->BeforeDisplayContent; ?> <?php echo $this->item->event->K2BeforeDisplayContent; ?>
<?php if(!empty($this->item->fulltext)): ?>
<?php if($params->get('itemIntroText')): ?>
<div class="itemIntroText">
<?php echo $this->item->introtext; ?>
</div>
<?php endif; ?>
<?php endif; ?>
<?php if($params->get('itemFullText')): ?>
<div class="itemFullText">
<?php echo (!empty($this->item->fulltext)) ? $this->item->fulltext : $this->item->introtext; ?>
</div>
<?php endif; ?>
<?php echo $this->item->event->AfterDisplay; ?> <?php echo $this->item->event->K2AfterDisplay; ?>
</div>
if(
$params->get('itemPrintButton') ||
$params->get('itemEmailButton') ||
$params->get('itemSocialButton') ||
$params->get('itemVideoAnchor') ||
$params->get('itemImageGalleryAnchor') ||
$params->get('itemHits') ||
$params->get('itemCategory') ||
$params->get('itemTags') ||
$params->get('itemRating')
) :
?>