PDA

View Full Version : Layout problem in IE



arthurse
December 14th, 2006, 03:04 AM
i'm having a problem with IE rendering my layout

http://poemeto.universoreal.com/luiz/222/perfil2.html

the logo "graal" goes out of the div.

any suggestion?

Binji
December 14th, 2006, 04:51 AM
try this CSS:
height: auto !important; /*for FF&co*/
height: 100%; /*for IE*/

instead of height: 100% you can also try to explicitly define height with ems or %

ditt0
December 14th, 2006, 11:44 AM
First of all you didn't set any doctype. The page needs that in order for the browsers to interpret it correctly. Second, there is no css property "minimum_heigth". What you are probably looking for is min-height, but that won't work for IE. Third, you need to clear the floats inside the div that contains the floats, meaning "conteudo". Thus you will need another clear div inside it. Good luck:)

arthurse
December 14th, 2006, 03:12 PM
tnx!

i tried:

<div style="clear:left;"></div>

before

<div id="footer">
<span class=copyr>Copyright © 2007 / Paulo Comelli / Todos os direitos reservados </span>
</div>


and that works! :)

Seb Hughes
December 14th, 2006, 04:02 PM
I say we burn IE down.