Quote:
Originally Posted by neoveninet
Well, solved in all kindle formats as follows in all your files:
Code:
a:link {
color: black; /* same color as the surrounding text */
text-decoration: none !important; /* to remove the underline */
cursor: text; /* to make the cursor stay as a text cursor, not the hand */
}
a:visited {
color: black; /* same color as the surrounding text */
text-decoration: none !important; /* to remove the underline */
cursor: text; /* to make the cursor stay as a text cursor, not the hand */
}
a:active {
color: black; /* same color as the surrounding text */
text-decoration: none !important; /* to remove the underline */
cursor: text; /* to make the cursor stay as a text cursor, not the hand */
}
a:hover {
color: black; /* same color as the surrounding text */
text-decoration: none !important; /* to remove the underline */
cursor: text; /* to make the cursor stay as a text cursor, not the hand */
}
a {
color: black; /* same color as the surrounding text */
text-decoration: none !important; /* to remove the underline */
cursor: text; /* to make the cursor stay as a text cursor, not the hand */
}
a[href] {
color: black;
text-decoration: none !important;
cursor: text; /* to make the cursor stay as a text cursor, not the hand */
|
You can simplify the above with:
Code:
a, a:link, a:visited, a:active, a:hover, a[href] {
color: black; /* same color as the surrounding text */
text-decoration: none !important; /* to remove the underline */
cursor: text; /* to make the cursor stay as a text cursor, not the hand */
}
Regards
Rubén