Solved

Customize font in NPS templates

  • 11 June 2020
  • 4 replies
  • 225 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!

icon

Best answer by link_black 11 June 2020, 23:26

View original

4 replies

Userlevel 6
Badge +2

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!

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...”?

Userlevel 6
Badge +2

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

 

 

That works great. Thanks!

Reply