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
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
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; }
Or just get rid of it:
.internal-query .internal-query-header {
display: none }
Thanks!!!
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.