Quote:
Originally Posted by crutledge
Somehow a couple of posts where the following CSS entrys were recommended for link color control have disappeared.
Anyway, I have tried all of these and none of them work in Calibre.
If they work for you, please tell me where I'm going wrong.
Code:
a:link {
color: #000000;
}
a:visited{
color: #000000;
}
a:hover{
color: #000000;
}
a:active{
color: #000000;
}
|
If your additional styles: appears listed before the defaults, the defaults cascade into effect.

BTW
color: black ;
is acceptable HTML
BTW webscriptions uses:
Code:
a[href] {
color: blue;
text-decoration: underline;
cursor: pointer
}
note the [HREF], I believe this case, the color blue applies: Always