This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Random result after deleting word

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Random result after deleting word Reply To: Random result after deleting word

#24639
Ernest MarcinkoErnest Marcinko
Keymaster

Hi!

Well, that could get a bit difficult, as the design is not exactly built for this layout, but I think you can get very close to that via custom CSS.
I was able to achieve this, by some custom CSS code.

To replicate that, use this for starters:

.item.asp_isotopic_item,
.item.asp_isotopic_item .asp_item_img {
    border-radius: 8px !important;
}
.item.asp_isotopic_item .asp_content {
    height: 100% !important;
    background: linear-gradient(0deg, rgba(12, 0, 191, 0.76) 0%, rgba(11, 0, 179, 0.46) 28%, rgba(0,212,255,0) 100%) !important;
}

.item.asp_isotopic_item .asp_content {
      display: flex !important;
      align-items: flex-end !important; 
      top: 0 !important;
      margin-top: 0 !important;
      transition: none !important;
}

.item.asp_isotopic_item .asp_content .etc {
    display: none !important;
}

I cannot guarantee, that it will look exactly as you imagine, but it should be very close 🙂