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

Changing the default hyperlink color

  • December 16, 2020
  • 1 reply
  • 575 views

Forum|alt.badge.img+6

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


Best answer by xzimura

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;
}

1 reply

xzimura
  • Answer
  • December 16, 2020

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;
}