Dear Yugam Khosla,
Example: mod_article_latest
Please do the following steps:
+ hide the title of module in the module settings
+ go to "templates\sj_news25\html\mod_articles_latest\default.php", finding:
defined('_JEXEC') or die;
$app =& JFactory::getApplication();
include_once (JPATH_THEMES . DS . $app->getTemplate() . DS . 'includes'. DS .'image.class.php');
?>
=>
defined('_JEXEC') or die;
$app =& JFactory::getApplication();
include_once (JPATH_THEMES . DS . $app->getTemplate() . DS . 'includes'. DS .'image.class.php');
?>
<div class="mega-category-title">
<a href="<?php echo $list[0]->catlink;?>" target="_self"><?php echo $list[0]->category_title;?></a>
</div>
+ add the following code lines to the end of template.css in "templates\sj_news25\css":
ul.navi div.mega-module .mega-category-title a {
background: url("../images/bg_border_li.png") repeat-x scroll left bottom transparent;
color: #000000;
font-size: 14px;
font-weight: normal;
height: 30px;
line-height: 30px;
margin: 0;
padding: 0 0 5px;
text-transform: uppercase;
font-family: Oswald,serif
}
Thanks