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

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.

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




Hope this resolves your query😊!!!


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.
inpututype=text] {
font-family:Calibri!important;
color: #000000!important;
font-size:16px!important;
}
Kindly help me on this. Thank you so much.


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


Thank you TomG . This work perfect.


Leave a Reply