• It will give you columns but unfortunately and contrary to what the author says, the columns are NOT responsive and will only shrink, they will not stack for mobile devices.

    You can look at the CSS file and see there are no media queries, conformation of not being Responsive.

    You have to add something like this to your theme’s CSS file to get this to work for smaller devices:

    @media (max-width: 800px) {
    .column { width: 100%!important;}
    }

    Just don’t use more than 4 columns.

    Works best to install this companion plugin.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Justin Tadlock

    (@greenshady)

    I plan on adding some media queries in the next version, but for a highly-adaptive layout design, it’s going to take a bit more than three lines of CSS. Even then, it’s impossible to account for theme design. The best I can do is attempt to anticipate some common breakpoints used in themes and use those breakpoints in the plugin.

    Thread Starter Chris Borgman

    (@chrisborgman)

    That would be great if you could do that… I tried and failed, would not work with videos, but then I really don’t know what all needs to be done.

    Adding two breakpoints 1023px and around 600px would be a good start. As long as the user could easily change the break points by editing the core CSS file or adding it to their theme’s CSS.

    Because I could not figure out how to add a “tablet” break point I went with this one, which was also suggested by another reviewer.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Not completely Responsive.’ is closed to new replies.