forums › forums › Circle Flip Support › Text Custom Link on Revolution Slider › Reply To: Text Custom Link on Revolution Slider
Thanks for your reply, Omar!
That’s very useful. I eventually found out how to do it with another method, but your JAVA code is a better solution.
What I did was I wrapped my text in a href tags and then I entered this code in the CSS tab of the slider:
/* unvisited link */
a:link {
color: #727c86;
}
/* visited link */
a:visited {
color: #727c86;
}
/* mouse over link */
a:hover {
color: #727c86 !important;
text-decoration: underline;
display: block;
}
/* selected link */
a:active {
color: #727c86;
}
.tp-caption a {
color:#727c86;
}
This made my whole text clickable without any other decoration (except when hovering); but the problem with this method is that it would apply it to the whole slider, and if I wanted to change individual slide’s styles it would not be possible. With your method I can have as many ID’s as I want, which is great.
Thanks a lot!