Lowercase Piped text | XM Community
Skip to main content
Solved

Lowercase Piped text


I have a question in the survey which I am designing. At the end of a question 4, I need to pipe the response 2 in lowecase letters. The issue is that the piped response from question 2 is coming in capital letters (e.g., Alice); and I want it in (alice) format. Is there a custom way of doing this. Or any HTML/CSS code that can be used. Any help would be appreciated.

Best answer by TomG

Put the pipe in a `<span>` and add a css rule to convert it to lowercase. HTML: ``` <span class="lowercase">${e://Field/myPipe}</span> ``` CSS: ``` span.lowercase { text-transform: lowercase; } ```
View original

3 replies

TomG
Level 8 ●●●●●●●●
Forum|alt.badge.img+27
  • Level 8 ●●●●●●●●
  • 5926 replies
  • Answer
  • June 7, 2019
Put the pipe in a `<span>` and add a css rule to convert it to lowercase. HTML: ``` <span class="lowercase">${e://Field/myPipe}</span> ``` CSS: ``` span.lowercase { text-transform: lowercase; } ```

  • Author
  • 8 replies
  • July 15, 2019
Thank you! It was very helpful.

  • 1 reply
  • February 1, 2021

Hi there, I am a newbie here. I tried above and I get this. How do I "put the pipe in a 



How easy or difficult do you feel it will be to achieve
Buing my first house


Leave a Reply