Forums › Forums › Search & Filter Pro › Changing the design of the search form
Tagged: V3
- This topic has 12 replies, 2 voices, and was last updated 4 years, 3 months ago by Trevor.
-
Trevor(Private) August 12, 2020 at 12:15 pm #255779
To remove the search box on the fields, change them back to normal dropdown selects, and see this post (some of the suggestions I think you have done already):
https://support.searchandfilter.com/forums/topic/css-dropdown-option-active-hover/#post-249903
As to the font color, there should be some CSS snippets in this forum search that will help you:
https://support.searchandfilter.com/forums/search/searchandfilter+data-sf-form-id+color+select2/
I am not sure what you mean by “I would also like the arrow like I have right now instead of the ‘plus’ and ‘minus’ signs.” You already have dropdown arrows?
Trevor(Private) August 12, 2020 at 4:57 pm #255846To me it does not look like you applied this JavaScript code to the page:
<script> (function ( $ ) { $(document).on("sf:ajaxfinish", ".searchandfilter", function(){ $('select.sf-input-select').select2({minimumResultsForSearch: -1}); }); }(jQuery)); jQuery(document).ready(function($){ $('select.sf-input-select').select2({minimumResultsForSearch: -1}); }); </script>
Which would apply select2 to those boxes, without the search box at the top of each.
-
AuthorPosts