Re: How to change the layout of the "Text Columns With Images" section on Combine theme.

Solved

How to change the layout of the "Text Columns With Images" section on Combine theme.

dtffox
Excursionist
13 1 5

Hi, I would like to make all the items on the same row. www.dtffox.com 
Thank you in advance!

Screenshot 2024-01-24 at 7.16.09 AM.pngScreenshot 2024-01-24 at 7.16.40 AM.png

Accepted Solution (1)

Danishshopdev
Shopify Partner
163 17 20

This is an accepted solution.

Hey @dtffox , 

 

Please navigate to theme customized, and click on setting and find custom code  at the end, and paste this code there, the code will work dynamically like if you add more products then it will be start from new row. without disturbing any other properties of the current theme. If my solution worked then accept it.

 

.grid.grid--layout.grid-4.grid-portable-3.grid-lap-2.grid-palm-1.grid--align-items-stretch {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(137px,1fr));
    grid-column-gap: 6px;
    grid-row-gap: 35px;
}

 

output:

Screenshot_43.png

 

code pasting place:
Screenshot_34.png

banned

View solution in original post

Replies 7 (7)

topnewyork
Globetrotter
633 113 134

Hi Dtffox,

Kindly share your store Password.

Thanks

Need a Shopify developer?
Hire us at Top New York Web Design
For Shopify Design Changes | Shopify Custom Coding | Custom Modifications
Subscribe to our youtube channel
dtffox
Excursionist
13 1 5

My apologies, I didn't know it had a password enabled. It should be turned off now. 

 

topnewyork
Globetrotter
633 113 134

Hello there,

In Shopify Admin, navigate to "Edit theme code", then open the "base.css" file and add the following code at the end:

 

.mount-css-slider.grid--align-items-stretch {
display: grid;
grid-template-columns: repeat(8,1fr);
}

 

 
If I managed to help you then, don't forget to Like it and Mark it as Solution!

Need a Shopify developer?
Hire us at Top New York Web Design
For Shopify Design Changes | Shopify Custom Coding | Custom Modifications
Subscribe to our youtube channel

niraj_patel
Shopify Partner
2378 514 511

Hello @dtffox 
password?

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com
dtffox
Excursionist
13 1 5

My apologies, I didn't know it had a password enabled. It should be turned off now. 

Danishshopdev
Shopify Partner
163 17 20

This is an accepted solution.

Hey @dtffox , 

 

Please navigate to theme customized, and click on setting and find custom code  at the end, and paste this code there, the code will work dynamically like if you add more products then it will be start from new row. without disturbing any other properties of the current theme. If my solution worked then accept it.

 

.grid.grid--layout.grid-4.grid-portable-3.grid-lap-2.grid-palm-1.grid--align-items-stretch {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(137px,1fr));
    grid-column-gap: 6px;
    grid-row-gap: 35px;
}

 

output:

Screenshot_43.png

 

code pasting place:
Screenshot_34.png

banned
dtffox
Excursionist
13 1 5

That worked PERFECTLY...thank you!