Ver Mensaje Individual
  #2 (permalink)  
Antiguo 27/04/2009, 16:59
Avatar de willyfc
willyfc
 
Fecha de Ingreso: octubre-2008
Ubicación: Santa Cruz - Bolivia
Mensajes: 662
Antigüedad: 15 años, 6 meses
Puntos: 40
Respuesta: imagen en menu horizontal

no colocaste tu código html, pero bueno si no entiendo mal mira este ejemplo a ver si es lo que quieres lograr

Código html:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  4. <title>Documento sin t&iacute;tulo</title>
  5. <style type="text/css">
  6. .menu{width:100%; text-align:center; background-color:#CCC;}
  7. .menu ul{list-style:none}
  8. .menu ul li{display:inline; padding:5px 5px; }
  9. .menu a{ padding:10px; color:#000; text-decoration:none;background:url(imagenes/dot-normal.gif) no-repeat left 17px;}
  10. .menu a:hover,.menu a:focus,.menu a:active{ padding:10px; color:#000; text-decoration:underline;background:url(imagenes/dot-anormal.gif/*imagen de remplazo*/) no-repeat left 17px;}
  11.  
  12. </head>
  13.  
  14. <div class="menu">
  15.     <ul>
  16.         <li><a href="#">menu 1</a></li>
  17.         <li><a href="#">menu 2</a></li>
  18.         <li><a href="#">menu 3</a></li>
  19.     </ul>
  20. </div>
  21. </body>
  22. </html>
__________________
WFC
codigo82