Ver Mensaje Individual
  #5 (permalink)  
Antiguo 17/11/2010, 07:43
jark
 
Fecha de Ingreso: noviembre-2010
Mensajes: 18
Antigüedad: 13 años, 5 meses
Puntos: 0
Respuesta: Empleo de comentarios condicionales IE

Vale, creo que ya he entendido todo, creo :P

Sólo me queda preguntar una cosa, y es qué cambio debo realizar en mi CSS para centrar menú de opciones horizontal que he colocado en la parte superior de la página. Lo único que quiero es centrarlo, puesto que en IE se coloca pegado al margen izquierdo, sin embargo no deseo que se realice ningún otro cambio en ninguna otra etiqueta como la que hace que se agrupe en casillas o que cambie de color al pasar el cursor. Todo ello quiero que se mantenga estático.

Te escribo mi CSS por si resulta de mayor ayuda. Siento preguntar tanto :P

Código CSS:
Ver original
  1. .navigation {
  2.     font-family: Georgia, "Times New Roman", Times, serif;
  3.     font-size: 16px;
  4.     font-style: italic;
  5.     font-weight: normal;
  6.     color: #CCCCCC;
  7.     background-color: #333333;
  8.     display: block;
  9.     padding: 2px;
  10.     width: auto;
  11.     border: thin solid #FF0000;
  12. }
  13.  
  14. .navigation:hover {
  15.     font-family: Georgia, "Times New Roman", Times, serif;
  16.     font-size: 16px;
  17.     font-style: italic;
  18.     font-weight: normal;
  19.     color: #999999;
  20.     background-color: #999933;
  21.     display: block;
  22.     padding: 2px;
  23.     width: auto;
  24. }
  25. .nosubr {
  26.     font-family: Georgia, "Times New Roman", Times, serif;
  27.     font-size: 16px;
  28.     font-weight: normal;
  29.     color: #CCCCCC;
  30.     text-decoration: none;
  31. }
  32.  
  33.  
  34. .navigation2 {
  35.     font-family: Arial, Helvetica, sans-serif;
  36.     font-size: 16px;
  37.     font-style: normal;
  38.     font-weight: normal;
  39.     color: #CCCCCC;
  40.     background-color: #333333;
  41.     display: table-cell;
  42.     padding: 3px;
  43.     border: thin solid #FF0000;
  44. }
  45.  
  46. .navigation2:hover {
  47.     font-family: Arial, Helvetica, sans-serif;
  48.     font-size: 16px;
  49.     font-style: normal;
  50.     font-weight: normal;
  51.     color: #999999;
  52.     background-color: #999933;
  53.     display: table-cell;
  54.     padding: 3px;
  55. }
  56. .nosubr2 {
  57.     font-family: Arial, Helvetica, sans-serif;
  58.     font-size: 16px;
  59.     font-style: normal;
  60.     font-weight: normal;
  61.     color: #CCCCCC;
  62.     text-decoration: none;
  63. }

Gracias.

Saludos.