• Hi Scott, great plugin! I would like to display four thumbnails in 2 rows of 2. It displays the thumbnails in 4 rows of 1, although there seems to be enough space for 2 on a row. Do you have a solution?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author Scott (@scottsweb)

    (@scottsweb)

    Hi

    You will need to add some custom CSS. Something like:

    
    .null-instagram-feed li {
        float: left;
    }
    

    Will probably make a start.

    It may be easily accomplished with CSS grid too:

    
    .null-instagram-feed {
      display: grid;
      grid-gap: 10px;
      grid-template-columns: repeat(2, 50%);
    }
    

    Both are untested but should get you started.

Viewing 1 replies (of 1 total)
  • The topic ‘Display thumbnails 2×2’ is closed to new replies.