Ciao ecco il codice css completo:
Codice PHP:
/* LISTE DEFINIZIONE: MENU' LATERALE SINISTRO */
dl { width:183px}
dt{
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #fff;
font-weight: Bold;
margin: 0px 0 0;
text-align: left;
margin-left: 3px;
}
dd {
margin: 0;
padding-left:14px;
line-height: 1.4;
background:url(../img/freccia.gif) no-repeat center left;
margin-left: 3px;
}
dd.barra {
margin: 0px;
padding: 0px;
line-height: 1.3em;
width:100%;
background-image: url(../img/linea.gif);
background-repeat: repeat-x;
display: block;
border: 0;
}
dd a { text-decoration: none;color: #69F}
dd a:hover { color: #F60}
il codice html:
Codice PHP:
<dl>
<dt>Voce 1</dt>
<dd>[url="#"]Aggiungi [/url]</dd>
<dd>[url="#"]Gestione [/url]</dd>
<dd class="barra"></dd>
<dt>Voce 2</dt>
<dd>[url="#"]Aggiungi[/url]</dd>
<dd>[url="#"]Gestione [/url]</dd>
......
infine il doctype:
Codice PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="it" xml:lang="it">
Fabio :master: