Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support brianvu-tp

    (@briantp)

    Hi voicetoons,

    Thank you for reaching out!

    To remove the gray background, instructor, and last update information from your single course page header, please try adding the following CSS to your theme’s Additional CSS (found under Appearance > Customize) or your child theme’s style.css file:

    /* Remove gray background */
    .lp-single-course__header {
        background-color: revert !important;
    }
    
    /* Hide instructor info */
    .lp-single-course__header .course-instructor-category {
        display: none !important;
    }
    
    /* Hide last update info */
    .lp-single-course-info-one .item-meta:nth-of-type(2) {
        display: none !important;
    }

    Please apply these snippets and let us know if they work as you intended!

    Best regards,
    Brianvu-tp

    Thread Starter voicetoons

    (@voicetoons)

    Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Remove Instructor & Last Update on Single Course Header’ is closed to new replies.