The pin and page number are not comfortalbe for reading, so it there a way to hide them?Maybe need to change the css file ?
Thank you very much 0-0
The pin and page number are not comfortalbe for reading, so it there a way to hide them?Maybe need to change the css file ?
Thank you very much 0-0
.block-content[data-type=annotation] a.prefix-link:before,
.block-content[data-type=annotation] a.prefix-link,
.block-content[data-type=annotation] [data-hl-type=area] .hl-page {
display: none;
}
This CSS will hide them, but without a page number, you will not be able to navigate back from notes to pdf. In that case, you can hide only the pin.
.block-content[data-type=annotation] a.prefix-link:before {
display: none;
}