Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Isotopic Results (mobile and desktop) › Reply To: Isotopic Results (mobile and desktop)
February 19, 2024 at 3:23 pm
#46995
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%;
}