Hide bullet points on H1/H2/H3?

I’m using some basic CSS (background color, padding, etc.) to visually distinguish the items that I’ve marked as H1, H2, or H3, but I’m wondering if it’s possible to actually hide the bullet point for items marked as such?

I’ve tried “list-style-type: none !important;” in the CSS, but it hasn’t had any effect…

1 Like

+1 - I’d like this too.

.is-heading1 .Node-bullet{
display:none;
}
.is-heading2 .Node-bullet{
display:none;
}
.is-heading3 .Node-bullet{
display:none;
}

1 Like