@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 inputptype=password]{
width: -webkit-fill-available;
height: 100px;
}
Can you elaborate your 3rd query?
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?
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!
@Deepak, that works!! Thank you!!