Hi!
How can i remove this from the source?
<div class="header no-image"></div>
<div class="header<?php if($no_image) : ?> no-image<?php endif; ?>">
<?php if (isset($images->image_fulltext) && !empty($images->image_fulltext)) : ?>
<img src="<?php echo $images->image_fulltext; ?>" alt="" />
<?php endif; ?>
<?php if (
$params->get('show_title') ||
$params->get('show_publish_date') ||
$params->get('show_create_date')
) : ?>
<div class="item-title-wrap">
<?php if ($params->get('show_title')) : ?>
<h1 class="item-title" itemprop="name" data-sr="enter bottom and move 50px"><?php echo $this->escape($this->item->title); ?></h1>
<?php endif; ?>
<?php if($params->get('show_publish_date')) : ?>
<span class="item-category" data-sr="enter bottom and move 50px and wait .2s">
<time datetime="<?php echo JHtml::_('date', $this->item->publish_up, JText::_(DATE_W3C)); ?>" itemprop="datePublished">
<?php echo JHTML::_('date', $this->item->publish_up, 'l, j F Y'); ?>
</time>
</span>
<?php elseif($params->get('show_create_date')) : ?>
<span class="item-category" data-sr="enter bottom and move 50px and wait .2s">
<time datetime="<?php echo JHtml::_('date', $this->item->created, JText::_(DATE_W3C)); ?>" itemprop="dateCreated">
<?php echo JHTML::_('date', $this->item->created, 'l, j F Y'); ?>
</time>
</span>
<?php endif; ?>
</div>
<?php endif; ?>
<?php if($templateSettings->get('display_mouse_icon', '1') != '0') : ?>
<span class="mouse-icon"><span><span></span></span></span>
<?php endif; ?>
</div>
<?php if (
!$noimage ||
$params->get('show_title') ||
$params->get('show_publish_date') ||
$params->get('show_create_date')
) : ?>
<div class="header<?php if($no_image) : ?> no-image<?php endif; ?>">
<?php if (isset($images->image_fulltext) && !empty($images->image_fulltext)) : ?>
<img src="<?php echo $images->image_fulltext; ?>" alt="" />
<?php endif; ?>
<?php if (
$params->get('show_title') ||
$params->get('show_publish_date') ||
$params->get('show_create_date')
) : ?>
<div class="item-title-wrap">
<?php if ($params->get('show_title')) : ?>
<h1 class="item-title" itemprop="name" data-sr="enter bottom and move 50px"><?php echo $this->escape($this->item->title); ?></h1>
<?php endif; ?>
<?php if($params->get('show_publish_date')) : ?>
<span class="item-category" data-sr="enter bottom and move 50px and wait .2s">
<time datetime="<?php echo JHtml::_('date', $this->item->publish_up, JText::_(DATE_W3C)); ?>" itemprop="datePublished">
<?php echo JHTML::_('date', $this->item->publish_up, 'l, j F Y'); ?>
</time>
</span>
<?php elseif($params->get('show_create_date')) : ?>
<span class="item-category" data-sr="enter bottom and move 50px and wait .2s">
<time datetime="<?php echo JHtml::_('date', $this->item->created, JText::_(DATE_W3C)); ?>" itemprop="dateCreated">
<?php echo JHTML::_('date', $this->item->created, 'l, j F Y'); ?>
</time>
</span>
<?php endif; ?>
</div>
<?php endif; ?>
<?php if($templateSettings->get('display_mouse_icon', '1') != '0') : ?>
<span class="mouse-icon"><span><span></span></span></span>
<?php endif; ?>
</div>
<?php endif; ?>