Debut theme - Text column with images = change to 2x2

Hello

I am using the debut theme and was wondering if there is a way to change the layout of the Text column with images section. I currently have 6 images with a Buy Now button underneath with 3 on the same line. I wish to change this to just feature 2 on the same line so the user can then see the images better.

Live url is : https://display-sign.co.uk/ by the Our Products section.

Many thanks

Hello, @gwilliams .

Thank you for reaching out and posting this question!

I understand you’re looking to change the number of collections shown in the Text columns with images section for the Debut theme. Since the Debut theme is supported by Shopify, this is something that our Theme Support team can help you with. If your store is subscribed to a plan, then you’re eligible to use the complimentary design time included with your subscription for customizing your theme. While we’re not able to provide account-specific support via the Shopify Community at this time, we’d be happy to assist you with a customization request through live chat, email, or callback. Please visit the Shopify Help Center and log in to your account to create a support request.

I’ve also taken a look at your shop and I think it looks great! I love the designs and there’s a good use of various sections provided by your theme. That being said, would removing the “Powered by Shopify” message in the footer be something that you’re interested in?

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

  1. In your Shopify Admin go to: online store > themes > actions > edit code
  2. Find Asset > theme.scss.liquid or theme.css and paste this at the bottom of the file:
@media (min-width: 749px){
    [id*='shopify-section'] .section-header + .grid[class*='flush']{
    display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
 
}

[id*='shopify-section'] .section-header + .grid[class*='flush'] > .grid__item{
    width: 100% !important;
}
}

Kind regards,
Diego