Search found 4 matches

by Deepthi
Wed Dec 20, 2017 11:14 am
Forum: DITA (Editing and Publishing DITA Content)
Topic: Removal of generated text in table title
Replies: 6
Views: 1786

Re: Removal of generated text in table title

Hi Radu,

I have achieved it using the following code in CSS.

Code: Select all


:root[outputclass~="xxx"] >* *[class~="xyz/table"] > *[class~="xyz/title"]:before{
content:"";
}
Thanks for your quick reply. :)

BR
Deepthi
by Deepthi
Wed Dec 20, 2017 8:37 am
Forum: DITA (Editing and Publishing DITA Content)
Topic: Removal of generated text in table title
Replies: 6
Views: 1786

Re: Removal of generated text in table title

Hi Radu,

Thanks for your reply.

I have tried in this way

Code: Select all


table > *[class~="topic/title"]:before(10) {
content:"";
}
This is not working and please let me know how to find whether the root element contains the outputclass="xxx".

BR
Deepthi.
by Deepthi
Tue Dec 19, 2017 11:59 am
Forum: DITA (Editing and Publishing DITA Content)
Topic: Removal of generated text in table title
Replies: 6
Views: 1786

Removal of generated text in table title

Hi Team, When <title> is used inside the<table> element I am getting "Table" generated text. Now according to my customization I dont need "Table" generated text when <title> is inserted in <table> element. It should be removed based on the on a condition that if root element has...