Not completely Responsive.
-
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.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Not completely Responsive.’ is closed to new replies.