Reputation: 5933
I cannot for the life of me find why this div height is so tall : http://www.imvu-e.com/forum/ referring to the DIV id page-header
.
How it looks now:
How I wish it looked:
Upvotes: 1
Views: 56
Reputation: 33218
You have to clear:right
no both
in this class:
span.corners-bottom {
background-image: none;
background-position: 0 100%;
margin: 0 -5px;
clear: right;
}
Take a look here about Clearing floats
Upvotes: 2