Quiero que el color de fondo que tiene "#logo_right" se extienda a la izquierda de lo que queda de la pantalla. En el link pueden ver el espacio que queda en blanco
[url=http://altitux.com/prueba/prueba.html][/url]
mi código es el siguiente:
Código HTML :
</head> <body> <div id="head_total"> <div id="left"></div> <div id="fondo"> </div> <div id="titulo"></div> <div id="logo_right"></div> </div> <div id="cuerpo">qsd</div> </body> </html>
Y el de estilos:
Código :
body
{
   background-color: #FFFFFF;
   margin-top:0;
   background-image:url(content/bg.gif);
   background-repeat:repeat;
   text-align:center;
   
}
#head_total {
   height:114;
   overflow: hidden;
} 
#left {
   float:left;
   width:24px;
   height:114px;
   background-image:url(_images/left.png);
   background-position:right top;
   background-repeat:no-repeat;
   padding:0px;   
}
#titulo {
   float:left;
   width:256px;
   height:114px;
   background-color:#1B2563;
   background-image:url(_images/name.jpg);
   background-repeat:no-repeat;
   background-position:left center;
   padding:0px;   
   
}
#logo_right {
   float:right;
   width:285px;
   height:114px;
   background-color:#1B2563;
   background-image:url(_images/header_right.jpg);
   background-repeat:no-repeat;
   background-position:right center;
   padding:0px;   
}
#cuerpo {
   clear:both;
   width:100%;
   
}No puedo ponerle el relleno de color a el div padre por que entonces rellena también la imágen que esta hasta la izquierda que es un .png con una sombra como margen
Muchas Gracias
