How can I occult the title using query

What I’m trying to do

I have a list with tag #Tareas using query but I don’t want to see the title “tag:#Tareas”, how can I hide this title?. Thanks

tag:#Tareas

There is search settings
Näyttökuva 2023-7-15 kello 0.32.01
that you can use to collapse the results.

I see a few options. You could hide the header until hover:

.internal-query .internal-query-header {
    opacity: 0; }

.internal-query .internal-query-header:hover {
    opacity: 1; }

CleanShot 2023-07-15 at 10.30.28

Or just get rid of it:

.internal-query .internal-query-header {
    display: none }

1 Like

Thanks!!! :+1:

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