Home › Forums › DITA and XMetaL Discussion › Map editor: Possible to turn off auto @navtitle? › Reply To: Map editor: Possible to turn off auto @navtitle?
Reply to: Map editor: Possible to turn off auto @navtitle?
February 20, 2015 at 1:54 amYou will need to alter some CSS.
Add the following to one of these files (which you need to change depends on your DITA version setting from Tools > DITA Options):
C:Program Files (x86)XMetaL 9.0AuthorDITAXACs1.1mapmap-base-override.css
C:Program Files (x86)XMetaL 9.0AuthorDITAXACs1.2mapmap-base-override.css
[class~="map/topicref"]:before{
content: " ";
}
The other selector that is involved with this shows the @navtitle value when set (so you wouldn't alter it). But in case you did want to change it the selector is this one:
[class~="map/topicref"][navtitle]:before{
content: " " attr(navtitle) " ";
display: inline;
}