I just viewed my site, www.portlandwinegroup.com in IE6 and its all one column?
How do I adjust this? It looks fine in Firefox and Safari.
Since I rarely use Windows, does IE7 corrupt the site the same way?
change the dl width to 200px
change the dl width to 200px (210 max) - what's happening is that IE auto expands a container to fit it's content while standards observant browsers allow it overflow. The dls being 300px wide make the two columns too wide to fit in the #content column.
Thanks, got the two main
Thanks, got the two main columns fixed, but the right column links are still at the bottom of the page. Do I adjust the dl more?
#linkarea {
float: left;
width: 127px; /* 3px shy to allow for IE's float margin bug */
margin: 0 10px;
Should I change the width here in linkarea?
You have an image with a
You have an image with a width of 214px in a column with a width of 127px. Again, IE is auto-expanding the containing element (the #linkarea column) to accomodate. This new width column will not fit in the container. All other browsers are allowing the image to overflow the column (and the overall container/wrapper). You'll need to remove or change the image to fix things in IE.
I'll make the image smaller.
I'll make the image smaller.
Thanks again