When we upgraded to version 5, the space-specific stylesheet that worked perfectly in version 3.5.x is now ignored. Here is an example of CSS that previously worked, but now does not. Is it no longer possible to format a navmap using local CSS?
a.navMapCell, a.navMapCell:link, a.navMapCell:visited
{
background-color:yellow;
}
a.navMapCell:link {
color: #
000000
;
}
a.navMapCell:visited {
text-decoration: none;
color: #FF0000;
}
Hi, I just solved the problem!
You have to add .navMapContainer before each a.navMapCell declaration. See the following example.
.navMapContainer a.navMapCell { background-color:yellow; } .navMapContainer a.navMapCell:link { color: #000000; } .navMapContainer a.navMapCell:visited { text-decoration: none; color: #FF0000; }
That works for me (Confluence 5.8.9).
has the classname changed?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.