Reputation: 61
I have been creating a webpage for a real estate site.
It is hosted at this site
My problem is that when viewing on IE, the second line of the right headline "Discover Your Casual Gated Community" doesn't float to the right, and rather gets stuck behind the logo on the left.
Thanks!
Upvotes: 3
Views: 81
Reputation: 4398
Try adding a div as container in ur code and then give the CSS float property to that div . Hope it works . Look at this question for more information
Upvotes: 2
Reputation: 6996
Add the clear: both;
to your h1#botline
and the p
after the h1#botline
Works in IE7+
Upvotes: 3
Reputation: 3459
Just remove the float: right
from the 3 elements (h1, h1, p) in the div with id="valueprop"
, remove the <br />
and everything lines out fine in IE (10).
Upvotes: 0