View Single Post
Old 08-01-2013, 08:46 AM   #31
RbnJrg
Wizard
RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.
 
Posts: 1,835
Karma: 8700631
Join Date: Mar 2013
Location: Rosario - Santa Fe - Argentina
Device: Kindle 4 NT
Quote:
Originally Posted by neoveninet View Post
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
RbnJrg is offline   Reply With Quote