Quote:
Originally Posted by Ahriman
I go to Preferences>User Stylesheet and copy your text and it still doesn't work
|
Try
Code:
a:link, a:link * {
color: #000 !important;
text-decoration: none !important;
}
Sometimes the link elements may contain child elements which are styled instead of the links themselves. It just depends on how the particular html was written. Example:
Code:
<a href="file1.html" class="toc"><span class="blue"><span class="underline">Acknowledgments</span></span></a>
The span styles will override the parent link styles.