Currently the color of links in a PDF document is yellow when hovering. Can this be changed?
2 Likes
Solution:
.fb3d-link a{
cursor: pointer;
background-color: rgba(0, 152, 121, 0.01);
transition: background-color .15s ease-in;
}
.fb3d-link:hover a{
cursor: pointer;
background-color: rgba(0, 152, 121, 0.33);
transition: background-color .15s ease-in;
}
2 Likes
Hi there, @user18739
I’ve checked your flipbook and couldn’t any links there. Do you mean the links right in the flipbook?
If this is the case, please send me a screenshot of the link you mean. I’d love to see how your solution works
1 Like