northis
Hi,
By default, Articles Category module of Joomla strips these HTML tags in the introtext of article it displays. You will need to hack in core code of this module:
1. Go to file: root/modules/mod_articles_category/helper.php
2. At approx line 306, comment that line of code:
$item->introtext = self::_cleanIntrotext($item->introtext);
like this:
if ($show_introtext)
{
$item->introtext = JHtml::_('content.prepare', $item->introtext, '', 'mod_articles_category.content');
//$item->introtext = self::_cleanIntrotext($item->introtext);
}
Remember to backup this file first.
Regards