Clint Posted November 10, 2017 Report Share Posted November 10, 2017 I have a long search form with a number of optional checkboxes that are necessary when needed, but infrequently used. Is there a way I can place an additional search button at the top of the page so users don't have to scroll to the bottom to perform a search? Thanks! Quote Link to comment Share on other sites More sharing options...
1 Mathilda Posted November 13, 2017 Report Share Posted November 13, 2017 On 11/10/2017 at 3:29 PM, Clint said: I have a long search form with a number of optional checkboxes that are necessary when needed, but infrequently used. Is there a way I can place an additional search button at the top of the page so users don't have to scroll to the bottom to perform a search? Thanks! try placing the following code in an html block above all the fields: <input type="submit" name="searchID" id="searchID1" value="Search" class="cbSearchButton"> Clint 1 Quote Link to comment Share on other sites More sharing options...
1 Mathilda Posted November 20, 2017 Report Share Posted November 20, 2017 On 11/17/2017 at 3:08 PM, telepet said: The above code works wonderfully, and enables a little more flexibility when it comes to layout. I wonder, is it possible to do hide the default "Search" button? I'm attempting to incorporate a search page where there is a "Reset Search" button next to a "Search" button. You may hide a standard button using the following code in the header of the search page: <style> #searchID { display:none; } </style> telepet 1 Quote Link to comment Share on other sites More sharing options...
0 telepet Posted November 17, 2017 Report Share Posted November 17, 2017 The above code works wonderfully, and enables a little more flexibility when it comes to layout. I wonder, is it possible to do hide the default "Search" button? I'm attempting to incorporate a search page where there is a "Reset Search" button next to a "Search" button. Quote Link to comment Share on other sites More sharing options...
0 telepet Posted November 20, 2017 Report Share Posted November 20, 2017 3 minutes ago, Mathilda said: You may hide a standard button using the following code in the header of the search page: <style> #searchID { display:none; } </style> This works perfectly. Thanks @Mathilda. Quote Link to comment Share on other sites More sharing options...
0 Mathilda Posted November 20, 2017 Report Share Posted November 20, 2017 Just now, telepet said: This works perfectly. Thanks @Mathilda. You're welcome! Quote Link to comment Share on other sites More sharing options...
0 cheonsa Posted March 26 Report Share Posted March 26 Hi! Just to add, you can also hide the container of the Search button using this style <style> input[class*="cbSearchButtonContainer"]{ display:none !important; } </style> Quote Link to comment Share on other sites More sharing options...
Question
Clint
I have a long search form with a number of optional checkboxes that are necessary when needed, but infrequently used.
Is there a way I can place an additional search button at the top of the page so users don't have to scroll to the bottom to perform a search?
Thanks!
Link to comment
Share on other sites
6 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.