Quote:
Originally Posted by davidfor
As far as I can tell, the default styles used for a link on the device are simply to underline them. If there are any colours used, they are not obvious.
|
I don't think this is true for kepubs as the firmware's default CSS override area for kepubs (kepub-book.css) contains this:
Code:
a:link, a:visited, a:hover, a:active { border-bottom: 1px dotted black !important; color: #696969 !important; }
I've just been playing about with it using a kobopatch and patching this line does appear to change the appearance of hyperlinks in my kepubs. I've tried both of these customisations to get different look&feel but I haven't played long enough to know whether there are unwelcome side-effects elsewhere:
Code:
a:link, a:visited, a:hover, a:active { border-bottom: 2px dashed black !important; color: inherit !important; }
Code:
a { border: none !important; background-color: #bbb !important; color: inherit !important; }