Ver Mensaje Individual
  #22 (permalink)  
Antiguo 04/08/2011, 04:05
summermojito
 
Fecha de Ingreso: enero-2011
Ubicación: Madrid
Mensajes: 127
Antigüedad: 13 años, 3 meses
Puntos: 14
Respuesta: Modulo right se baja

Ok, ahora si:

He cambiado algunas cosillas pero tu problema principal estaba en la capa "gutter" que está vacía y le has puesto un ancho y alto de 20px. Por eso se te baja un poco Inicio. Si quitas esa capa y/o sus estilos se ve OK.

Aquí te pego el código con los cambios que he hecho:

Código HTML:
Ver original
  1. /*Gutter Space */
  2. #content{
  3.   padding: auto;
  4.   margin: auto;
  5.   overflow:visible;
  6. }
  7.  
  8. #content_container{
  9.   padding: auto;
  10.   margin: auto;
  11.   width: 960px;
  12.   overflow:visible;
  13.  
  14.   }
  15.  
  16. /* Titulo modulos */
  17.  
  18. .lefti {
  19.     padding: 0px 20px 0px 20px;
  20.     color: #1d4674;
  21.     text-decoration: none;
  22.     font:normal 14px "Trebuchet MS", Arial, Helvetica, sans-serif;
  23.     line-height: 40px;
  24.     font-weight:bold;
  25.     background: url(../images/menu_lefti.png) no-repeat;
  26.     width: 228px;
  27.     clear:both;
  28. }  
  29. /* These styles create the Left Panel */
  30.  
  31. #left{
  32.   width:228px;
  33.   margin: 0px;
  34.   padding: 0px;
  35.   float: left;
  36. }
  37.  
  38. #left h3{
  39.   font: normal 22px/30px "Trebuchet MS", Georgia Arial, Helvetica, sans-serif;
  40.   color:#000;
  41.   letter-spacing:-0.5px;
  42.   padding:3px 0;
  43.   margin:0px;
  44. }
  45.  
  46. /* These styles create the Left Panel menus. */
  47.  
  48. #left ul.menu {
  49.   margin: 0;
  50.   padding: 0px 0px 40px 0px !important;
  51.   height: auto !important;
  52. }
  53.  
  54. #left ul.menu li {
  55.   list-style: none;
  56.   float: none !important;
  57.   border-bottom: 1px solid #ccc;
  58. }
  59. #left ul.menu li a {
  60.   display: block;
  61.   padding: 8px 0px 8px 25px;
  62.   color: #1d4674;
  63.   text-decoration: none;
  64.   line-height: normal !important;
  65.   font-weight:normal;
  66.   background-image:url(../images/bullet1.gif);
  67.   background-repeat: no-repeat;
  68.   background-position: left center;
  69. }
  70. #left ul.menu li a:hover {
  71.   background-image:url(../images/bullet2.gif);
  72.   background-repeat: no-repeat;
  73.   background-position: left center;
  74.   border: none;
  75.   color: #000;
  76. }
  77.  
  78. #gutter{
  79.   width: 20px;
  80.   height: 20px;
  81.   margin: 0px;
  82.   padding: 0px;
  83.   float: left;
  84.  
  85. }
  86.  
  87. /* These styles create the Right Panel */
  88.  
  89. #right{
  90.   width:712px;
  91.   margin: 0px;
  92.   padding: 0px;
  93.   float: left;
  94. }
  95.  
  96. #right h2, #right h2 a{
  97.   font: normal 22px/30px "Trebuchet MS", Georgia Arial, Helvetica, sans-serif;
  98.   color:#195394;
  99.   letter-spacing:-0.5px;
  100.  
  101.   border-bottom: 1px solid #999999;
  102.  
  103.     padding:0px 0px 4px 0px;
  104.   margin:0px 0px 0px 0px;
  105. }
  106.  
  107.  
  108.  
  109. #right div.item{
  110.   width:220px;
  111.   float:left;
  112.   margin: 5px 17px 5px 0px;
  113.   border-bottom: 1px solid #999999;
  114. }
  115. <!--Page Content Area---------------------------------->
  116. <div id="content">
  117.   <div id="content_container">
  118.     <div class="lefti">
  119.     Servicios:
  120.     <div id="left">
  121.             <div class="moduletable">
  122.                    
  123. <ul class="menu">
  124. <li id="item-108"><a href="/magar/index.php/laboral" >Laboral</a></li></ul>
  125.         </div>
  126.    
  127.     </div>
  128.     </div>
  129.     <!--<div id="gutter"></div>-->
  130.     <div id="right">
  131.     <!--breadcrumbs---------------------------------->
  132.     <div id="breadcrumbs"></div>
  133.         <!--MAIN CONTENT---------------------------------->
  134.         <div class="item-page">
  135.     <h2>
  136.             Inicio      </h2>
  137.  
  138.  
  139.  
  140.  
  141.  
  142.    
  143.  
  144.     <p>Prueba Inicio</p>   
  145.     </div>
  146.     </div>
  147.    
  148.   </div>
  149. </div>
  150. </html>
__________________
Ayudas Accesibilidad

Faston