Likert scale survey - Adding text to top left cell [RESOLVED]

How do I add text to the top left cell of a Likert (Survey). See the attached screenshot.

Thank you.

Hello pgc. I was able to achieve this with some CSS. Here is the CSS I used as an example:

body .gform_wrapper table.gsurvey-likert tr th:first-of-type {
  background-color: lightcyan;
}
body .gform_wrapper table.gsurvey-likert tr th:first-of-type:after {
  content: "Please Rate!";
  text-transform: uppercase;
  font-weight: 300;
}

And this is what it looked like when applied to my form:

If you have more than one likert field in the form and a need to have different text, then you will need to get more specific with the selectors than in my example. If you need more assistance, please share a link to the page on your site where we can see the form, and also let us know what text you need to add. Thank you.

Excellent, thanks very much Chris. That’s exactly what I was looking for.