Marty Martin wrote:

> I am having a problem with some code.  The problem is it looks fine 
> for me on FF and IE7 but my customer is seeing the right-hand div 
> wrap under the left div.

> <http://www.fireflylightinginnovations.com/>

Sure does in IE6 - it's running out of space.

I suggest you turn that #sidebar into a cross-browser reliable float, by
replacing its styles with the following.

#sidebar {
     float: right;
     margin: 0 29px 0 0;
     width: 260px;
     display: inline;
     padding: 23px 0 0 0;
     font-size: 85%;
     line-height: 1.4em;
     color: #999;
     background: url(images/sidebar_bg.gif) no-repeat 0 0;
}


Also, you should replace...

body {font-size: small;}

...with...

body {font-size: 82%;}

...to avoid IE/win's resizing bugs and make it possible to resize text
without breaking the layout.

All tested and ready to go.

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