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.
Page 1 / 1
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; }
```
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
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.