ParoX
ParoX

Reputation: 5933

What is making this DIV height so big?

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:

enter image description here

How I wish it looked:

enter image description here

Upvotes: 1

Views: 56

Answers (1)

Alex Char
Alex Char

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

Related Questions