I was just working with this same issue, read someone else’s post and this solution works:
body.course-item-popup #learn-press-content-item {
overflow: auto !important;}
(not my solution, I just happened to have it in my clipboard still)
Do you use Learnpress Assignment?
Hello @augustus09
You mean is I am assigning each lesson to that particular course? yes, I have done that.
-
This reply was modified 5 years, 9 months ago by
laura900z.
@magicwand where should I add the code?
@augustus09 I don’t think that error of Instagram is related to a Learnpress error
This plugin doesn’t fix the error.
This error doesn’t come from a WordPress updated version, it has always been there.
Still not working. What should I do next?
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. 😉