> -----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/



Don, that doesn't work for me, when I maximize the IE window he goes all way
to the right side. :(

Thanks,
Márcio

______________________________________________________________________
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