How to decrease the size of a note headline in the pop over

Things I have tried

I only know how to change the font size in general. Not how to change the font size of only the headings. Here is my css code

.popover.hover-popover {
position: absolute;
z-index: var(–layer-popover);
max-height:40vh;
min-height:20vh;
width:50vh;
overflow:hidden;
padding:0;
}

.popover.hover-popover .markdown-embed {
height:40vh;
font-size: 0.85em;
line-height:1.4;
margin-top:-30px;
}

What I’m trying to do

I want to decrease the size of the heading of a markdown note in the popover window. Right now it is so large that it almost takes up half of the popover screen (see image)

Thank you in advance for the help :slight_smile:

.popover {
--h1-size: 15px;
}

does not work :frowning: alternatively, is it possible to just remove the first headline in the popover?

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