For some reason Joomla 2.5 lost the ability to show nice horizontal menus in the footer; instead the items appear vertically. I personally used this in Joomla 1.5 to show the privacy policy, terms of use, etc. links at the very bottom of every page. After a little research I found how to accomplish a horizontal footer menu in Joomla 2.5.
1. Add this somewhere at the bottom of your template.css file:
ul.menuflat li
{
display: inline;
padding: 10px;
}
2. Next, edit the module that displays your footer menu. You'll see a box called "menu suffix." Enter "flat" (without quotes) in there and save the module. Your menu should now appear horizontal.
Related Articles
Nginx - Blocking Access to Joo...
I propose blocking all access to Joomla's administrator login page and front-end user login (if you don't use it) because I constantly see a-hole bots in my log...
Ubuntu 24.04 Nginx Build Outli...
I re-built my LEMP web-server fresh on Ubuntu 24.04 and learned some things along the way. This is my base build outline mostly created for my own notes. INS...
How To Build an Ubuntu Web Ser...
The following is a task outline for building an Ubuntu-based web-server to run Joomla and JomSocial. I created this for my own notes, so apologies if it's...
Ubuntu 22.04 Nginx Build Outli...
I re-built my LEMP web-server fresh on Ubuntu 22.04 and learned some things along the way. This is my base build outline mostly created for my own notes. INS...