Ver Mensaje Individual
  #3 (permalink)  
Antiguo 22/09/2012, 18:07
punxan83
 
Fecha de Ingreso: junio-2009
Mensajes: 7
Antigüedad: 14 años, 10 meses
Puntos: 0
Respuesta: cambiar imagenes al pasar mouse por menu vertical

Ok, pero me podrias dar otro empujoncito? por favor, agrego el codigo de un pequeño ejemplo que estoy haciendo.

Agradecido.

CODIGO INDEX
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento sin t&iacute;tulo</title>
<link rel="stylesheet" href="estilo_menu.css" type="text/css">
</head>

<body>
<div id="menuv">
<ul>
<li><a href="index.php">Inicio</a></li>
<li><a href="metalurgica.php">metalurgica</a></li>
<li><a href="poliuretano.php">poliuretano</a></li>
<li><a href="atf.php">atf</a></li>

</ul>
</div>

<table width="200" height="200" border="1">

<tr>
<td><div id="imagenes">
<a href="SSSS"><img src="images/img1.jpg" width="200"height="200" border="0"alt="prueba"></a>
</div>
hola
</td>
</tr>
</table>

CODIGO CSS

#menuv {
border: 1px solid #ACCFE8;
border-width: 1px 1px 0 1px;
width: 150px;
font: 80% "Trebuchet MS", Arial, Helvetica, sans-serif;
}
#menuv ul, li {
list-style-type: none;
}

#menuv ul {
margin: 0;
padding: 0;
}

#menuv li {
border-bottom: 1px solid #ACCFE8;
}

#menuv a {
text-decoration: none;
color: #3366CC;
background: #F0F7FC;
display: block;
padding: 3px 6px;
width: 138px;
}

#menuv a:hover {
background: #DBEBF6;

}



#imagenes1 a:hover{
09 background-image:url(images/img2.jpg);
10 background-repeat: no-repeat;
}