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 originalLeave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.