Hi all,
I'm developing a website, where the company would like 2 images to appear on the right side of the footer. I have no idea why float:right; won't work when it does for their banner.
Can anyone tell me what to do to fix it?
#footer
{
position:absolute;
bottom:0%;
right:0%;
width:90%;
height:10%;
float:right;
background-color:#00FF33;
}
Banner works fine, but I don't spot a difference in code:
#banner
{
position:absolute;
top:0px;
right:0px;
width:250px;
height:122px;
float:right;
}
NB: Background color has only been declared to I can keep track of where the div is on the browser, it's not there pernamently :)
Cheers,
Ben