Lowercase Piped text | XM Community
Solved

Lowercase Piped text

  • 7 June 2019
  • 3 replies
  • 264 views

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.
icon

Best answer by TomG 7 June 2019, 18:51

View original

3 replies

Userlevel 7
Badge +27
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; }
```
Thank you! It was very helpful.

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