Happening now! Shopify Community AMA: Building a Marketing Budget with 2H Media | Ask your marketing budget questions now!

How to add borders in between columns for text column with images?

Solved

How to add borders in between columns for text column with images?

smithexotic
Visitor
2 0 0

Hi,

 

I'm currently piloting the Startup theme, and am trying to figure out if its possible to add custom css to the section to create some dividers between column 1 &2 and column 2& 3.

 

My first screenshot is the original, and the second is what I was envisioningCapture-2025-03-02-115219.pngScreen Shot 2025-03-02 at 11.53.46 AM.png.

 

Thank you!

Accepted Solution (1)

EBOOST
Shopify Partner
1359 340 410

This is an accepted solution.

Hi @smithexotic,

May I suggest to update code these steps:

1. Go to Store Online-> theme -> edit code

EBOOST_1-1672356985580.png

2. Assets/theme.css
3. Add code below to end of file -> You can replace red color with your color.

.module-inner.module-inline-items .module-inline-item {
	border-left: 2px solid red;
	border-right: 2px solid red;
}
.module-inner.module-inline-items .module-inline-item:last-child,
.module-inner.module-inline-items .section-title + .module-inline-item:nth-child(2),
.module-inner.module-inline-items .module-inline-item:first-child {
	border: none;
}

 

- Hope can help. If you find my reply helpful, please hit Like and Mark as Solution
- Need a Shopify developer? Contact email: eboost10@gmail.com
- Visit our site: https://www.eboosttech.net to view and download shopify themes and magento2 extensions free. Github.com/eboost10
- ❤❤DONATE ❤❤Coffee tips

View solution in original post

Replies 2 (2)

EBOOST
Shopify Partner
1359 340 410

This is an accepted solution.

Hi @smithexotic,

May I suggest to update code these steps:

1. Go to Store Online-> theme -> edit code

EBOOST_1-1672356985580.png

2. Assets/theme.css
3. Add code below to end of file -> You can replace red color with your color.

.module-inner.module-inline-items .module-inline-item {
	border-left: 2px solid red;
	border-right: 2px solid red;
}
.module-inner.module-inline-items .module-inline-item:last-child,
.module-inner.module-inline-items .section-title + .module-inline-item:nth-child(2),
.module-inner.module-inline-items .module-inline-item:first-child {
	border: none;
}

 

- Hope can help. If you find my reply helpful, please hit Like and Mark as Solution
- Need a Shopify developer? Contact email: eboost10@gmail.com
- Visit our site: https://www.eboosttech.net to view and download shopify themes and magento2 extensions free. Github.com/eboost10
- ❤❤DONATE ❤❤Coffee tips
smithexotic
Visitor
2 0 0

thank you so much, this was perfect!