Survey - Password Protection | XM Community
Skip to main content
Solved

Survey - Password Protection


Forum|alt.badge.img+5

Hi All

With this enabled.

  1. How can I change the copy?
  2. How can I make the box full length and possibly change the height?
  1. How would I change the copy of the NEXT button on this page, no question appears in the survey so I can’t access the NEXT/BACK button tool.

Thanks :)

Best answer by Deepak

@parkie_0007 

Hi,

The Question doesn’t load but the look and feel elements do get loaded you can use below CSS to modify that for your first 2 queries.

.Skin input[type=password]{
    width: -webkit-fill-available;
    height: 100px;
}

Can you elaborate your 3rd query?

View original

4 replies

Deepak
QPN Level 8 ●●●●●●●●
Forum|alt.badge.img+44
  • 1549 replies
  • Answer
  • August 21, 2023

@parkie_0007 

Hi,

The Question doesn’t load but the look and feel elements do get loaded you can use below CSS to modify that for your first 2 queries.

.Skin input[type=password]{
    width: -webkit-fill-available;
    height: 100px;
}

Can you elaborate your 3rd query?


Forum|alt.badge.img+3
  • Level 2 ●●
  • 21 replies
  • September 15, 2023

Sorry to hijack this but @Deepak, I just want to update the content of the text from “This survey requires a password” to something else - how can I do that please?


Deepak
QPN Level 8 ●●●●●●●●
Forum|alt.badge.img+44
  • 1549 replies
  • September 15, 2023

Hello @KateD,

You can include below code in look and feel> header> source and change the text in this as required.

<script>
var label = jQuery('label').eq(0).attr('for');
if (label=='QR~Password'){
jQuery('label').eq(0).text('survey requires a password')
}
</script>

Hope it helps!


Forum|alt.badge.img+3
  • Level 2 ●●
  • 21 replies
  • September 15, 2023

@Deepak, that works!! Thank you!!


Leave a Reply