View Single Post
Old 11-15-2017, 03:55 AM   #2
HarryT
eBook Enthusiast
HarryT ought to be getting tired of karma fortunes by now.HarryT ought to be getting tired of karma fortunes by now.HarryT ought to be getting tired of karma fortunes by now.HarryT ought to be getting tired of karma fortunes by now.HarryT ought to be getting tired of karma fortunes by now.HarryT ought to be getting tired of karma fortunes by now.HarryT ought to be getting tired of karma fortunes by now.HarryT ought to be getting tired of karma fortunes by now.HarryT ought to be getting tired of karma fortunes by now.HarryT ought to be getting tired of karma fortunes by now.HarryT ought to be getting tired of karma fortunes by now.
 
HarryT's Avatar
 
Posts: 85,544
Karma: 93383099
Join Date: Nov 2006
Location: UK
Device: Kindle Oasis 2, iPad Pro 10.5", iPhone 6
Yes - you do it with CSS style for the "a" element. You need something like this:

Code:
a {
  text-decoration: none;
}

a:link {
  color: #265301;
}

a:visited {
  color: #437A16;
}
The first of these sets the general style for links (removing the underline). The second sets the colour for links you haven't yet clicked on. The third sets the colour of links you have clicked on. Adapt as required. You need to have the classes in this order - each builds on the one before it.
HarryT is offline   Reply With Quote