Archive for May, 2004

Drop-up menu

Due to popular request (hi xeon :), I have updated the examples with the drop-up version. This is useful if you want to place the menus in the page footer.
This is the only important part:

CSS:
  1. /* fix the position */
  2. #menu li ul {
  3. bottom: 1.5em;
  4. left: 0;
  5. }
  6. #menu li li ul {
  7. bottom: 0;
  8. left: 100%;
  9. }

1.5em is just an example value. You need to modify it according to menu make-up (as shown in the examples).

Continue Reading →