Changing the default hyperlink color | XM Community
Skip to main content

How can I change the default hyperlink colour on an entire survey? Can this be done within Look and Feel?


yep can be done via css. try the below. Look & Feel - Style - Custom CSS


a:link {
 color: red;
}

/* visited link */
a:visited {
 color: green;
}

/* mouse over link */
a:hover {
 color: hotpink;
}

/* selected link */
a:active {
 color: blue;
}


Leave a Reply