Character Limit - Customise Look | XM Community
Skip to main content
Solved

Character Limit - Customise Look

  • January 26, 2024
  • 4 replies
  • 36 views

Forum|alt.badge.img+5

Hi Everyone

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

Thanks :)

 

Best answer by Shashi

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"});

 

4 replies

Shashi
Level 8 ●●●●●●●●
Forum|alt.badge.img+34
  • Level 8 ●●●●●●●●
  • 654 replies
  • January 26, 2024

Try below code:

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

 


Forum|alt.badge.img+5
  • Author
  • Level 5 ●●●●●
  • 157 replies
  • January 26, 2024

Perfect @Shashi 

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

Thanks :)


Shashi
Level 8 ●●●●●●●●
Forum|alt.badge.img+34
  • Level 8 ●●●●●●●●
  • 654 replies
  • Answer
  • January 26, 2024

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"});

 


Forum|alt.badge.img+5
  • Author
  • Level 5 ●●●●●
  • 157 replies
  • January 26, 2024

Thanks @Shashi !