Reputation: 443
Can't for the life of me figure out why the gray background on the top slider, to the right of the video, is not showing up in safari. The css looks fine and works in other browsers. Anyone have a clever idea? Thanks
http://www.cope24.com/
This is Safari 5.1.7.
Upvotes: 0
Views: 1731
Reputation: 59849
Reduce the width on <div id="maintext">
by a few pixels and it shows up just fine on Chrome & Safari .. and FF 19 + IE 9
Also you're using the deprecated iFrame
frameborder attribute .. get rid of that
420px (what it is currently):
418px:
Upvotes: 3
Reputation: 93
You just need to float the iframe so both that and the DIV appear side by side.
Just add:
.content iframe {float:left;}
Upvotes: 1