Joomla
Joomla Tips and Tricks
#28 - Creating Links in the Footer
|
|
#28 - Creating Links in the FooterOne 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. We can do this easily in Joomla 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>
You can add as many more tds as you need to add as many links as you require. |