Hiding Inconvenient Scrollbars in Inkdrop

Hi everyone!

Hope you’re all doing well. I’m getting back into using Inkdrop and ran into a bit of trouble trying to hide some inconvenient scrollbars — especially when using the sidetoc plugin and the readable line length option.

After some digging around with the help of Google and ChatGPT, I finally found a solution. I figured I’d organize everything here to share with the community — hope it helps!

On Windows and Linux

/* Hide vertical and horizontal scrollbars */
::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

/* Hide the scrollbar "thumb" (the draggable part) */
::-webkit-scrollbar-thumb {
  background: transparent;
}

On MacOS

Read Takuya instructions on this post:

Can you please remove the vertical scroll bar? - Issues - Inkdrop Forum


I hope you find this tip useful! Have a nice day!

2 Likes