J2.5:How to add a span element to menu entries
From Joomla! Documentation
To add a span element to your menu items (like there was in Joomla 1.5), you have to override the layout for mod_menu. You can follow the general approach described in How to override the output from the Joomla! core.
You need to override the following layout from mod_menu:
- defult_url.php
- default_component.php
After copying the files into your template (see How to override the output from the Joomla! core for details) do the following:
In both these files look for the following statement:
<?php echo $linktype; ?>
It should occur three times in both files.
Replace each of these with:
<span><?php echo $linktype; ?></span>
And you're done.