Making arrow on the next button larger | XM Community
Skip to main content

Hi all, 

I am trying to make the arrow on the next button larger. The posts I have found on here only change the size of the button itself but not the arrow. I also found this on the Qualtrics website: “Note that you can’t use HTML or make other rich content edits to the next and back button text” but do not completely understand what it is saying. In sum, is it even possible to enlarge the arrow? If so, how? (

 

Thank you for your help!

You can use custom css to edit same and use code like

/* Increase the size of the arrow in the Next button */
#NextButton::after {
    content: "→"; /* Unicode or arrow symbol */
    font-size: 24px; /* Adjust size of the arrow */
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px; /* Adjust spacing between text and arrow */
}


Leave a Reply