I think this might have something to do with a float bug in ie/pc. IE will
sometimes double margin values on floated elements. The fix is easy. Just add
display: inline to the #left_column and #right_column declaration blocks.
Here's an abbreviated version your css with the addition I'm suggesting:
...
#left_column{/*left column*/
...
margin-left:1.5em;
float:left;
display: inline;
}
...
#right_column{/*right column*/
...
float:right;
margin-right:1.5em;
display: inline;
}
...
I may be wrong, but that's my guess at quick glance.
Good luck!
---
Ray Dickman
D2 Digital Media
>
> -------Original Message-------
> > From: "Bruce Gilbert" <[EMAIL PROTECTED]>
> > Subject: [css-d] uneven divs in IE6 win
> > Sent: 14 Jun 2005 11:21:28
> >
> >��I have noticed a problem in IE 6 win on the PC for a site I am working
> >��on located at http://www.inspired-evolution.com. The outer-div and
> >��Inner div content don't seem to be aligning. One is overlapping the
> >��other on the right hand side allowing the background to show through
> >��top/right. I'm not sure if one div is stretching too far or another is
> >��not stretching far enough. it may be a combination of both!
> >��
> >��The CSS is at http://www.inspired-evolution.com/Gilbert.css
> >��
> >��To the best of my testing It looks like this is only an IE PC issue.
> >��
> >��any assistance is greatly appreciated.
> >��--
> >��::Bruce::
> >��______________________________________________________________________
> >��css-discuss [EMAIL PROTECTED]
> >��http://www.css-discuss.org/mailman/listinfo/css-d
> >��List wiki/FAQ -- http://css-discuss.incutio.com/
> >��Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
> -------Original Message-------
-------Original Message-------
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/