Custom CSS in Simple Layout | XM Community
Skip to main content
Solved

Custom CSS in Simple Layout

  • October 4, 2023
  • 2 replies
  • 321 views

Forum|alt.badge.img+1

I am working on a project that requires several file uploads (attachments) so I need to use the Simple Layout to ensure that respondents can remove and reattach a file if they accidentally upload the wrong file.  I typically use the following Custom CSS in other layouts but it does not function in the Simple Layout.  Any suggestions on how to apply or adjust this code to work in Simple Layout?

.QuestionText {
color: #003DA6 !important;
}
.QuestionBody {
color: #003DA6 !important;
}

 

Best answer by Deepak

@KylieBC

It works differently on Simple layout, Try this:

.question .question-display-wrapper {
color: #003da6;
}
.question .question-content {
color: #003da6;
}

Hope it helps!

2 replies

Deepak
QPN Level 8 ●●●●●●●●
Forum|alt.badge.img+46
  • 1555 replies
  • Answer
  • October 4, 2023

@KylieBC

It works differently on Simple layout, Try this:

.question .question-display-wrapper {
color: #003da6;
}
.question .question-content {
color: #003da6;
}

Hope it helps!


Forum|alt.badge.img+1
  • Author
  • 1 reply
  • October 4, 2023

@Deepak , Thank you so much!  Worked perfectly!