Skip to main content
Solved

Customize font in NPS templates

  • June 11, 2020
  • 4 replies
  • 261 views

  • Contributor ⭐️⭐️

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
Forum|alt.badge.img+2
  • 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!


  • Author
  • 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
Forum|alt.badge.img+2
  • Gainsight Employee ⭐️⭐️
  • Answer
  • June 11, 2020

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

 

 


  • Author
  • Contributor ⭐️⭐️
  • June 11, 2020

That works great. Thanks!