Elaine
Elaine

Reputation: 443

Background color not showing up in Safari

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.screenshot from Firefox

Upvotes: 0

Views: 1731

Answers (2)

Adrift
Adrift

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

micp
micp

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

Related Questions