Ell
Ell

Reputation: 97

Any idea why these DIVs are overlapping?

Can't for the life of my figure this one out...

Does anyone have any idea why the large red div at the bottom of this page is not flowing below the DIV above it, (but the red div is "appearing" behind it, and getting partially covered)?

I had the same problem with the ABOUT div at the top of the page flowing behind the div above it. The only way I could find to resolve it was to position:relative, and set the top to 45px. Same fix works here, but I would rather figure out why it is not flowing below the content above it than hack it. The Div above it has clearfix applied, and the issue doesn't seem to have anything to do with floats...other than that I am all out of ideas, and still fairly new to CSS...

http://firewalkcreative.com/2012/2012.html

Upvotes: 0

Views: 48

Answers (1)

John_C
John_C

Reputation: 1166

The section (id="work") immediately above it has the styling 'position:relative;top:45px'. This moved it down 45px from where it would otherwise be, covering the top of the following section.

Upvotes: 1

Related Questions