HI,
I am building a survey, and I want the response box to be bigger than currently is.
We can adjust this in a Format field question, but not in this one.
Any custom code available to help with this?
Thanks in advance
Page 1 / 1
Hi there, try adding the below CSS in the Style section of the survey's Look & Feel:
.Skin .CS .SumInput input, .Skin .CS .SumTotal input {
width: 70px !important;
}
Actually try this instead. It will make the boxes 160px for desktop while keeping it 70px for mobile:
@media all and (min-width:481px){
.Skin .CS .SumInput input, .Skin .CS .SumTotal input {
width: 160px !important;
}
}
@media all and (max-width:480px){
.Skin .CS .SumInput input, .Skin .CS .SumTotal input {
width: 70px !important;
}
}
Oh brilliant it worked!
Cheers for this !
Great solution Tom_1842 Thank you for your contributions to our community!
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.