Changing font type for dropdown options | XM Community
Skip to main content

Changing font type for dropdown options

  • February 10, 2023
  • 4 replies
  • 128 views

Forum|alt.badge.img+3

I have 2 questions in a survey with dropdown options and rest are text entry. I would like to have standard font type for all text entry (which the respondent fills in). Also, want to show my drop down as Calibri font type. Is there anyway we can do this using custom code? Kindly let me know if you may have any question for me. Thank you.

4 replies

qualtrics_nerd
Level 5 ●●●●●
Forum|alt.badge.img+19
  • Level 5 ●●●●●
  • February 10, 2023

Hi kghosh ,
You can Achieve the same by adding below CSS in your question using style tag:




Hope this resolves your query😊!!!


Forum|alt.badge.img+3
  • Author
  • QPN Level 1 ●
  • February 10, 2023

qualtrics_nerd, Thank you for your advice. I can change the dropdown font type with the below code.
.Skin select {
   font-family: "Calibri";
}

I am also trying to change font type when customer put texts in multple line text entry field. I can do this for a single line text with code below but it is not working for multi line text box.
input[type=text] {
font-family:Calibri!important;
color: #000000!important;
font-size:16px!important;
}
Kindly help me on this. Thank you so much.


TomG
Level 8 ●●●●●●●●
Forum|alt.badge.img+27
  • Level 8 ●●●●●●●●
  • February 11, 2023

https://community.qualtrics.com/XMcommunity/discussion/comment/55318#Comment_55318Change
input[type=text] {
to
input[type=text], textarea {


Forum|alt.badge.img+3
  • Author
  • QPN Level 1 ●
  • February 11, 2023

Thank you TomG . This work perfect.