Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › can't see the content if position of input search is bottom=0 › Reply To: can't see the content if position of input search is bottom=0
October 10, 2019 at 12:21 pm
#24288
Keymaster
Hi,
Well, for the floating results there is no way of changing that – only the snapping, but not the vertical alignment. Probably the closest thing you could do, is to use the results shortcode, so the results are displayed on a different position as they are now.
Alternatively, you can do a custom CSS to sort-of force the results container above the search bar, with a negative top margin, and fixed height:
.asp_r {
margin-top: -400px !important;
height: 350px !important;
}