Honestamente no creo que necesita un menú plantilla para crear esto. Usted podría crearlo usted mismo. El código es bastante sencillo.
Es, básicamente, hacer una lista desordenada. Dentro de los elementos de lista, que integrar otra lista no ordenada. Dentro de la lista de elementos incrustados, incrustar una tabla con los enlaces en cada celda:
<ul> <!-- make a list -->
<li calss="drop"><a href="#">Top Level Link
<ul> <!-- embed a list -->
<li>
<table cellspacing="0" cellpadding="0"> <!-- embed a table -->
<tr>
<td><a href="#">Link 1</a></td>
<td><a href="#">Link 2</a></td>
</tr>
</table> <!-- close the table -->
</li>
</ul> <!-- close the embedded list -->
</a>
</li>
</ul> <!-- close the main list -->
- <ul> <!-- make a list -->
- <li calss="drop"><a href="#">Top Level Link
- <ul> <!-- embed a list -->
- <li>
-
- <table cellspacing="0" cellpadding="0"> <!-- embed a table -->
- <tr>
- <td><a href="#">Link 1</a></td>
- <td><a href="#">Link 2</a></td>
- </tr>
- </table> <!-- close the table -->
-
- </li>
- </ul> <!-- close the embedded list -->
- </a>
- </li>
- </ul> <!-- close the main list -->
-
A continuación, utilizar algunos CSS de lujo para el efecto hover:
ul li {
list-style: none;
margin: 0 5px; /* spacing things out */
padding: 0;
display: inline; /* ie6 fix */
float: left; /* put the list in a line */
}
ul li.drop ul {
display: none; /* hide the embedded list */
}
ul li.drop:hover ul {
display: block; /* show the embedded list on hover */
position: absolute; /* put it in the right spot */
}
- ul li {
- list-style: none;
- margin: 0 5px; /* spacing things out */
- padding: 0;
- display: inline; /* ie6 fix */
- float: left; /* put the list in a line */
- }
-
- ul li.drop ul {
- display: none; /* hide the embedded list */
- }
-
- ul li.drop:hover ul {
- display: block; /* show the embedded list on hover */
- position: absolute; /* put it in the right spot */
- }
-
Thats sobre ella. No he probado esto por lo que puede ser que necesite un poco de ajuste, pero esto es un menú de navegación básica.
Use your words like arrows to shoot toward your goal.