Relics
01-07-2009, 10:47 AM
I'm still teaching myself CSS, so if this is a simple problem, I apologize. I'm working on a website for a friend and I'm trying to put some DIV elements together. When the page loads in Firefox, it's correct, but in IE, it does not display correct. I've got an image of a trophy in a DIV, but the background of the DIV below the image appear over the trophy image in IE. I've attached the code and some screen shots below. If you can tell me where I've messed up or what code I'm missing, I would greatly appreciate it.
Thanks
IE Display (Wrong)
http://www.flickr.com/photos/34110887@N07/3175905771/
http://www.flickr.com/photos/34110887@N07/3175905771/
Firefox Display (Correct)
http://www.flickr.com/photos/34110887@N07/3175905759/
http://www.flickr.com/photos/34110887@N07/3175905759/
PHP
<div id="upcoming_league_events_note">
<div id="upcoming_league_events_header">
<img src="/images/headers/leagueeventssm.png" />
</div>
<div id="upcoming_league_events_txt">
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
</div>
<div id="sidebar_icon_leagues">
<img src="/images/stock/trophy.png" />
</div>
</div>
CSS
#sidebar_icon_leagues
float: right;
margin-right: -20px;
margin-top: -90px;
margin-bottom: 20px;
#upcoming_league_events_note
height: 100px;
display: block;
#upcoming_league_events_header
#upcoming_league_events_txt
float: left;
margin-top: 5px;
margin-right: 60px;
Thanks
IE Display (Wrong)
http://www.flickr.com/photos/34110887@N07/3175905771/
http://www.flickr.com/photos/34110887@N07/3175905771/
Firefox Display (Correct)
http://www.flickr.com/photos/34110887@N07/3175905759/
http://www.flickr.com/photos/34110887@N07/3175905759/
PHP
<div id="upcoming_league_events_note">
<div id="upcoming_league_events_header">
<img src="/images/headers/leagueeventssm.png" />
</div>
<div id="upcoming_league_events_txt">
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
</div>
<div id="sidebar_icon_leagues">
<img src="/images/stock/trophy.png" />
</div>
</div>
CSS
#sidebar_icon_leagues
float: right;
margin-right: -20px;
margin-top: -90px;
margin-bottom: 20px;
#upcoming_league_events_note
height: 100px;
display: block;
#upcoming_league_events_header
#upcoming_league_events_txt
float: left;
margin-top: 5px;
margin-right: 60px;