Question Styling: Scale
This article will show you how to format/style items within this specific question type
See the article following article if you have not added JavaScript and/or CSS to a question
- See article: Adding JavaScript and/or CSS to your Question
Hide Scale Point Numbers:
From this:
To this:
Click "ADD CSS" and paste in the following code:
.cm-scale-header-point { display: none; }
Format Scale Text
By default the Scale Text is Bold but the code below will help you modify it as needed. This ill control all scale points used.
Click "ADD CSS" and paste in the following code:
.cm-scale-header-cell { font-weight: normal; /* REMOVE BOLDING */ text-decoration: underline; /* UNDERLINE */ color: black; /* FONT COLOR */ font-style: italic; /* ITALICS */ }