3 blog posts in one Row on only one blog - Crave Theme

I’d like to change some code to display 3 blog posts in a row, rather than just two as it currently is (see screenshot attached). But only under the blog NUESTROS TOSTADORES as titled in the header of the site.

Website is: https://thethirdwave.mx/

Can someone help me do this? TIA!

@grindlery you should have option in customizer.

Nope, doesn’t seem like there’s the option.

Hey @grindlery ! You will need to add the following code snippet to the very bottom of the theme.css file.

If this fixes your issue, please mark my reply as a solution.

@media screen and (min-width: 750px) {
  .blog-articles {
      grid-template-columns: 1fr 1fr 1fr;
  }
}

@grindlery , do this to fix it in 20 seconds:

  1. In your Shopify Admin go to: online store > themes > actions > edit code
  2. Find Asset >base**.css** and paste this at the bottom of the file:
@media (min-width: 750px) {
  .main-blog .blog-articles {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      grid-gap: 20px;
  }
}

This will affect exclusively the blog pages.

If it helps you please click on the “like” button and mark this answer as a solution!

Thank you.

Kind regards,
Diego

3 Likes

Awesome, thanks Diego! That worked perfectly.