This will add a footer menu to the bottom of every page:
1, Upload SimpleMenu.php to your sites root
2. Upload _sub_footer.html to templates/tmpl_someTemplate
3. Add language string for key name '_footer_menu_text' (This can be html code.)
4. Change styling of bottom menu links in _sub_footer.html
<style>
ul#footerMenu li{
list-style:none;
float:left;
width:20%;
text-align:center;
height:25px;
display:block;
}
ul#footerMenu li a{
width:150px;
height:;
background-color:#dddddd;
padding:4px;
display:block;
border:1px solid #333333;
}
ul#footerMenu li a:hover{
text-decoration:none;
background-color:#252525;
border:1px solid #404040;
}
ul#footerMenu li ul{
display:none;
}
#footerMenuContainer {
text-align:left;
padding:10px;
margin-left:10px;
margin-right:10px;
}
</style>
Screen shot