CSS:
Codice PHP:
div.tab_box {
  
padding-bottom5px;
  
border-bottom1px solid #BCD2E6;
}

div.tab_box h4 {
  
backgroundurl(../images/css/tab/tab2.pngno-repeat;
  
border-bottom1px solid #BCD2E6;
  
font-size100%;
  
line-height30px;
  
text-indent10px;
}

div.tab_box h4:hover {
  
color#FF9C00;
  
backgroundurl(../images/css/tab/tab1.pngno-repeat;

HTML:
Codice PHP:
<div class="tab_box"><h4>Attivita`</h4>
  <div>
    <table style="width: auto;" cellpadding="1" cellspacing="1">
      <tr>
        <td>[img]images/profile/reg_date.png[/img]</td>
        <td>Iscritto dal</td>
        <td><?php echo($profile['registration_date']); ?></td>
      </tr>
      <tr>
        <td>[img]images/profile/time.png[/img]</td>
        <td>Ultima visita</td>
        <td><?php echo($seen); ?></td>
      </tr>
      <tr>
        <td>[img]images/profile/chart.png[/img]</td>
        <td>Voti ricevuti</td>
        <td><?php echo(Profile_CountVotes($uid$mysql)); ?></td>
      </tr>
    </table>
  </div>
</div>
va meglio così?
ps.: cell padding e cell spacing per una tabella, in CSS come si scrive?