I am not very versed in CSS, but I am good at cutting and pasting (and modifying) other people’s code. After playing around a little bit, I was able to get a red pillbox around the tab, but I can’t figure out how to remove the hash tag. This code would need to be copied and pasted under the “.tag” element in the Layout CSS code section of the Display Settings. Scroll down until you find “.tag”, delete whatever is there now and insert (I would suggest copying what is there now and saving it someplace just in case! or you can always hit “Reset” if something bad happens):
{
display: inline-block;
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
padding-left: 7px;
padding-right: 7px;
height: 24px;
background-color: DarkRed !important;
color: white !important;
font-weight: normal;
text-decoration: none;
}
To remove the hash tag, I was able to do that in Dynalist (where I got the above code from) by using the “::first-letter” attribute, but this doesn’t seem to work in Legend. I will paste the code here (with the Dynalist node name) just for reference in case someone smarter than me can figure it out!
.node-tag::first-letter
{
font-size: 0%;
}