Hello,
Another query
I want to delete the article date.
Post screenshot.
Thanks
.item-page .itemDate {
display:none;
}
<div class="itemDate">
<span class="itemDateDay">
<time datetime="<?php echo JHtml::_('date', $this->item->created, 'd'); ?>"><?php echo JHTML::_('date',$this->item->created, 'd'); ?></time>
</span>
<span class="itemDateMonth">
<time datetime="<?php echo JHtml::_('date', $this->item->created, 'M'); ?>"><?php echo JHTML::_('date',$this->item->created, 'M'); ?></time>
</span>
</div>
<?php if ($params->get('show_publish_date')) : ?>
<div class="itemDate">
<span class="itemDateDay">
<time datetime="<?php echo JHtml::_('date', $this->item->created, 'd'); ?>"><?php echo JHTML::_('date',$this->item->created, 'd'); ?></time>
</span>
<span class="itemDateMonth">
<time datetime="<?php echo JHtml::_('date', $this->item->created, 'M'); ?>"><?php echo JHTML::_('date',$this->item->created, 'M'); ?></time>
</span>
</div>
<?php endif; ?>
Konrad M wrote:@walesa can you give url to page with issue ?
Konrad M wrote:@walesa just try add this code to css/system/print.css at the bottom after last selector. This css file is loaded when print popup button is activated.
.itemDate {
display:none !important;
}