Tagged: space between rows/columns
Hello, I am working on a site and in mobile view, the space between the reviews in mobile view it too great when the stack. How can I reduce the space between the first/second and thrid/fourth review? Please see the link below. Reviews are at the bottom of the page. Please view in mobile view.
Thanks,
Keith
Hey Keith,
Thank you for the inquiry.
You can use the following css code to pull the third item upward, closer to the second testimonial item.
@media only screen and (max-width: 767px) {
/* Add your Mobile Styles here */
#top .avia-testimonial-wrapper.av-k16l1fui-f0740c72dd84258aeed814f5e05ea0db {
padding: 0;
margin-top: -50px;
}
}
Best regards,
Ismael