[Support request] Disable Tablet Version Of Responsiveness

Home Forums Support [Support request] Disable Tablet Version Of Responsiveness

Home Forums Support Disable Tablet Version Of Responsiveness

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1544997
    Tobias

    Hi,

    I have some issues on the tablet version of my website, and was thinking if it was possible to “disable” the tablet screen size for responsiveness.

    So basically I want to show the mobile version for screen sizes smaller than desktop.

    How do I do this?

    #1545055
    Leo
    Staff
    Customer Support

    Hi there,

    Any chance you can link us to the site in question?

    You can use the private information field.

    Let me know πŸ™‚

    #1545081
    Tobias

    Hi Leo. I have added a link in the private information field. πŸ™‚

    #1546139
    David
    Staff
    Customer Support

    Hi there,

    if the main issue is the Columns, then you can add this CSS:

    @media (max-width: 1024px) {
        .wp-block-columns {
            flex-wrap: wrap;
        }
        .wp-block-column {
            flex-basis: 100%!important;
        }
    }

    This will force single columns on screens below 1024px. You can adjust that size to fit your needs.

    As a not if you want greater control over your Containers / Columns then you may want to try GenerateBlocks on a future build:

    https://en-gb.wordpress.org/plugins/generateblocks/

    #1546556
    Tobias

    Hi David. Thank you – exactly what I wanted! πŸ™‚

    #1546577
    David
    Staff
    Customer Support

    Glad to be of help

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.