Home › Forums › Product Support Forums › Related Posts Pro for WordPress Support › Container sizes on mobile › Reply To: Container sizes on mobile
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.