Change Location of Backlink Button #3622
-
The backlink button appears in the text body and can cover words, is there anyway to move it to a side bar? Or stop it from appearing when opening a note? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
It's possible to temporarily hide it with the close button. Otherwise no. |
Beta Was this translation helpful? Give feedback.
-
You can make it less intrusive by fiddling with these parameters: For example, by adding this to a custom theme: .backlinks-ticker{
opacity: 20%!important;
}
.backlinks-count{
font-size: 7px;
} you can make it look like this: To hide it completely, just add this instead: .backlinks-ticker{
display: none!important;
} |
Beta Was this translation helpful? Give feedback.
You can make it less intrusive by fiddling with these parameters:
For example, by adding this to a custom theme:
you can make it look like this:
To hide it completely, just add this instead: