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

Plugin no responsive?

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #20523
    ernestogbustaernestogbusta
    Participant

    Hi, we have a problem with Related Post Pro.

    When set Max items count at 3, items doesn´t fill the whole container and it shows an empty space at right. We need the items filling the whole container space.

    If I set 4 items, on mobile it display 4 thin columns, it´s not responsive!

    Please, help. Thanks!

    • This topic was modified 7 years, 5 months ago by ernestogbustaernestogbusta.
    #20530
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    It looks 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: 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;
        }
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Plugin no responsive?’ is closed to new replies.