Can I somehow disable the horizontal line footnotes create?

So I divide my notes in different headings like this:

This is a simple example but I add headings like Tags heading, Key words headings, etc… Therefore I also need to use a heading for my references. The problem is, when using reading view that horizontal line appears automatically and there seems no way to disable it. I want to disable it because it breaks the style and design of the note. Can someone tell me if I can somehow disable it?

You could give this CSS snippet a try. That should do it.

.footnotes hr {
    border-top: none;
}

Source mode | Reading View

I’ll try later today. Thanks in advance!

Hope it works out.

I should have shared screenshots of with and without the snippet, but wanted to demonstrate horizontal rules are still working fine; just removed above the footnotes section.

It’s OK the normal horizontal rule you showed in your image demonstrates it!

About the CSS, it kinda works, it’s much better than before but now it shows a blank space below the heading which still disrupts a bit the style of the note. Is this fixable or there’s nothing more to do? Either way, thanks a lot for this solution!!

Give this version a try:

.footnotes hr {
    display: none;
}

without snippet:

with snippet:

Hopefully that’s a bit better.

1 Like

This is it. I’m deeply thankful for your help!

1 Like

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