Reply To: Container sizes on mobile

#15818
Ernest Marcinko
Ernest 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:

@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;
    }
}

The plugin should adopt better now for smaller screen devices.

Best,
Ernest Marcinko

If you like my products, don't forget to rate them on codecanyon :)