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

Reply To: Isotopic Results (mobile and desktop)

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Isotopic Results (mobile and desktop) Reply To: Isotopic Results (mobile and desktop)

#46995
Ernest MarcinkoErnest Marcinko
Keymaster

Hi,

1. Just checked and it looks okay on every browsers, I see 3 rows as expected. Make sure to reload the browsers at the given size (not resize from original).

2. I suggest custom CSS for that:

@media only screen and (max-width: 640px) {
   .asp_r a.asp_res_url {
       font-size: 18px;
   }
}

3. You mean that if there are multiple lines with the title? You could basically force the title to a single line:

   .asp_r a.asp_res_url {
       white-space:nowrap;
       text-overflow: ellipsis !important;
       overflow: hidden;
   }
   .asp_r h3 {
       width: 100%;
   }