Ver Mensaje Individual
  #2 (permalink)  
Antiguo 05/02/2010, 15:08
AlbertoGarcia
 
Fecha de Ingreso: mayo-2009
Ubicación: Fuerteventura
Mensajes: 324
Antigüedad: 15 años
Puntos: 19
Respuesta: problema con repeat-y

Te falta cerrar la declaracion del background-repeat con punto y coma (;).

Código CSS:
Ver original
  1. td.MenuBack {
  2. background-position: left top;
  3. background-image: url(images/LeftBack.jpg);
  4. background-repeat: repeat-y;
  5. }

De todos modos esto se puede hacer shorthand:

Código CSS:
Ver original
  1. td.MenuBack {
  2. background: url(images/LeftBack.jpg) repeat-y left top;

Salud!