I have no idea how they screwed up that form but here is how to fix (hack) a workaround:
Navigation to Admin Dashboard > Appearance > Theme Editor > Styles.css
Add this css block, and save.
/* fix the bug in the lesson presentation that prevents scrolling */
#learn-press-content-item .content-item-scrollable, #learn-press-course-curriculum.course-curriculum {
height: 100vh;
overflow-x: hidden;
overflow-y: auto;
padding-bottom: 120px;
}
EXPLANATION
The design of this form is about as stupid as you can imagine, using fixed positions rather than a simple float or table layout. In the fixed positioning there is a div that’s apparently supposed to scroll without any css attached to it.
The css above does the following:
– increases the size of the div to match the viewport.
– adds 120px so that there is always room to scroll.
– Sets overflow-y (vertical) to auto.
Now if we can just figure out why THE QUIZ DOESN”T SAVE ANSWERS SO EVERY QUESTION APPERS SKIPPED, AND EVERYONE FAILS NO MATTER WHAT that would be nice. Too. -cheers. ??