Hi folks - I’m having a small issue…my guess is that some CSS can fix it, but I’m not sure exactly what to do. Here’s my situation: I’d like to have the top div automatically adjust to fill up the entire screen (ex: firstround.com). I’ve gotten that to work and the other divs automatically adjust relative to the first div’s new height. However, the actual content (
and ) don’t adjust and stay in exactly the same position as before. This causes some content to be overlapping with the first div (it should be fully below the fold in the second div at this point). I’ve included the CSS I used below to get the first div to be 100% height regardless of user’s screen size.
html, body.lp-pom-body, div#lp-pom-root.lp-element.lp-pom-root, div#lp-pom-block-8 { height: 100%;
display: block;
overflow: auto;
}
Any help would be greatly appreciated! Thank you!