• Resolved orphin

    (@orphin)


    Hello! I’m creating a free course currently and I’ve noticed that on any course page I create (regardless of theme or other plugins) there is space added and a white line at the bottom of the course page underneath my footer taking up space.

    I’m unable to give access to the page itself since I’m building it for a company, but I’m including a link to an image to better explain.

    Image Link

    Thank you in advance!

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Support Deric (a11n)

    (@dericleeyy)

    Hi @orphin ,

    After digging into the CSS, I’ve noticed that the line was added in this CSS:

    .course, .course-container, .course-container .course {
        position: relative;
        margin: 0 0 1.618em;
        padding: 0 0 1em;
        border-bottom: 1px solid #e2e2e2;
        list-style: none;
    }

    You could override it by using this CSS in wp-admin > Appearance > Additional CSS:

    .course {
        border-bottom: none;
        padding: unset;
    }
    Thread Starter orphin

    (@orphin)

    Thank you! I also added
    margin:unset;
    and that fixed everything!

    For anyone in the future having this issue, this gets it all set!

    .course {
        border-bottom: none;
        padding: unset;
        margin: unset;
    
    }
    • This reply was modified 2 years, 8 months ago by orphin.
    Plugin Support Deric (a11n)

    (@dericleeyy)

    Thanks, @orphin for sharing your implementation!

    I have notified our development team about this issue to check if this is a bug with our default CSS.

    Plugin Support Jay

    (@bluejay77)

    Hi @orphin,

    Our developers took a look and made improvements here: https://github.com/Automattic/sensei/pull/5326

    You can expect to see the changes included in the next Sensei release.

    Thanks again for your report!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Blank Space on Course Page’ is closed to new replies.