Salve, ho un codice HTML del tipo:
Codice PHP:
<div class="tab_panel"><span>Contatti</span></div>
<div>
<table style="width: auto;" cellpadding="1" cellspacing="1">
  <tr>
    <td>[img]images/profile/msn.png[/img]</td>
    <td>MSN</td>
    <td><?php echo($profile['msn']); ?>
  </tr>
  <tr>
    <td>[img]images/profile/skype.png[/img]</td>
    <td>Skype</td>
    <td><?php echo($profile['skype']); ?>
  </tr>
</table>
</div>
ed il seguente codice CSS

Codice PHP:
/* Tab Panel */
div.tab_panel {
  
/*width: 178px;*/
  
widthauto;
  
height30px;
  
margin-top15px;
  
margin-bottom15px;
  
line-height30px;

  
backgroundurl(../images/css/tab/tab2.pngno-repeat;
  
border-bottom1px solid #BCD2E6;

  
font-size10px;
  
font-weightbold;
  
text-indent10px;
}

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

mi piacerebbe tanto per avere le cose ordinate, usare un unico div... tipo il codice HTML diverebbe:
<div class="tab_panel">
<p class="title">Contatti</p>
<table>...</table>
</div>

qualcuno ha qualche suggerimento? c'è da tener presente che c'è anche l'hover su tab_panel