Hey Chris,
Wonderful, thank you for that.
I found that it was still displaying 3 columns on iPad, not dropping to 2 (portrait, landscape still shows 3 which is fine as the screen width is big enough), so decided to tweak a little to make it work 2 columns in portrait, and also a tweak for iPhone.
/* Responsive */
@media only screen and (min-width: 769px {
/* tablets and desktop */
#testimonials_container {
-moz-column-count: 3;
-moz-column-gap: 0px;
-webkit-column-count: 3;
-webkit-column-gap: 0px;
column-count: 3;
column-gap: 0px;
}
}
@media only screen and (max-width: 768px) {
/* phones */
#testimonials_container {
-moz-column-count: 2;
-moz-column-gap: 0px;
-webkit-column-count: 2;
-webkit-column-gap: 0px;
column-count: 2;
column-gap: 0px;
}
}
@media only screen and (max-width: 640px) and (orientation: portrait) {
/* portrait phones */
#testimonials_container {
-moz-column-count: 1;
-moz-column-gap: 0px;
-webkit-column-count: 1;
-webkit-column-gap: 0px;
column-count: 1;
column-gap: 0px;
}
}
#testimonials_container .result {
display: inline-block;
}
Hope you don’t mind me posting!