Bonjour,
mon rollover sur mon menu ne fonctionne pas. JE mets le code, généralement il parle mieux !
En fait c'est le glissement d'image sur le a:hover qui bloque.
Magnéto:
Modifié le 04 Feb 2005 - 10:26
mon rollover sur mon menu ne fonctionne pas. JE mets le code, généralement il parle mieux !

En fait c'est le glissement d'image sur le a:hover qui bloque.
Magnéto:
<ul id="menu">
<li><a href="news.php" id="btnews"><span>News</span></a></li>
<li><a href="bio.php" id="btbio"><span>Bio/Disco</span></a></li>
<li><a href="shows.php" id="btshows"><span>Shows</span></a></li>
<li><a href="media.php" id="btmedia"><span>Media</span></a></li>
<li><a href="links.php" id="btlinks"><span>Links</span></a></li>
<li><a href="guest.php" id="btguest"><span>Guestb.</span></a></li>
</ul>
/* MENU
--------------------------------------------------------------------------------
*/
ul#menu span {
display: none ;
}
ul#menu {
width: 700px ;
height: 25px ;
margin: 0 auto 0 auto ;
padding: 0 ;
list-style-type: none ;
}
ul#menu li {
margin: 0 auto 0 auto ;
height: 25px ;
list-style: none ;
pading: 0 ;
float: left ;
text-align: center;
}
ul#menu li a{
height: 25px ;
list-style: none ;
display: block ;
}
#btnews {
width: 80px ;
background: url(../Vintage/news.gif) no-repeat 0 0 ;
}
a#btnews a:hover{
display: block ;
width: 80px ;
background: url(../Vintage/news.gif) no-repeat 0 -25px ;
}
#btbio {
width: 110px ;
background: url(../Vintage/bio.gif) no-repeat 0 0 ;
}
a#btbio a:hover{
width: 110px ;
background: url(../Vintage/media.gif) no-repeat 0 -25px ;
}
#btmedia {
width: 100px ;
background: url(../Vintage/media.gif) no-repeat 0 0 ;
}
a#btmedia a:hover{
width: 100px ;
background: url(../Vintage/media.gif) no-repeat 0 -25px ;
}
#btshows {
width: 90px ;
background: url(../Vintage/shows.gif) no-repeat 0 0 ;
}
a#btshows a:hover{
width: 90px ;
background: url(../Vintage/shows.gif) no-repeat 0 -25px ;
}
#btguest {
width: 100px ;
background: url(../Vintage/guest.gif) no-repeat 0 0 ;
}
a#btguest a:hover{
width: 100px ;
background: url(../Vintage/guest.gif) no-repeat 0 -25px ;
}
#btlinks {
width: 90px ;
background: url(../Vintage/links.gif) no-repeat 0 0 ;
}
a#btlinks a:hover
{
width: 90px ;
background: url(../Vintage/links.gif) no-repeat 0 -25px ;
}
Modifié le 04 Feb 2005 - 10:26