Forums › Forums › Search & Filter Pro › Placeholder
Tagged: css, Font Awesome, placeholder, Search Icon
- This topic has 10 replies, 2 voices, and was last updated 7 years, 5 months ago by Anonymous.
-
Anonymous(Private) May 25, 2017 at 6:16 am #111145
I’m designing a project that has to comply with provided PSDs as much as possible. One of the requirements is a magnifying glass as a search placeholder within the textbox. I used a unicode icon to comply as much as possible without breaking plugin conventions, but the sponsor wasn’t satisfied. I need to be able to use a specific icon and need guidance on how accomplish through a CSS edit.
Anonymous(Private) May 25, 2017 at 4:53 pm #111310I have tried Better FontAwesome plugin already (https://snag.gy/eD50XT.jpg) and that icon using both fa-search and then the actual html values, but it turns into an empty square (https://snag.gy/eudryf.jpg) and your plugin converts it to that in the admin (https://snag.gy/yrSm9s.jpg). So any advice on how to accomplish this would be great.
Trevor(Private) May 30, 2017 at 10:02 am #111911Apologies for the delay in responding. Your last reply arrived after we closed our support for the weekend (our normal support hours are Monday – Friday 10am – 5pm GMT) and Monday was a national holiday in the UK.
The CSS for the placeholder (in this case to make its font family font awesome) is a bit complicated to supported most browsers:
.sf-field-search .sf-input-text::-webkit-input-placeholder { font-family: 'FontAwesome'; } .sf-field-search .sf-input-text::-moz-placeholder { font-family: 'FontAwesome'; } .sf-field-search .sf-input-text:-ms-input-placeholder { font-family: 'FontAwesome'; } .sf-field-search .sf-input-text:-moz-placeholder { font-family: 'FontAwesome'; }
Anonymous(Private) May 30, 2017 at 6:31 pm #112096Unfortunately this solution didn’t work either so the solution I came up with was to copy the code produced by your search widget and then alter the placeholder attribute with the following solution…
<form data-sf-form-id=’276′ data-is-rtl=’0′ data-maintain-state=” data-results-url=’/results’ data-ajax-url=’/?sfid=276&sf_action=get_data&sf_data=results’ data-ajax-form-url=’/?sfid=276&sf_action=get_data&sf_data=form’ data-display-result-method=’shortcode’ data-use-history-api=’1′ data-template-loaded=’0′ data-lang-code=” data-ajax=’1′ data-ajax-data-type=’json’ data-ajax-target=’#search-filter-results-276′ data-ajax-pagination-type=’normal’ data-ajax-links-selector=’.pagination a’ data-update-ajax-url=’1′ data-only-results-ajax=’1′ data-scroll-to-pos=’0′ data-init-paged=’1′ data-auto-update=’1′ action=’/results’ method=’post’ class=’searchandfilter’ id=’search-filter-form-276′ autocomplete=’off’ data-instance-count=’1′>
- <li class=”sf-field-search” data-sf-field-name=”search” data-sf-field-type=”search” data-sf-field-input-type=””> <label><input placeholder=”” style=”font-family:Arial, FontAwesome” name=”_sf_search[]” class=”sf-input-text” type=”text” value=”” title=””></label>
</form>
-
AuthorPosts