Question Padding Help | XM Community
Skip to main content
Solved

Question Padding Help

  • October 7, 2023
  • 1 reply
  • 74 views

Forum|alt.badge.img+5

Hi Everyone

I am using this in CSS which is working well.

.Skin .QuestionText {
padding: 25px !important;
border-radius: 10px !important;
}

But when I move onto my 2nd survey page, I don’t want this running.

How would I remove the pink gap on this question?

 

Thanks :)

Best answer by Nam Nguyen

@parkie_0007 Add your question ID to apply the code for only that question rather than the entire survey.
Change the QID according to yours

#QID1 .QuestionText {
padding: 25px !important;
border-radius: 10px !important;
}

 

1 reply

Nam Nguyen
QPN Level 8 ●●●●●●●●
Forum|alt.badge.img+29
  • QPN Level 8 ●●●●●●●●
  • 1096 replies
  • Answer
  • October 7, 2023

@parkie_0007 Add your question ID to apply the code for only that question rather than the entire survey.
Change the QID according to yours

#QID1 .QuestionText {
padding: 25px !important;
border-radius: 10px !important;
}