Hey, do you know why there is a margin around my portfolio grid on mobile http://www.amyteslin.com
Hey amyteslin,
This seems to be the code that causes the issue on mobile:
@media only screen and (max-width: 480px) {
.responsive #top #wrap_all .grid-sort-container .grid-entry {
width:48%!important;
float: left;
}
}
Try to replace it with:
@media only screen and (max-width: 480px) {
.responsive #top #wrap_all .grid-sort-container .grid-entry {
width:50%!important;
float: left;
}
}
Best regards,
Nikko