Ver Mensaje Individual
  #3 (permalink)  
Antiguo 01/06/2011, 08:00
Avatar de Ventru3
Ventru3
 
Fecha de Ingreso: noviembre-2010
Ubicación: Disneylandia
Mensajes: 86
Antigüedad: 13 años, 5 meses
Puntos: 13
Respuesta: Problema color menu css en blog

A mi si me funciona. Solo he reseteado el margin y el padding del html y el body y he añadido el wrapper para centrarlo y le he quitado un center que no hacia falta.

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.  
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es" lang="es">
  4.  
  5.     <meta content="text/html; charset=iso-8859-1" http-equiv="Content-Type">
  6.     <meta content="Beastak" name="Efbeezy">
  7. </head>
  8.  
  9.  
  10. <style type='text/css'>
  11.  
  12. html, body {
  13.     margin: 0px 0px 0px 0px;
  14.     padding: 0px 0px 0px 0px;
  15. }
  16.  
  17. .solidblockmenu{
  18. margin: 0;
  19. padding: 0;
  20. float: left;
  21. font: bold 13px Arial;
  22. width: 100%;
  23. overflow: hidden;
  24. margin-bottom: 1em;
  25. border: 1px solid #625e00;
  26. border-width: 1px 0;
  27. background: black url(http://img838.imageshack.us/img838/7158/menunegro.jpg) center repeat-x;
  28. }
  29.  
  30. #wrapper {
  31.     margin: 0px auto;
  32.     width: 600px;
  33. }
  34.  
  35. .solidblockmenu li{
  36. display: inline;
  37. }
  38.  
  39. .solidblockmenu li a{
  40. float: left;
  41. color: white;
  42. padding: 9px 11px;
  43. text-decoration: none;
  44. border-right: 1px solid white;
  45. }
  46.  
  47. .solidblockmenu li a:visited{
  48. color: white;
  49. }
  50.  
  51. .solidblockmenu li a:hover, .solidblockmenu li .current{
  52. color: white;
  53. background: url(http://img801.imageshack.us/img801/6749/menurosa.jpg) center repeat-x;
  54. }
  55.  
  56. <div id="wrapper">
  57.  
  58.     <ul class="solidblockmenu">
  59.         <li><a href="http://www.bdebelleza.blogspot.com" title="">Inicio</a></li>
  60.         <li><a href="http://bdebelleza.blogspot.com/2010/06/sorteos.html" title="">Sorteos</a></li>
  61.         <li><a href="http://bdebelleza.blogspot.com/2010/06/premios.html" title="">Premios</a></li>
  62.     </ul>
  63.  
  64. </div>
  65.  
  66. </body>
  67.  
  68. </html>