Constant Sum responses blocks to be larger | XM Community
Skip to main content

HI,
I am building a survey, and I want the response box to be bigger than currently is.
ChoicesSize.PNGWe can adjust this in a Format field question, but not in this one.
Any custom code available to help with this?
Thanks in advance

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!
image.pngCheers for this !


Great solution Tom_1842 👏 Thank you for your contributions to our community!


Leave a Reply