Forum Moderators: not2easy
heres a snippet of the css (wrapper and its children)
#bottomWrapper {
width:745px;
clear: both;
background-color:#fff;
}
#indexLeft {
float: left;
padding: 15px 0px 0px 10px;
}
#indexRight {
color: #999;
width: 360px;
float: right;
margin: 10px 0px 20px 0px;
}
theres a few more divs in the #indexRight that are floating right... other than that, i have tried everything i can think of! hope someone can help out b4 i ull out all my hair!
;)
snx
1) Add a height (or min-height) if you know what it'll be
2) Float bottomWrapper itself. Floated elements contain their floated children.
3) Same for elements with overflow values of auto or hidden.
4) Use the positioniseverything easy clearing technique:
#bottomWrapper { content: "."; display: block; clear: both; height: 0; visibility: hidden; } This generates a full stop at the end of the element and forces it to clear the enclosed divs, effectively pulling open bottomWrapper.
unfortunately i had to go with a absolute height, because the float technique causes explorer to go wonky...
i will have to figure it out properly in the end but tomorrow is a new day and for now the client can see it like that...
snx