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

Container sizes on mobile

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #15815
    Gmorello55Gmorello55
    Participant

    Is it possible to make the containers just a tad wider on mobile (on desktop they are fine)? They are so slim on my mobile device that it’s difficult to read the text.

    Thanks!

    #15818
    Ernest MarcinkoErnest Marcinko
    Keymaster

    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.

    #15821
    Gmorello55Gmorello55
    Participant

    That works! Thanks much!

    #15822
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

    #15824
    Gmorello55Gmorello55
    Participant

    That’s fine and thanks so much for checking in on the weekend!

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Container sizes on mobile’ is closed to new replies.