Hi Rui, I did indeed, I managed to get it working myself. I did it like this:
1. Apply a width of 50% to the .filterable-items .portfolio-item
class. This resizes everything as expected.
.filterable-items .portfolio-item {
width: 50%;
}
2. The issue seemed to be with each li
being positioned absoluted with a set top
and left
position. I overrided all of this by doing the following:
li.clearfix.portfolio-item.col-sm-4.masonry-item.masonry-gallery-item{
position: inherit !important;
float: left;
display: inine-block !important;
top: 0 !important;
left: 0 !important;
}
Those two definitions wrapped in the @media only screen and (max-width: 479px)
within the responsive.css
file did the trick. You can mark this issue as resolved.
Thanks,
Jack