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