The option to remove or reorder these buttons and the clock

I would like the options to remove these buttons and the clock.
Joplin

Removing the buttons should be possible via CSS. You might take Joplin Customization as starting point or maybe someone can provide a ready-to-use CSS snippet.

@ufkhf welcome to the forum.

The date / time displayed is not a clock but when the note being viewed was last modified.

Anyway, I believe that entering the below in userchrome.css will remove all the buttons on the right of the note title. Quit and restart Joplin to apply the changes.

If you change your mind for one or more of them just delete the entries for those you want to re-enable.

span.updated-time-label,
a[title="Spell checker"],
a[title="Set alarm"],
a[title="Toggle editor layout"],
a[title="Note properties"] {
    display: none;
}

before
Before

after
After

3 Likes

After testing things i would like to only remove the date / time and the alarm. I have tried to do this, but when i open Joplin my computer freezes. How do i need to do this? Thanks.

Open the custom style sheet for the Joplin app itself

Tools > Options > Appearance > Show Advanced Settings > Custom stylesheet for Joplin-wide app styles

OR directly edit

Linux
~/.config/joplin-desktop/userchrome.css

Windows
C:\users\<username>\.config\joplin-desktop\userchrome.css

If your system prompts you for an application to open css files select a plaintext editor.

Add

span.updated-time-label,
a[title="Set alarm"]  {
    display: none;
}

then save the file.

Then Quit Joplin and restart it.

I have never known a stylesheet change to cause Joplin or the computer to freeze.

1 Like