Page 1 of 1
Bookmap to PDF via CSS
Posted: Tue Dec 15, 2020 11:47 am
by Tygopit
Hi,
How to remove title from Notice section topic?
Regards,
Piotr
Re: Bookmap to PDF via CSS
Posted: Tue Dec 15, 2020 2:28 pm
by julien_lacour
Hello,
Depending on your case you should have in your CSS style-sheet a selector looking like the following:
Code: Select all
*[topicrefclass~="bookmap/notices"] *[class~="topic/title"] {
display: none;
}
To help you finding how the selectors are applied in your content you can
debug the css.
If you debug your css, you can refine the rule I gave you and adapt it to your needs.
Regards,
Julien
Re: Bookmap to PDF via CSS
Posted: Tue Dec 15, 2020 3:29 pm
by Tygopit
Thanks, Julien
I'm sure that I was trying this one, with no luck.
Now, after copy/paste from your reply, works just brilliant.
Something was messed up during my previous try.
Thanks again,