The links in flipbook/pdf viewer can be customized to different colors or opacity
How to customize links color and opacity (PRO): #
Global Settings are available to change the color and visibility of links.
Change the color of links using CSS? #
The links in the PDF are auto-detected and highlighted in yellow as default. To change the color you can either make the highlight transparent to hide the yellow highlight or change the color to another. We recommend using Theme Customizer -> Additional CSS section for adding Custom CSS.
/* Make the highlight transparent - no color */ section.linkAnnotation a, a.linkAnnotation, a.customLinkAnnotation, .customHtmlAnnotation, .customVideoAnnotation{ opacity:0 !important; }
/* Make the highlight color red */ section.linkAnnotation a, a.linkAnnotation, a.customLinkAnnotation, .customHtmlAnnotation, .customVideoAnnotation{ background-color: red !important; }