Hi there,
I have managed to hide the round black circle with the date in the joomla articles, now I would like to do the same but just in one of the categories of K2.
Thanks a lot
<!-- Date created -->
<div class="itemDate">
<time datetime="<?php echo JHtml::_('date', $this->item->created, 'Y-m-d'); ?>">
<span class="itemDateDay"><?php echo JHTML::_('date', $this->item->created , JText::_('d')); ?></span>
<span class="itemDateMonth"><?php echo JHTML::_('date', $this->item->created , JText::_('M')); ?></span>
</time>
</div>
<!-- Date created -->
<?php if($this->item->params->get('itemDateCreated')): ?>
<div class="itemDate">
<time datetime="<?php echo JHtml::_('date', $this->item->created, 'Y-m-d'); ?>">
<span class="itemDateDay"><?php echo JHTML::_('date', $this->item->created , JText::_('d')); ?></span>
<span class="itemDateMonth"><?php echo JHTML::_('date', $this->item->created , JText::_('M')); ?></span>
</time>
</div>
<?php endif; ?>
<!-- Item title -->
<!-- Date created -->
<div class="itemDate">
<time datetime="<?php echo JHtml::_('date', $this->item->created, JText::_(DATE_W3C)); ?>">
<span class="itemDateDay"><?php echo JHTML::_('date', $this->item->created , JText::_('d')); ?></span>
<span class="itemDateMonth"><?php echo JHTML::_('date', $this->item->created , JText::_('M')); ?></span>
</time>
</div>
<!-- Date created -->
<?php if($this->item->params->get('itemDateCreated')): ?>
<div class="itemDate">
<time datetime="<?php echo JHtml::_('date', $this->item->created, JText::_(DATE_W3C)); ?>">
<span class="itemDateDay"><?php echo JHTML::_('date', $this->item->created , JText::_('d')); ?></span>
<span class="itemDateMonth"><?php echo JHTML::_('date', $this->item->created , JText::_('M')); ?></span>
</time>
</div>
<?php endif; ?>