Home › Forums › Product Support Forums › Related Posts Pro for WordPress Support › Mobile responsive? › Reply To: Mobile responsive?
December 2, 2019 at 2:57 pm
#24851
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;
}
}