Change the number of thumbnails per row on mobile for 7.1 Portfolio pages set to Grid layout (Simple & Overlay)

The title pretty much says it all.

In this week’s video we’ll be looking at how we can take control of how many images per row display on mobile for Portfolio pages in 7.1, when set to one of the Grid layouts (i.e. Grid: Simple or Grid: Overlay).

So, if this is something you’d like to learn how to modify for your current or future client sites, jump straight to the video to find out!

 

Tutorial

 

Overview & timestamps

Similarly to a previous tutorial where we modified the number of thumbnails per row on mobile for 7.1 blog pages, the key thing about today’s customization is to find out HOW Squarespace is controlling the layout in the first place to know what we can do about it:

  1. 00:00 - Intro

  2. 01:11 - Looking into the original HTML structure and CSS used to create the Grid: Simple portfolio layout
    The first thing we’ll do to achieve our goal will be to dive into the Inspector tool to understand how the original grid is created, when the Grid: Simple option is selected.

  3. 02:16 - Quick tip on knowing when CSS grid has been applied and why it's useful to know
    While looking through the HTML of the portfolio section, I’ll let you know a little secret about CSS grids (i.e. how you can quickly figure out WHAT needs to be modified to make changes such as the thumbnail-per-row one we’re tying to tackle today).

  4. 03:15 - Understanding the existing column-creating value that Squarespace uses
    Once we’re clear on how the current grid is built, we’ll spend a minute breaking down the value that’s being used to see how we can modify it to suit our needs.

  5. 04:28 - Creating the code to modify the number of thumbnails per row for different mobile breakpoints
    Then, we’ll move onto the Custom CSS window to set up our own media query breakpoints, based on the look we want to create for tablets and or mobile devices to avoid any unwanted thumbnail/text “squishiness”.

  6. 09:22 - Modifying the code to make it work with the 7.1 Portfolio Grid: Overlay layout
    Last but not least, I’ll share with you the tiny modification required for the code to work with the portfolio’s Grid: Overlay layout and why it needs to be done.

And that’s it! Now you can create as many breakpoints as you want to build the grid however you need to for your project!

I hope you found this CSS trick useful.

Until next time,

B.


Full code

Grid: Simple

/*CHANGE THE NUMBER OF THUMBNAILS PER ROW ON MOBILE FOR 7.1 PORTFOLIO PAGES SET TO GRID: SIMPLE LAYOUT*/
@media screen and (max-width: 1400px) {
  .portfolio-grid-basic {
    grid-template-columns: repeat(~"3,minmax(0,1fr)");
  }
}

@media screen and (max-width: 800px) {
  .portfolio-grid-basic {
    grid-template-columns: repeat(~"2,minmax(0,1fr)");
  }
}
 

Grid: Overlay

/*CHANGE THE NUMBER OF THUMBNAILS PER ROW ON MOBILE FOR 7.1 PORTFOLIO PAGES SET TO GRID: OVERLAY LAYOUT*/
@media screen and (max-width: 1400px) {
  .portfolio-grid-overlay {
    grid-template-columns: repeat(~"3,minmax(0,1fr)");
  }
}

@media screen and (max-width: 800px) {
  .portfolio-grid-overlay {
    grid-template-columns: repeat(~"2,minmax(0,1fr)");
  }
}
Beatriz Caraballo

Hey! I’m B.

I’m a self-proclaimed Squarespace Customization Geek dedicated to helping fellow designers speed up their workflow, grow their coding skills and enjoy the heck out of coding.

https://beatrizcaraballo.com
Previous
Previous

Adding an accordion block to the details section of Product Pages in Squarespace (7.0 & 7.1)

Next
Next

Moving the mobile menu button in Squarespace 7.1 closer to the links