Moving backlink pane to top of note

What I’m trying to do

I was looking for a way to move the backlinks pane from the bottom of the note to the top. I feel it fulfills a role similar to breadcrumbs, which i can’t get working right. Is this possible? with css perhapsß I don’t have any programming knowledge.

UPDATE:

This is the CSS i came up with, its janky:

.cm-sizer {
    display: flex; 
    flex-direction: column; 
}

.inline-title {
    order: 1; 
}
.metadata-container {
    order: 2; /* Metadata should come third */
}
.embedded-backlinks {
    order: 3; 
    position: static;
    overflow-y: scroll; /* Enable vertical scrolling */
    height: 300px;
    .tree-item-icon {
        padding: 10px 85px; /* Increase the padding to make the area larger */
    }
        
}


/* Make sure any other note content stays in order */
.cm-contentContainer {
    order: 4; 
}

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