I want to use CSS in Firefox to display a logo and a flash banner on my website.
The logo should be 250 X 250 and the banner 800 X 250. Both should be displayed in the same row.
Here's my current CSS:
#logo{
background:#FFFFFF;
position:absolute;
left: 0px;
top: 0px;
width: 250px;
height: 200px;
}
#Banner{
background: #1071A6;
position:absolute;
left: 250px;
top: 200px;
width: 850px;
height: 250px;
}
Unfortunately, the banner is being displayed at bottom of the logo.
Any suggestions about how to properly position these elements?