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

Hi Everyone

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

Thanks :)

 

Try below code:

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

 


Perfect @Shashi 

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

Thanks :)


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

 


Thanks @Shashi !


Leave a Reply