Modify the CSS settings for Collaborative Reviews

An Administrator can change the Cascading Style Sheet (CSS) formatting applied to HTML-based Collaborative Reviews.

  1. From the Administration menu, click General > Collaborative Review.
  2. Enter the CSS code in the CSS textfield.
    Note: The CSS code must be well-formed and valid to work.

    For example, the following code makes Heading 1 titles blue:

    h1{
       color: blue;
    }

    You can also use hexadecimal color values instead of generic names for colors:

    h1{
    color: #ffffff;
    }