• I am creating a course and when previewing the lessons it won’t allow me to scroll down to see the full content.
    Which code or solution should I add?

    The page I need help with: [log in to see the link]

Viewing 10 replies - 1 through 10 (of 10 total)
  • 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?

    Thread Starter laura900z

    (@laura900z)

    Hello @augustus09
    You mean is I am assigning each lesson to that particular course? yes, I have done that.

    • This reply was modified 4 years, 2 months ago by laura900z.

    Ho @laura900z

    We see have error js on your site https://wp.kotrynabassdesign.com/opaque/wp-content/themes/opaque/js/instagram_feed.js
    Maybe that is the cause of problem

    Thread Starter laura900z

    (@laura900z)

    @magicwand where should I add the code?

    Thread Starter laura900z

    (@laura900z)

    @augustus09 I don’t think that error of Instagram is related to a Learnpress error

    Thread Starter laura900z

    (@laura900z)

    This plugin doesn’t fix the error.

    This error doesn’t come from a WordPress updated version, it has always been there.

    Thread Starter laura900z

    (@laura900z)

    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. ??

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Learnpress doesn’t scroll down’ is closed to new replies.