> -----Original Message-----
> From: [EMAIL PROTECTED] [mailto:css-d-
> [EMAIL PROTECTED] On Behalf Of Donald Davis
> Sent: terça-feira, 9 de Dezembro de 2008 15:31
> To: css-d@lists.css-discuss.org
> Subject: Re: [css-d] PADDING on a TAGs and Safari Problems - I suppose.
> 
> Heya, I fixed your IE problem by assigning a width of 800px to your
> #container style, floating that to the right, removing the margin-left
> from #coluna_esquerda, and removing the width from your
> #coluna_conteudo style.
> 
> #container {
>       width:100%;
>       margin-top:20px; /*baixa tudo 20px*/
> }
> 
> became:
> 
> #container {
>       width: 800px;
>       margin-top: 20px;
>       float: right;
> }
> 
> #coluna_esquerda margin-left property removed.
> 
> 
> #coluna_conteudo {
>    margin-left:475px;
>    width:500px;
>    line-height: 1.8em;
>    text-align:justify;
> }
> 
> became:
> 
> #coluna_conteudo {
>     margin-left: 260px;
>     line-height: 1.8em;
>     text-align:justify;
> }
> 
> Not sure why the float system wasn't working, but this achieves the
> same look without the messup in a smaller IE window.
> 
> -Don
> ______________________________________________________________________
> css-discuss [EMAIL PROTECTED]
> http://www.css-discuss.org/mailman/listinfo/css-d
> List wiki/FAQ -- http://css-discuss.incutio.com/
> List policies -- http://css-discuss.org/policies.html
> Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Thanks a million! I will make that changes. It's a shame that we cannot know
why this happens, anyway, since this is only happen on IE, maybe it's not
that imperative to look for a reason.

Regards, and thanks again,
Márcio

Ps- my CSS and HTML are validated now. I even got a path to get a logo! :)
yupi!!!! :) 

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to