Ok ive spent almost all day trying different things.. And I finally got it!
Its actually very simple but i went through many combinations before getting it pixel perfect
—–
in your Style.CSS
add a new Div Container
‘#bottombox {
float:left;
position:absolute;
left: 0px;
bottom: 83px;
}
‘
then in your footer, before the last ‘</div>’
put what you want in another div
‘<div id=”bottombox”>Something on the bottom</div>
</div>’
just adjust the number of pixels in the CSS to match the heigh of your footer.
Done!
forgot to add also,
you need to put a
‘position: relative;’
(under clear:both if its there)
in your footer container, inside the CSS
Thanks for the information! I might try that.