If you wan to give your Joomla better SEO, change the titles to H1.
Go to components > com_content > content.html.php around line 620 and change
The first row we need to change has a closing a tag at the end, for some reason WP doesn’t show it here in the code so i dropped the <
<?php echo $row->title;?>/a>
to
<h1><?php echo $row->title;?></h1>/a>
After that there's another one
<?php echo $row->title;?>
to
<h1><?php echo $row->title;?></h1>
Related posts
Tags: Joomla Tips




The file “content.html.php” doesn’t exist at least in the current Joomla 1.5.9 installation.
Any alternatives?
Sorry, our Joomla tips are for Joomla 1.0.15 as opposed to Joomla 1.5 which has a different structure.