Ho usato questo codice:
Codice:
<style>
.sfondo
{
background-color:#000;
max-width: 70px;
}
</style>
Il problema e che se ne faccio altri per le scritte che ho magari più larghe, non funziona... mi restringe tutto il menu :/
Sapete a cosa può essere dovuto?
Guarda come ho fatto:
Codice:
<head>
<style>
.sfondo
{
background-color:#000;
max-width: 70px;
}
.sfondo2
{
background-color:#000;
max-width: 85px;
}
.......
</head>
<body>
.................
<li class="sfondo">
<a href="LINK" style="text-decoration: none;"><font>TESTO</font></a>
</li>
<li class="sfondo2">
<a href="LINK" style="text-decoration: none;"><font>TESTO PIU' LUNGO</font></a>
</li>
</style>
..........
I puntini indicano che ci sono altri codici.