|
How to format the Joomla Newsflash Title Size |
PDF |
| Print | |
E-mail |
|
Locate the file _item.php in modules/mod_newsflash/templates/_item.php
Code:
<td class="contentheading<?php echo $params->get( 'moduleclass_sfx' ); ?>" width="100%"> <?php if ($params->get('link_titles') && $item->linkOn != '') : ?> <a href="/<?php echo $item->linkOn;?>" class="contentpagetitle<?php echo $params->get( 'moduleclass_sfx' ); ?>"> <?php echo $item->title;?></a> <?php else : ?> <?php echo $item->title; ?> <?php endif; ?> </td>
This is where you can modify the format by taking out the content heading class and/or changing the class for the contentpagetitle
 |