How can I change the default hyperlink colour on an entire survey? Can this be done within Look and Feel?
Solved
Changing the default hyperlink color
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;
}
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
