This is really just a question of modifying the CSS used to style the multi column menus as defined inside "anylinkmenu.css", specifically, this section:
Code:
/* ######### Alternate multi-column class for drop down menus ######### */
"
"
To get a very simple grid like look for example, you might try replacing the default code in that section with the below instead:
Code:
.anylinkmenucols{
position: absolute;
width: 350px;
left: 0;
top: 0;
visibility: hidden;
border: 1px solid black;
padding: 10px;
font: normal 12px Verdana;
z-index: 100; /*zIndex should be greater than that of shadow's below*/
background: #E9E9E9;
}
.anylinkmenucols li{
padding-bottom: 5px;
border-bottom:1px solid black;
}
.anylinkmenucols li a{
display: block;
text-decoration:none;
}
.anylinkmenucols li a:hover{
color: red;
}
.anylinkmenucols .column{
float: left;
padding: 3px 8px;
margin-right: 5px;
}
.anylinkmenucols .column ul{
margin: 0;
padding: 0;
list-style-type: none;
}
You can take this as far as your knowledge of CSS permits...
Bookmarks