Container sizes on mobile

This topic contains 4 replies, has 2 voices, and was last updated by Gmorello55 Gmorello55 6 years, 4 months ago.

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #15815
    Gmorello55
    Gmorello55
    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 Marcinko
    Ernest 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:

    @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;
        }
    }

    The plugin should adopt better now for smaller screen devices.

    Best,
    Ernest Marcinko

    If you like my products, don't forget to rate them on codecanyon :)


    #15821
    Gmorello55
    Gmorello55
    Participant

    That works! Thanks much!

    #15822
    Ernest Marcinko
    Ernest Marcinko
    Keymaster
    You cannot access this content. Best,
    Ernest Marcinko

    If you like my products, don't forget to rate them on codecanyon :)


    #15824
    Gmorello55
    Gmorello55
    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.