Character Limit - Customise Look | XM Community
Solved

Character Limit - Customise Look

  • 26 January 2024
  • 4 replies
  • 15 views

Userlevel 6
Badge +5

Hi Everyone

Can someone help me with the code to change the copy, colour, font size of this?

Thanks :)

 

icon

Best answer by Shashi 26 January 2024, 11:59

View original

4 replies

Userlevel 6
Badge +27

Try below code:

jQuery("#"+this.questionId+"-RemainingChars").css({"color":"red","font-size":"16px"})

 

Userlevel 6
Badge +5

Perfect @Shashi 

How would i remove the text and just have the number?

Thanks :)

Userlevel 6
Badge +27

Perfect @Shashi 

How would i remove the text and just have the number?

Thanks :)

Try below code:

jQuery("#"+this.questionId+"-RemainingChars").css({"color":"red","font-size":"16px","visibility":"collapse"});
jQuery("#"+this.questionId+"-RemainingChars span").css({"visibility":"visible","float":"left"});

 

Userlevel 6
Badge +5

Thanks @Shashi !

Leave a Reply