Ver Mensaje Individual
  #2 (permalink)  
Antiguo 04/07/2009, 14:17
Avatar de kike00
kike00
 
Fecha de Ingreso: febrero-2005
Ubicación: El Salvador
Mensajes: 180
Antigüedad: 19 años, 2 meses
Puntos: 7
Respuesta: Problema con CSS

Y el CSS

Código CSS:
Ver original
  1. body{
  2.     font:12px/18px Arial,Helvetica,sans-serif;
  3.     padding-top: 10px;
  4.     padding-bottom: 10px;
  5.     background: url(images/design/bg_site.jpg) repeat-x #e4d8a6;
  6. }
  7.  
  8.  
  9. /********************************************/
  10. /******** CONTENEDOR PRINCIPAL **************/
  11. /********************************************/
  12.  
  13. .outer-container {
  14.     width:928px;
  15.     left: 50%;
  16.     position: relative;
  17.     margin-left: -464px;
  18.     clear: both;
  19. }
  20.  
  21. /********************************************/
  22. /****** BARRAS SUPERIOR E INFERIOR **********/
  23. /********************************************/
  24.  
  25. .barraSuperior, .barraInferior{
  26.     height:15px;
  27.     display: block;
  28.     clear: both;
  29. }
  30.  
  31. .bordeEsquinaIzqSup, .bordeEsquinaDerSup, .bordeEsquinaIzqInf, .bordeEsquinaDerInf{
  32.     float:left;
  33.     width:14px;
  34.     height:15px;
  35. }
  36.  
  37. .bordeEsquinaIzqSup{
  38.     background: url(images/design/contenido_borde_superior_izquierdo.png) top left no-repeat;
  39.     position: absolute;
  40.     left: 0px;
  41. }
  42.  
  43.  
  44. .bordeEsquinaDerSup{
  45.     background: url(images/design/contenido_borde_superior_derecho.png) top right no-repeat;
  46.     position: absolute;
  47.     left: 914px;
  48.    
  49. }
  50.  
  51. .bordeEsquinaIzqInf{
  52.     background: url(images/design/contenido_borde_inferior_izquierdo.png) bottom left no-repeat;
  53.     position: absolute;
  54.     left: 0px;
  55. }
  56.  
  57.  
  58. .bordeEsquinaDerInf{
  59.     background: url(images/design/contenido_borde_inferior_derecho.png) bottom right no-repeat;
  60.     position: absolute;
  61.     left: 914px;
  62. }
  63.  
  64. /* bordes en el medio de las esquinas */
  65. .bordeBarraSup, .bordeBarraInf{
  66.     float:left;
  67.     width: 900px;
  68.     height: 15px;
  69.     position: absolute;
  70.     left: 14px;
  71. }
  72.  
  73. .bordeBarraSup{
  74.     background:url(images/design/contenido_borde_superior.png) repeat-x;
  75. }
  76.  
  77.  
  78. .bordeBarraInf{
  79.     background:url(images/design/contenido_borde_inferior.png) repeat-x;
  80. }
  81.  
  82.  
  83. /********************************************/
  84. /************ BARRA CENTRAL *****************/
  85. /********************************************/
  86.  
  87. .barraCentral{
  88.     width:928px;
  89.     background:url(images/design/contenido_central.png) repeat-y;  
  90.     clear: both;
  91.  
  92. }
  93.  
  94. .contenidoDerecho{
  95.     float: left;
  96.     width: 640px;
  97.     margin-left: 10px;
  98.     padding-left: 5px;
  99. }
  100.  
  101. .sidebar{
  102.     width: 250px;
  103. }

Muchas gracias

PD. lo siento pero no cupo en un solo post :P

Última edición por kike00; 04/07/2009 a las 14:28