Hello,
I have a survey with images that I would like to present as HotSpot questions. I would like the presentation of these questions to be custom-sized to fit the survey takers’ screens.
Currently, I have the following CSS code under Look and feel > Style.
#SkinContent{ width:100vw; }
#SkinContent{ height:100vw; }
.Skin .HotSpot .QuestionBody{
display: flex;
justify-content: center;
}
.Skin .HotSpot .QuestionBody {
width: 85% !important;
height: 85% !important;
}
The idea here was to size the “canvas” on which the images are presented to the screen (100vw) and to center the images and size them such that they cover 85% of this screen area. The last part of this snippet of code didn’t seem to do anything. I also tried other variations I could find online, to no effect. How can I custom-size a HotSpot question? Your help would be much appreciated.