How can I disable the "Hide Correct Answers" button in Atomic Assessments?

Review how to disable the "Hide Correct Answers" button in Atomic Assessments using the Global CSS.

The "Hide Correct Answers" button on the student review page may be distracting. You can disable it for all users or just students using Global CSS.

  1. Navigate to the Atomic Assessments menu.
  2. Use the three-dot menu to select Settings.
    Open settings from the three-dot menu
    Figure 1: Open settings from the three-dot menu
  3. Open the Custom styling section.
    Open Custom styling section
    Figure 2: Open Custom styling section
    1. Paste in the code. If you want to hide it for all users use this code:
      #hide-correct-responses-option { display: none; }

      If you want it hidden for students but displayed for teachers use this code:

      #hide-correct-responses-option { display: none; } .aj-speedgrader-container #hide-correct-responses-option { display: block; }

    2. Save.