• Resolved msimons11

    (@msimons11)


    I am currently using the beta version of WP tiles, and it is working wonderfully for a standard display, a smaller display, and on mobile. I have viewed my website on a much larger display, and I found that my entire site will adjust accordingly, but the grid on my main page will not expand.
    Is there a way to set an infinite limit for the grid? So it will increase in size as the display size increases?

    Here is my website: http://www.linearcomputing.com
    Thank you!

    https://wordpress.org/plugins/wp-tiles/

Viewing 1 replies (of 1 total)
  • Plugin Author Mike Martel

    (@mike_cowobo)

    Hi @msimons11,

    The width of WP Tiles is limited by your theme. So the container of your body text is what determines how wide WP Tiles can go.

    I had a look at your site, and there is actually a way of breaking WP Tiles out of its container, using absolute positioning. No warranty, but adding this to your (child)theme should do the trick:

    .wp-tiles-grid {
        position: absolute;
        left: 0px;
        right: 0px;
    }

    Cheers,
    Mike

Viewing 1 replies (of 1 total)

The topic ‘Max Grid Size’ is closed to new replies.