Second question for today and this one is theme related (I hope :p). It’s about the alignment of the testimonial grid when the testimonials don’t have the same amount of lines. Is it possible to have the names (end of testimonial) on a straight alignment relative to eachother?
I attached an image below as to how it is now (and what I don’t want).
Hey xepyonx!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.home .avia-testimonial-content {
min-height: 100px;
}
Cheers!
Yigit
Hi!
Please add following code to Quick CSS as well and adjust as needed
@media only screen and (max-width: 1024px) and (min-width: 990px) {
.home .avia-testimonial-content {
min-height: 150px; }}
@media only screen and (max-width: 989px) and (min-width: 769px) {
.home .avia-testimonial-content {
min-height: 170px; }}
@media only screen and (max-width: 768px) and (min-width: 481px) {
.home .avia-testimonial-content {
min-height: 200px; }}
It will target different screen sizes separately, you may need to adjust the values
Cheers!
Yigit