mandiwise / isotope-posts

[RETIRED] This plugin allows you to use Metafizzy's Isotope javascript plugin to display feeds of WordPress posts with a simple shortcode. Works with custom post types and custom taxonomies too.
GNU General Public License v2.0
55 stars 17 forks source link

1 column on mobile #16

Closed winstonford closed 9 years ago

winstonford commented 9 years ago

Hi Mandi,

Excellent plug-in. I am trying to have the isotope view go from three columns on a wide display to one column on mobile.

Any tips? Thanks!

winstonford commented 9 years ago

In case anyone else is on the path, I added rules below to my css and it looks ok:

iso-loop li {

width: 100%;

}

@media all and (min-width: 480px) {

iso-loop li {

    width: 30.5%;
}

}

mandiwise commented 9 years ago

Glad you were able to sort this out, thanks for posting your solution.