Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1262552

    Hey, do you know why there is a margin around my portfolio grid on mobile http://www.amyteslin.com

    #1262687

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.