Home › Forums › DITA and XMetaL Discussion › Configuring tags-on view › Reply To: Configuring tags-on view
Reply to: Configuring tags-on view
September 26, 2011 at 5:36 pmFor each topic type (task, topic, etc) that you wish to change add a CSS override setting to the corresponding CSS file for that type.
For “task” the file is here (and for others the file is in a folder at the same level that has a name corresponding to the DTD name):
[class~="topic/indexterm"] {
display: block;
}
Depending on where your
[class~=”topic/keywords”] [class~=”topic/indexterm”] {
display: inline;
}
If you need to make this styling change for all topic types it may be easier to modify the main CSS file. That is located here:
Look for the following and make the change to “block” from “inline” there:
/* indexterm {*/
[class~="topic/indexterm"] {
display: inline;
color: #AAAAAA;
}
Other settings related to
Note that this will work for 6.0.1.030 and 6.0.2.070 but we may change the way the CSS files are configured in future releases.