correction bug

Le bouton d'affichage du nombre d'inscrits n'affichait pas correctement le nombre d'inscrits, le nombre était tronqué:

modification dans le fichier template.css du modele csm001b

 

 

  • avant :

.art-button-wrapper .art-button
{
 display:block;
 height: 34px;
 font-family: Arial, Helvetica, Sans-Serif;
 font-size: 12px;
 font-style: normal;
 font-weight: normal;
 white-space: nowrap;
 text-align: left;
 padding: 0 21px !important;
 line-height: 34px;
 text-decoration: none !important;
 color: #1C2A40 !important;

  • Après:

.art-button-wrapper .art-button
{
 display:block;
 height: 34px;
 font-family: Arial, Helvetica, Sans-Serif;
 font-size: 12px;
 font-style: normal;
 font-weight: normal;
 white-space: nowrap;
 text-align: left;
 padding: 0 10px !important;
 line-height: 34px;
 text-decoration: none !important;
 color: #1C2A40 !important;

Mis à jour (Jeudi, 11 Février 2010 21:56)