rthrash, on Dec 17 2004, 12:33 AM, said:
This is the stylesheet:
#tabs {
float:left;
width:100%;
background:#369;
font-size:85%;
line-height:normal;
}
#tabs ul {
margin:0;
padding:10px 10px 0;
list-style:none;
}
#tabs li {
float:left;
background:url("imagenes/2right.gif") no-repeat right top;
margin:0;
padding:0 5px 0 0;
}
#tabs a {
float:left;
display:block;
background:url("imagenes/2left.gif") no-repeat left top;
padding:5px 7px 4px 20px;
text-decoration:none;
font-size: 100%;
font-weight:bold;
color:#9cf;
}
/* Commented Backslash Hack
hides rule from IE5-Mac \*/
#tabs a {float:none;}
/* End IE5-Mac hack */
#tabs a:hover {
color:#fff;
}
#tabs #current {
background-image:url("imagenes/2right_on.gif");
}
#tabs #current a {
background-image:url("imagenes/2left_on.gif");
color:#333;
padding-bottom:5px;}
An here's the markup (I understand [[ListMenu]] will replace the unordered list (from <ul> to </ul>):
<div id="tabs">
<ul>
<li id="current"><a href="index.htm"
title="Página índice"
accesskey="p"><em>P</em>rincipal</a></li>
<li><a href="alumnos.htm" title="Página índice"
accesskey="m"><em>M</em>is alumn@s</a></li>
<li><a href="contacto.htm" title="Información de contacto"
accesskey="c"><em>C</em>ontacto</a></li>
</ul>
</div>











