How to remove "Click to add tags..." line from the bottom of every note?

Operating system

Windows

Joplin version

2.13.15

What issue do you have?

I don't use tags. Please help me to remove this distraction.

I tried to put these in the userchrome.css, it doesn't work.

div.resizableLayoutItem.rli-root > div.resizableLayoutItem.rli-editor > div:first-child > div:first-child > div:first-child > div:nth-child(4)
{
display: none !important;
}

and this

#react-root > div > div > div.resizableLayoutItem.rli-root > div.resizableLayoutItem.rli-editor > div > div > div > div:nth-child(4) { display: none !important; }

How to remove "Click to add tags..." line from the bottom of every note?

@yecapas567 welcome to the forum.

Try

div.tag-bar {
    display: none !important;
}

I have only briefly tested this but it seems to work.

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.