Hi Girish,
You can open this CSS file:
OXYGEN_INSTALL_DIR\frameworks\dita\css\core\-topic-metadata-prolog.css
and it has two selectors like:
Code: Select all
*[class~="topic/resourceid"][id]:before {
-oxy-append-content: oxy_textfield(columns, 30, edit, "@id");
}
*[class~="topic/resourceid"][appid]:before{
-oxy-append-content: oxy_label(text, " appId: ", width, 5ex) oxy_textfield(columns, 12, edit, "@appid");
}
which can be replaced with:
Code: Select all
*[class~="topic/resourceid"][id]:before {
-oxy-append-content: oxy_label(text, " ID: ", width, 5ex) oxy_textfield(columns, 30, edit, "@id");
}
*[class~="topic/resourceid"]:before{
-oxy-append-content: oxy_label(text, " appId: ", width, 5ex) oxy_textfield(columns, 12, edit, "@appid");
}
You may need to give full access rights to editing the CSS file for the current user name if you cannot save to it.
Regards,
Radu