L SEP in PDF (css/html5) bookmarks
Posted: Tue Jul 30, 2024 5:32 pm
I have a css style that moves the chapter number above the chapter title in our PDFs:
This does what I want, but it has a side effect of adding 2 "L SEP" images after the chapter number in our bookmarks (see attachment).
I'm hoping someone knows how to fix this. Thanks in adavance.
Code: Select all
*[class ~= "map/map"][numbering ^= "deep"] *[class ~= "topic/topic"][is-chapter]:not([is-part]) > *[class ~= "topic/title"]::before {
content: "Chapter " counter(chapter) " " "\A\A";
white-space: pre;
font-size: 18px;
font-weight: bold;
display: block;
}
I'm hoping someone knows how to fix this. Thanks in adavance.