What I mean by that, is having a link without it highlighting purple/blue when you click it/don't click it.
Click on the menu command Format | Edit Styles | Link to show the Link Styles dialog. Type a new link style name, such as "Hyperlinks", and press OK. Set Underlining to None, and Text colour to None or Specified, as required.
You need to add some CSS styling using CSS pseudo-classes.
Here is an example showing CSS added to the head element in a style tag that changes all links to always be black. However, ideally CSS should be in an external file and for usability you probably want to give some indication that the text is a link.
<head>
<style type="text/css">
a:link {color: black;} /* unvisited link */
a:visited {color: black;} /* visited link */
a:hover {color: black;} /* mouse over link */
a:active {color: black;} /* selected link */
</style>
</head>
See:
You can use the following css, either in a stylesheet or enclosed in <style>
tags:
a {
text-decoration: none;
}
Try this :-)
a:visited {
color: black;
}
If you want it for all your website you can set the style of your body, something like this:
body a
{
color: #000000;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With