1 pièce(s) jointe(s)
Image qui apparait en local mais pas sur le serveur ?
Salut, salut,
je reviens vers vous car j'ai de nouveau un truc bizarre : j'ai 2 boutons image qui apparaissent bien en local, mais plus du tout quand je suis sur le serveur.
Pièce jointe 221484
Voici le code et le CSS :
Code:
1 2 3 4 5 6 7 8 9 10 11
|
<TD colspan="3" align="center">
<DIV align="center" class="DivProgress">
<P>Transparence :<BR/>
<PROGRESS id="J_Transparence" value="" max="1"></PROGRESS>
<SPAN id="C_Pct_Trans"></SPAN>
<INPUT type="button" class="BoutonProgressMoins" onClick="Modif_Transparence(-0.05);" >
<INPUT type="button" class="BoutonProgressPlus" onClick="Modif_Transparence(0.05);" >
</P>
</DIV>
</TD> |
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
/* Style de la barre de progression de transparence */
.DivProgress {
font-size:10px;
font-family:Arial;
font-weight:normal;
color:#ffffff;
border: nona;
}
.BoutonProgressMoins {
background:url(images/Moins.png) no-repeat;
border:none;
text-align:center;
vertical-align:middle;
}
.BoutonProgressPlus {
background:url(images/Plus.png) no-repeat;
border:none;
text-align:center;
vertical-align:middle;
}
/*.BoutonProgress {
width:5px;
height:20px;
font-size:9px;
font-family:Arial;
font-weight:normal;
color:#000000;
text-align: center;
}*/
#progress{
width: 100px;
margin: auto;
}
progress{
display: inline-block;
width: 100px;
height: 10px;
-moz-box-sizing: border-box;
box-sizing: border-box;
/*
padding: 3px 3px 2px 3px;
background: #333;
background: -webkit-linear-gradient(#2d2d2d,#444);
background: -moz-linear-gradient(#2d2d2d,#444);
background: -o-linear-gradient(#2d2d2d,#444);
background: linear-gradient(#2d2d2d,#444);
border: 1px solid rgba(0,0,0,.5);
box-shadow: 0 1px 0 rgba(255,255,255,.2);
border-radius: 15px;
*/} |
Je suis sur que ça doit être un truc tout bête, mais je passe à côté.
Je compte sur vous.
Merci d'avance.