Skip to main content
Contributor ⭐️⭐️
June 11, 2020
Solved

Customize font in NPS templates

  • June 11, 2020
  • 4 replies
  • 293 views

Please create the ability to customize the font in NPS engagement templates, particularly for the comments section, which uses a very ugly, old font by default. Thanks!

Best answer by link_black

textarea::placeholder {
  color: red;
  font-size: 23px;
  font-style: italic;
}

 

 

4 replies

link_black
Gainsight Employee ⭐️⭐️
June 11, 2020

Hi Kyle, thanks for posting!  

 

This is actually possible right now with a little bit of custom CSS in your PX Survey Engagement. 

See screenshot below:

 

Here is the Custom CSS that I used so you can copy/paste this and try it out.

 

/* Customize feedback text font */
.bottom-feedback-container > textarea {
  font-size: 23px;
  font-family:courier,arial,helvetica;
}

 

I hope this helps!

-- Link
kmalkAuthor
Contributor ⭐️⭐️
June 11, 2020

Perfect! Thanks! Is there a way to customize the font of the preview text too -- i.e. the text that says “Share your thoughts about your choice...”?

link_black
Gainsight Employee ⭐️⭐️
June 11, 2020

textarea::placeholder {
  color: red;
  font-size: 23px;
  font-style: italic;
}

 

 

-- Link
kmalkAuthor
Contributor ⭐️⭐️
June 11, 2020

That works great. Thanks!