No Custom order for "sort notebooks by"

This may currently be achieved by modifying userchrome.css (for Linux users, it should be under $HOME/.config/joplin-desktop/). For instance, to move a specific notebook to the very end of the list:

.folders.expanded {
    display: flex !important;
    flex-direction: column !important;
}

.folders.expanded div[data-folder-id="02af3e762b0147f08f73529c9de4f50e"] {
    order: 1 !important;
    margin-top: 24px !important;
}

Toggle development tools and search for a notebook's name to find its data-folder-id.

1 Like

By the way : what about this command in he notebook list ?


No idea how it works
A warning there: "toggle own sort order" removes my note?!

Tried that but it didn't work (or it does but I didn't figure out how I was supposed to move the notebooks around).

Toggle own sort order is about the sorting of notes within a notebook, not the notebooks themselves.

After enabling toggle own sort order on a notebook, you can use the sort button within the notebook to change the sort, and it should only impact notes within that notebook.:

I don't think there's currently a way to change sort of the actual notebooks (outside of css customizations)

1 Like