Puoi postare un link ad un topic? In modo da poterti dire cosa scrivere.
EDIT: Nel css cerca .signature e sostituisci:
Codice:
.signature {
margin-top: 1.5em;
padding-top: 0.2em;
font-size: 1.1em;
color: #000000;
border-top: 1px solid #CCCCCC;
clear: left;
line-height: 140%;
overflow: hidden;
width: 100%;
}
con
Codice:
.signature {
margin-top: 1.5em;
padding-top: 0.2em;
font-size: 1.1em;
color: #000000;
border-top: 1px solid #CCCCCC;
clear: left;
line-height: 140%;
overflow: hidden;
width: 100%;
height: auto !important;
max-height: 200px !important; /* Cambia questo valore con l'altezza massima che vuoi */
}