I want to see search results with solely the bullet contents. I need to fit more search results on the screen, and I often don’t care where they came from in the hierarchy.
The current Flat Search is a step in the right direction, in that it omits the parent items, but it still shows the “context” of the bullet.
e.g. Flat search shows this:

I want to see search results like this:

1 Like
Lets try CSS. Hide the breadcrumb.
.flat-search-breadcrumb {
display: none;
}
As always, your proficiency with CSS is impressive. Thank you. The issue with CSS here is that sometimes the context is useful. I need to be able to view the search results both ways sometimes.
Hmmm… I wonder if I could set up a second, free account, without the CSS, and share my data with that account. Then, when I need the context, I’d just search with that account.
We could make it re-appear on hover
.flat-search-breadcrumb {
display: none;
}
.flat-search-result:hover .flat-search-breadcrumb {
display: inline-block;
}
2 Likes
Or if you’d rather re-appear at the top, so the results dont move around
.flat-search-breadcrumb {
display: none;
}
.flat-search-result:hover .flat-search-breadcrumb {
display: inline-block;
position: absolute;
top:-40px;
left: -30px;
background-color: yellow;
}
2 Likes