I am having fun with my miniTOC proxy in that I do not seem to get the links to display the way I want.
I produce HTML Help and have included a miniTOC proxy to my masterpage.
Depending on the TOC level, the links in the miniTOC of compiled topics appear as shown below. TOC level 1 entries are usually bold and sometimes black
TOC level 2 entries are ok, as I would like all the links in the mini TOC to be (I have also indented them).
TOC level 3 entries are ok most of the time but some of them are in black (when links have not been visited)
As per the information given in the following link (http://forums.madcapsoftware.com/viewto ... toc#p62573), I have created new a classes called MiniTOC1, MiniTOC2 and MiniTOC3. I have then set up my pseudo classes by specifying a font in the colour of my choice as well as a text-decoration of none. See below for details (I have repeated this for a.MiniTOC2 and a.MiniTOC3).
Code: Select all
a.miniTOC1:link
{
color: #4682b4;
text-decoration: none;
}
a.miniTOC1:visited
{
color: #4682b4;
text-decoration: none;
}
a.miniTOC1:focus
{
color: #4682b4;
text-decoration: none;
}
a.miniTOC1:hover
{
color: #4682b4;
text-decoration: none;
}Thanks in advance.