Ver Mensaje Individual
  #2 (permalink)  
Antiguo 04/05/2011, 09:14
samplei
 
Fecha de Ingreso: abril-2011
Mensajes: 47
Antigüedad: 13 años
Puntos: 13
Respuesta: Problema con float y anchura 100%

El problema es que #news_right tiene un ancho de 100%. Lo mismo ancho tiene #content_all.
Por eso a lado izquirda de #news_right no hay espacio para otro "div". Por eso te parece que el float-right no funciona.

Tienes que cambiar tu css.
Por ejemplo:
Código:
#news_right {
float: right;
width: 50%;
}
#menu_left {
float: left;
width: 50%;
}
o (pero para mi el primer ejemple es mejor)

Código:
#news_right {
float: right;
width: 255px;
}
#menu_left {
float: left;
width: 255px;
}