How do I, in the Pro version change the link color from yellow to transparent?
Replies
j***s@jesmadsen.com
2023-09-27
2023-09-27
Maybe I should mention that the links are made in Adobe Acrobat, and not in HTML. And the color I'm talking about is the yellow background on the link boxes I made in Adobe Acrobat. They are transparent in Adobe Acrobat...
c***h@richardsonsports.com
2023-10-04
2023-10-04
While this will work, it will disable your links from working. Not sure if there is a glitch in the latest release or not.
.fb3d-link a {background-color: rgba(255,255,0,0);}
.fb3d-link a:hover {background-color: rgba(255,255,0,0);}
Maybe I should mention that the links are made in Adobe Acrobat, and not in HTML. And the color I'm talking about is the yellow background on the link boxes I made in Adobe Acrobat. They are transparent in Adobe Acrobat...
While this will work, it will disable your links from working. Not sure if there is a glitch in the latest release or not.
.fb3d-link a {background-color: rgba(255,255,0,0);} .fb3d-link a:hover {background-color: rgba(255,255,0,0);}
Where I found an answer > https://www.youtube.com/watch?v=ekpAGfmPI5k
You can simply disable links highlight. Open any book for editing: Book properties(highlightLinks: -)
Thanks for the replies. I ended up creating the links in html on each page, and then adding some CSS to hide the background color.