Ver Mensaje Individual
  #3 (permalink)  
Antiguo 27/02/2009, 16:39
Avatar de David
David
Moderador
 
Fecha de Ingreso: abril-2005
Ubicación: In this planet
Mensajes: 15.720
Antigüedad: 19 años
Puntos: 839
Respuesta: Busco videobox negro

Prueba reemplazando el CSS por esto:
Código css:
Ver original
  1. body {margin: 0;}
  2. #lbOverlay {
  3.     position: absolute;
  4.     left: 0;
  5.     width: 100%;
  6.     height: 100% !important;
  7.     background-color: #000;
  8.     cursor: pointer;
  9. }
  10.  
  11. #lbCenter, #lbBottomContainer {
  12.     position: absolute;
  13.     left: 50%;
  14.     overflow: hidden;
  15.     background-color: Black !important; text-align: center; padding: 5px;
  16. }
  17.  
  18. .lbLoading {
  19.     background: #Black url(loading.gif) no-repeat center;
  20. }
  21.  
  22. #lbImage {
  23.     border: 10px solid Black;
  24. }
  25.  
  26. #lbPrevLink, #lbNextLink {
  27.     display: block;
  28.     position: absolute;
  29.     top: 0;
  30.     width: 50%;
  31.     outline: none;
  32. }
  33.  
  34. #lbPrevLink {
  35.     left: 0;
  36. }
  37.  
  38. #lbPrevLink:hover {
  39.     background: transparent url(prevlabel.gif) no-repeat 0% 15%;
  40. }
  41.  
  42. #lbNextLink {
  43.     right: 0;
  44. }
  45.  
  46. #lbNextLink:hover {
  47.     background: transparent url(nextlabel.gif) no-repeat 100% 15%;
  48. }
  49.  
  50. #lbBottom {
  51.     font-family: Verdana, Helvetica, sans-serif;
  52.     font-size: 10px;
  53.     color: #666;
  54.     line-height: 1.4em;
  55.     text-align: left;
  56.     border: 5px solid Black;
  57.     border-top-style: none;
  58. }
  59.  
  60. #lbCloseLink {
  61.     display: block;
  62.     float: right;
  63.     width: 66px;
  64.     height: 22px;
  65.     background: transparent url(closelabel.gif) no-repeat center;
  66.     margin: 5px 0;
  67. }
  68.  
  69. #lbCaption, #lbNumber {
  70.     margin-right: 71px;
  71. }
  72.  
  73. #lbCaption {
  74.     font-weight: bold;
  75. }
__________________
Por favor, antes de preguntar, revisa la Guía para realizar preguntas.

Última edición por David; 27/02/2009 a las 21:37