I have a question.
Where is the color for the hyperlinks defined?
In the document or in a CSS file?
I tend to use these CSS style sheets to have a set of predefined text color and size options, including the colors of the defined hyperlink options. So I just have to refer to the style sheet file and use the defined link styles and the commands like "#n10link" type of command in the "style" tag to define the fonts, color, and size, of the text in the web page.
I am now using 5.1.1.3 on my Ubuntu 64-bit laptop. Do you remember which version of LO your link colors worked correctly with?
I cannot find the info for adding a color in the add hyperlink option - such as defining the colors for link, visited, and hover color options shown in the CSS sample I have included in this document. To be honest, because I use CSS files I never tried looking for the color options you needed. Also, I do not use Writer/Web for web page editing.
I was using Kompozer for a long time, till Ubuntu changed the GUI and became unsupported using Ubuntu 14.XX or later. I do have it on my Windows partition though. I currently use Bluefish on Linux for the basic file editing. I do not think I would want to use that for new page creation though. Maybe I will see into using Writer/Web for some of the work, at some later time.
This is a small sample of my standardized style sheet file.
<!--
{
color: #004040;
text-decoration: none;
font-family: "Georgia", "Palantino Linotype", "Book Antiqua", "Times New Roman", "Times", serif;
}
{
text-decoration: none;
color: #0e4a08;
font-family: "Georgia", "Palantino Linotype", "Book Antiqua", "Times New Roman", "Times", serif;
}
{
color: #006400;
background: #CEE7CE;
text-decoration:none;
font-family: "Georgia", "Palantino Linotype", "Book Antiqua", "Times New Roman", "Times", serif;
}
#s14
{
font-size: 14pt;
}
/* */
/* Serif Link and Text Fonts */
/* */
#n10link
{
font-family: "Tahoma", "Geneva", "Verdana", "Arial", "Hevetica", "Trebuchet MS", "Monico", san-serif;
color: #800000;
font-size: 10pt;
}
#n12link
{
font-family: "Tahoma", "Geneva", "Verdana", "Arial", "Hevetica", "Trebuchet MS", "Monico", san-serif;
color: #800000;
font-size: 12pt;
}
#n14link
{
font-family: "Tahoma", "Geneva", "Verdana", "Arial", "Hevetica", "Trebuchet MS", "Monico", san-serif;
color: #800000;
font-size: 14pt;
}
#s10link
{
font-family: "Georgia", "Palantino Linotype", "Book Antiqua", "Times New Roman", "Times", serif;
color: #800000;
font-size: 10pt;
}
#s12link
{
font-family: "Georgia", "Palantino Linotype", "Book Antiqua", "Times New Roman", "Times", serif;
color: #800000;
font-size: 12pt;
}
#s14link
{
font-family: "Georgia", "Palantino Linotype", "Book Antiqua", "Times New Roman", "Times", serif;
color: #800000;
font-size: 14pt;
}
-->