# In-app filter message for no matching results

**URL:** https://community.glideapps.com/t/in-app-filter-message-for-no-matching-results/74679
**Category:** Ask for Help
**Created:** [July 7, 2024, 5:59pm UTC](https://community.glideapps.com/t/in-app-filter-message-for-no-matching-results/74679 "2024-07-07T17:59:29Z")
**Posts on this page:** 1
**Showing post:** 7

<div class="post-metadata">

### Author: ![Himaladin](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/himaladin/32/71023_2.png) [@Himaladin](https://community.glideapps.com/u/Himaladin)
#### Post date: [July 8, 2024, 1:33am UTC](https://community.glideapps.com/t/in-app-filter-message-for-no-matching-results/74679/7 "2024-07-08T01:33:20Z")

</div>

@gannonatwork, next to the collection component (class name: `collectionName`), you need to add a text/rich text component and name its class `emptyMsg`.

```auto
#page-root:has(.collectionName > div > .component-root > div > div > div:nth-child(2)) [data-testid="wire-container-emptyMsg"]{
display:none;
}

/*This second code can be removed because the component is essentially visible.*/
#page-root:not(:has(.collectionName > div > .component-root > div > div > div:nth-child(2))) [data-testid="wire-container-emptyMsg"]{
display:block;
}

```

---

_[View the full topic](https://community.glideapps.com/t/in-app-filter-message-for-no-matching-results/74679)._
