Remove underline from links in epub
Hi,
I've tried these two codes in the css override box to remove the blue hyperlink and underline but they aren't working.
a {text-decoration: none; color: black;}
a href {text-decoration: none; color: black;}
Am I using the wrong codes? Or do I need to add the css to the epub file?
I'd appreciate any and all help,
Thanks!
EDIT: Nevermind! I found the answer. I needed to use this code instead.
a {text-decoration: none; color: black;}
a [href] {text-decoration: none; color: black;}
Last edited by Amalthia; 09-16-2010 at 03:53 AM.
Reason: found answer
|