|
Saturday, 22 December 2007 |
#28 - Creating Links in the Footer
One of the very first things most people need to do with Joomla, is change the footer to create their own links. Typically one adds stuff like privacy policy, a sitemap, terms and conditions and other generic links.
You can add as many more tds as you need to add as many links as you require.
We can do this easily in Joomla 1.0 by changing the footer.php (this applies to default template, possibly won't work with other templates).
// NOTE - You may change this file to suit your site needs ?>
<table border="0" width="auto" align="center" cellspacing="8px">
<tr> <td> <a href="http://yourwebsitename/index.php?option=com_content&task=view&id=43&Itemid=54"> Privacy</a></td>
<td><a href="http://yourwebsitename/index.php?option=com_content&task=view&id=42&Itemid=53"> Terms & Conditions</a></td>
<td> <a href="http://yourwebsitename/index.php?option=com_contact&Itemid=3"> Contact Us</a></td>
</tr> </table>
|
|
Last Updated ( Wednesday, 01 October 2008 )
|