Quick Find bar finds only first instance?

User Help for Mozilla Firefox
Post Reply
semigeek
Posts: 322
Joined: April 16th, 2014, 8:54 pm
Location: Colorado

Quick Find bar finds only first instance?

Post by semigeek »

I've always used ^F to bring up the findbar on a webpage, but have been trying out the "just start typing" feature. Unfortunately it only finds a first instance, there's no arrow for the next. Has it always been this way? Is there a config option to change it?
User avatar
therube
Posts: 21714
Joined: March 10th, 2004, 9:59 pm
Location: Maryland USA

Re: Quick Find bar finds only first instance?

Post by therube »

F3.
(And Shift+F3.)
Fire 750, bring back 250.
Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.19) Gecko/20110420 SeaMonkey/2.0.14 Pinball CopyURL+ FetchTextURL FlashGot NoScript
semigeek
Posts: 322
Joined: April 16th, 2014, 8:54 pm
Location: Colorado

Re: Quick Find bar finds only first instance?

Post by semigeek »

Thanks! Still not sure how useful I'll find QF, but that helps.
User avatar
dickvl
Posts: 54161
Joined: July 18th, 2005, 3:25 am

Re: Quick Find bar finds only first instance?

Post by dickvl »

Note the you can use CSS rules in userChrome.css to make those other controls visible on the Quick Find bar.

Code: Select all

.findbar-container > *, .findbar-container > hbox > * {display:-moz-box}
https://www.userchrome.org/how-create-u ... e-css.html

In Firefox 69 and later you need to set toolkit.legacyUserProfileCustomizations.stylesheets to true on the about:config page to enable userChrome.css and userContent.css in the chrome folder.

https://support.mozilla.org/en-US/kb/ab ... or-firefox
semigeek
Posts: 322
Joined: April 16th, 2014, 8:54 pm
Location: Colorado

Re: Quick Find bar finds only first instance?

Post by semigeek »

Thanks, that's great. Since all I really wanted was to see the [v] [^] buttons, not the checkboxes, I've used this. The QF bar remains visible as long as I'm clicking them. and the count ("2 of 11") displays too.

Code: Select all

.findbar-container > hbox > toolbarbutton {display: -moz-box}
Post Reply