teitbite wrote:Hi
Thoose are module titles. You will have to change it directly at /html/modules.php file. Simply wherever You will find <h[code] replace it with <h2> (do not forget about closing tag also)
hi this is the modules php file for the module of mod news pro that i am using for each news section but i cannot find anywhere to change it to have the title become a h2.
<?php
/**
* Main file
* @package News Show Pro GK4
* @Copyright (C) 2009-2011 Gavick.com
* @ All rights reserved
* @ Joomla! is Free Software
* @ Released under GNU/GPL License :
http://www.gnu.org/copyleft/gpl.html* @version $Revision: 4.3.0.0 $
**/
/** access restriction **/
defined('_JEXEC') or die('Restricted access');
/** Loading helper class **/
require_once (dirname(__FILE__).DS.'helper.php');
//
if(!class_exists('NSP_GK4_Joomla_Source')) require_once (dirname(__FILE__).DS.'gk_classes'.DS.'gk.source.joomla.php');
if(!class_exists('NSP_GK4_K2_Source')) require_once (dirname(__FILE__).DS.'gk_classes'.DS.'gk.source.k2.php');
if(!class_exists('NSP_GK4_VM_Source')) require_once (dirname(__FILE__).DS.'gk_classes'.DS.'gk.source.vm.php');
if(!class_exists('NSP_GK4_Thumbs')) require_once (dirname(__FILE__).DS.'gk_classes'.DS.'gk.thumbs.php');
if(!class_exists('NSP_GK4_Utils')) require_once (dirname(__FILE__).DS.'gk_classes'.DS.'gk.utils.php');
if(!class_exists('NSP_GK4_Layout_Parts')) require_once(JModuleHelper::getLayoutPath('mod_news_pro_gk4','layout.parts'));
//
$helper = new NSP_GK4_Helper();
$helper->init($module, $params);
$helper->getDatas();
$helper->renderLayout();