Css to hide a tag?

I have read this document Guide: Hiding tags and added

this to my css page
However, the tag have not been hide… It’s still there

1 Like
/*Don't use capital letter */
[data-rem-tags~="t-temp"]:not(:focus-within) .hierarchy-editor__tag-bar {
   display: none;
}

The tag shouldn’t have the dash -


make sure that you use css codeblock
image

2 Likes


Not work…
After change it to css, the tag persists

1 Like

1 Like

Still not working… Is the CSS system broken?

1 Like

data-rem-tags~=“ttemp” - It won’t work with TTemp, you should use ttemp

[data-rem-tags~="ttemp"]:not(:focus-within) .hierarchy-editor__tag-bar {
   display: none;
}
1 Like