This topic contains 1 reply, has 2 voices, and was last updated by Ernest Marcinko 3 years, 6 months ago.
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic.
Home › Forums › Product Support Forums › Related Posts Pro for WordPress Support › Mobile responsive?
This topic contains 1 reply, has 2 voices, and was last updated by Ernest Marcinko 3 years, 6 months ago.
Is this plugin mobile responsive? It looks like the only option is 4 columns per row for related posts. Looks great on desktop but on mobile elements are too close together and unreadable because it’s still 4 columns across on my cell phone.
I gave you a sample link to check on your phone. If there’s even custom CSS for 2 columns I’d put that in for the desktop and if it would change the mobile then that would be perfect for me.
I’ve checked the knowledge center and instructions and cannot find a way to change the number of columns.
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;
}
}
Best,You must be logged in to reply to this topic.
Cookie | Duration | Description |
---|---|---|
cookielawinfo-checkbox-analytics | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics". |
cookielawinfo-checkbox-functional | 11 months | The cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional". |
cookielawinfo-checkbox-necessary | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary". |
cookielawinfo-checkbox-others | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other. |
cookielawinfo-checkbox-performance | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance". |
viewed_cookie_policy | 11 months | The cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data. |