If there is an additional table style required, the most efficient way is to create a new table class inside a theme. Adding a class to the stylesheet (.css) will ensure that the table is easier to apply and consistent across all courses.


Only an Administrator or Graphic Designer can add a new table class to the CSS.

Create the New Table Class

  1. Click on the Settings option on the navigation bar and select Themes from the Settings dropdown.

  2. The Themes page view displays.

  3. Locate the theme that needs to be edited and select Edit Properties.

  4. Scroll down to the Custom CSS: field and add the new table class. Select Save to save the changes.

    table.darkred, table.darkred tr td {
    border: 1px solid #a32c00;
    background-color: #ffffff !important;
    }

    table.darkred thead th {
    background-color: #a32c00;
    color: #ffffff;
    text-align: left;
    }


Apply the Table Class

  1. Create a table inside a Content block.

  2. Toggle into source code mode by clicking the <> button.

  3. Add the table class (e.g., class=”darkred”) to the code. Click OK to save the changes.

  4.  Save the Content block to return to the edit page view.