Joaquim Font wrote:
> I have problem with the central column. This is out of frame white.
> 
> I hope someone can hel me.

> http://www.izquierdanacional.org/varios/nuevas2/index.html

Solving the problem is easy. Explaining it in Spanish is beyond me.

The addition on '.principal' does the job in the good browsers. The rest
is necessary to get Internet Explorer 6 to cooperate. I don't know if
IE7 needs any of the "IE fixes".

.principal {
overflow: hidden        /* addition - 'contain floats' */;
}

* html .principal {     /* addition - fix for IE-win */
overflow: visible;
}


* html .izq {           /* addition - fix for IE-win */
overflow-x: hidden;
}

.cuerpo {               /* all new style - replaces old one */
width: 559px;
float: left;
margin-left: 5px;
}

.der {                  /* all new style - replaces old one */
float: right;
width: 159px;
text-align: left;
}

* html .navd {          /* addition - fix for IE-win */
float: right;
margin-left: 0;
}

All tested, and is working as intended, in Opera, Firefox and IE6.

regards
        Georg
-- 
http://www.gunlaug.no
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to