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

Reply To: Mobile responsive?

#24851
Ernest MarcinkoErnest Marcinko
Keymaster

Hi!

It sounds 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: 25% !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;
    }
}