When set Max items count at 3, items doesn´t fill the whole container and it shows an empty space at right. We need the items filling the whole container space.
If I set 4 items, on mobile it display 4 thin columns, it´s not responsive!
Please, help. Thanks!
This topic was modified 7 years, 5 months ago by ernestogbusta.
It looks like the container does not respond as it should. In these cases I usually suggest a custom CSS to force a certain width on the elements on different screen sizes, something like this:
@media only screen and (max-width: 768px) {
.rpp_item {
width: 33% !important;
}
}
@media only screen and (max-width: 600px) {
.rpp_item {
width: 50% !important;
}
}
@media only screen and (max-width: 380px) {
.rpp_item {
width: 100% !important;
}
}
Author
Posts
Viewing 2 posts - 1 through 2 (of 2 total)
The topic ‘Plugin no responsive?’ is closed to new replies.