Customizing colors of survey Items and communications | XM Community
Skip to main content

Hello!

 

I would like to check if there is a way to customize:

  • The text box border color of the authenticator question
  • The text color of the headings in which the possible languages are listed at the beginning of the survey

Plus, I would like to check whether is possible to:

  • Customizing the mail invite, including a picture as background on which is possible to write text (e.g having a picture blue and write the invite on this background)
  • Upload new fonts for the survey and the communications

Thanks a lot!

 

This article shows how you can customize fonts and colors with the rich content editor: https://www.qualtrics.com/support/survey-platform/survey-module/editing-questions/rich-content-editor/rich-content-editor-overview/

 

Also, for email invites, you can add images, links, and other items. Instructions here: https://www.qualtrics.com/support/survey-platform/distributions-module/email-distribution/emails-overview/


@ash123  Thanks a lot for your message!

 

I guess the needs I have could not be managed through the “standard” approach highlighted in the support articles.  

 

For example, I do not need to customize the text of a simple question, while the authenticator one and the languages box, things for which I think (but I am not sure) code is needed.

 

Similarly, for the email invite, I do not need to only include an image in the body, while uploading an image and that writing on the image itself.

 


Do you know how I can change the items colour in the multi-item Likert scales?


Hi ​@Anviscardi ,

May be you can try with the below approach and let us know if this worked. 

1. Change the Border Color of the Authenticator Question Text Box: Use custom CSS to change the border color 

Open the Look & Feel → Style → Custom CSS box, enter the following code:
css:


.AuthenticatorTextBox { 2 border-color: #yourcolorcode; 3}

Click Apply to save your changes.


2. Change the Text Color of Language Selection Headings: You can also change the text color of the headings for language selection similaryly

css:


.LanguageSelectionHeading { 2 color: #yourcolorcode; 3}

Click Apply to save your changes.


3. Customize the Email Invite with a Background Image: You can add a background image to your email invite using HTML and inline CSS. Here’s an example:

Switch to the HTML view in the rich content editor.
Enter your HTML and CSS code like the below:

html
<div style="background-image: url('yourimageurl'); background-size: cover; padding: 20px; color: white;"><h1>Your Invite Text Here</h1> <p>Additional text here...</p> </div>

Save and test it

 


Leave a Reply