Develop With Faith
September 20, 2026

How to Make Ctrl+F Work on Your Church FAQ Page in 2026

Someone opens your church's FAQ page looking for one word — say "childcare" — and hits Ctrl+F. The browser scans what it can see, finds nothing, and tells them there are no matches. The answer is there. It is tucked inside a collapsed accordion three sections down that Ctrl+F was never allowed to look inside.

This is one of the quieter accessibility failures on ministry websites, and there is now a one-attribute fix that works in every major browser.

Modern HTML has a small value for the hidden attribute: until-found. Set <div hidden="until-found"> on the answer inside an accordion and the browser hides it from view the way a normal hidden element does. But the moment someone uses Ctrl+F, the browser also scans the hidden text. When it finds a match, it fires a beforematch event, expands the element automatically, and scrolls the visitor to the exact word they searched for.

You get the tidy accordion your designer wanted, and the "find" behavior a visitor actually expects.

The old pattern — display: none inside every accordion answer — hides the content from find-in-page entirely. It also hides it from most in-page search widgets and, in some cases, from screen readers. hidden="until-found" is the modern replacement, and it plays well with <details> too. If you already use <details><summary> for FAQs, you do not need to add anything; the browser handles it. If your accordions are custom JavaScript, this is the piece that quietly fixes them.

Browser support is now universal in the current version of Chrome, Edge, Firefox, and Safari. Older browsers simply keep the content collapsed the way they do today — nothing breaks for anyone.

There is a small ministry lesson in it. A church that took the time to make Ctrl+F work is a church that pictured a real person, on a real phone, hunting for one real answer. That kind of quiet care tends to show up everywhere on the sites we love to build.

If your church has an FAQ page, a class schedule, or a sermon archive with collapsed sections and you would like search-in-page to actually find what visitors are looking for, we would be glad to take a look.

← Back to all posts