Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Search Listing Above Search Bar › Reply To: Search Listing Above Search Bar
April 2, 2025 at 11:14 am
#53571
Keymaster
Hi,
Well, there is no feature for that as of yet, but it might be possible via using the search and the results shorcodes and some custom CSS:
1. Place the results shorctcode or block before the search shortcode, so it looks something like this:
[wpdreams_ajaxsearchpro_results id=1 element='div']
[wd_asp id=1]
This will place the results container above the search.
2. Then use this custom CSS to force the correct position:
div[id*="wpdreams_asp_results_"] {
position: relative;
}
.asp_r {
bottom: 0 !important;
top: auto !important;
left: auto !important;
position: absolute !important;
}
It should place the search results floating above the search input.