This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Container sizes on mobile

#15818
Ernest MarcinkoErnest Marcinko
Keymaster

Hi,

Thank you very much for the proper details, it helps me a lot!

It is possible. The plugin should automatically adjust the size, however in some cases it can fail. For that, I have added the following custom CSS to the plugin options:

[html]@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;
}
}[/html]

The plugin should adopt better now for smaller screen devices.