autoace:
Clyde, great contribution. I have been customizing it a bit and am trying to figure out the stylesheet. I want to add some custom styling to it and have been trying to figure out what controls what on the styleshee that you included.
Could you explain the dt dl dd and how to control the styling of the links please? Thank you
There are three types of lists that can be used in your (html)
unordered lists <ul> <li></li> </ul>
ordered lists <ol> <li></li> </ol>
definition lists <dl> <dd></dd> </dl>
Footer menu uses a combination of a definition list and unordered list for the menu display.
the <dl> </dl> tags make up the area (height and width) where the actual menu elements are displayed.
The <dd> </dd> tags control the width of each column within the menu display.
The actual links are contained within <ul> <li> </li> </ul> tags
So to style the links check the stylesheet for:
li a:link
li a:visited
li a:hover
li a:active
to style the menu titles check the stylesheet for:
.menuTitle