Modification background sur H2 (JQuery)
Bonjour à tous, je réalise en ce moment un "menu déroulant" avec ceci :http://flowplayer.org/tools/demos/tabs/accordion.html
Je l'ai quelque peu modifier, surtout le css que voici :
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
| /* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
margin-bottom: 30px;
}
/* accordion header */
#accordion h2 {
padding: 4px 0 0 20px;
height: 16px;
background: url(../images/offres/Puce1_2.png) no-repeat;
font-size: 12px;
font-weight: normal;
cursor: pointer;
color: #047;
}
#accordion h2:hover {
text-decoration: underline;
}
/* currently active header */
#accordion h2.current {
cursor: default;
background: url(../images/offres/Puce2_2.png) no-repeat;
}
/* accordion pane */
#accordion .pane {
display: none;
padding: 5px 0 5px 15px;
font-size: 12px;
}
#accordion .pane li {
list-style-image: url(../images/offres/puce3.png);
} |
Comme vous pouvez le voir lorsque je clique sur un titre je veux changer ma puce, cette transformation fonctionne parfaitement sous Firefox et sous Chrome, le seul hic est IE :cry:
Est ce que quelq'un pourrait m'aider à trouver une petite solution merci beaucoup et bonne fin de journée :D