Course Content

Customize the Action Checkbox with CSS


Murray Gray in Course Content

Nov 04, 2022 - 1 min read. Available on Growth plan or higher.

Table of Contents

We've created some example CSS styles that will globally change the font that's used for your student membership site.

To get started:

  • Open any course and open the Course Settings section
  • Open the CSS sub-section
  • Set the Enable Custom CSS For This Course toggle to ON (green)
  • You should then see the CSS field appear. Add your CSS code to that box alongside any other code you may have already added to it.

Customize the checkbox border color

You may want to change the color of the checkbox border – here's the CSS rule to use:

[id^=action-checkbox] {
   border-color:pink;
}

Customize the action checkbox

You may want to change the color of the checkbox once it's been checked off. Right now the checkbox is a specific shade of green – here's how to change it.

.custom-checkbox-complete {
   background-color:red !important; }
}


Lots of people found these next topics pretty useful...

3