Divider lines between sections

Topic summary

A user seeks help adding thin divider lines between specific sections on their Shopify store, particularly above and below the “Why Choose US?” section and around the bottom section.

Initial Solution:

  • Another user provides CSS code targeting the .multicolumn class to add top and bottom borders
  • The code successfully adds 1px solid black lines to the desired sections

Follow-up Issue:

  • The original poster reports that previous CSS code in base.css (making text wider in one multicolumn) now affects all multicolumn sections unintentionally
  • They need the styling to apply only to the specific “Why Choose US?” section

Refined Solution:

  • A more targeted CSS approach is provided using section-specific class names (.section-template--18094115750084__multicolumn_9FJhrW-padding and similar)
  • This limits the border styling to only two specific multicolumn sections on the homepage
  • Additional code is offered to apply max-width styling exclusively to the “Why Choose US?” multicolumn using its unique class identifier

The discussion includes code snippets and screenshot references showing the implementation results.

Summarized with AI on November 2. AI used: claude-sonnet-4-5-20250929.

Hi all,

I want to know how to add thin lines to seperate specific sections.

Thanks in advance

1 Like

Hi @Mohd01

Please, share your store URL. Also, share the specific sections that you like to add thin lines. Thanks!

URL: https://cngdxq-tk.myshopify.com/
I want the lines to be on the bottom and above the Why Choose US? and above and at the bottom of the last section (the one under the reviews section)

Hi @Mohd01 ,

You can follow the steps here:

Step 1: Shopify admin > Online store > Customize: https://prnt.sc/XQ6IDB99kUCd
Step 2: From the left menu > Theme settings > Open Custom CSS: https://prnt.sc/ypQ7nly2wv27
Step 3: Copy the code below and paste it there

Here is the code for step 3:

.multicolumn {
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}

Here is the result:

Please let me know if it works!

Best,
Daisy

Hey! It does work, thank you! However I have one more question if you don’t mind! I previously added a code in the base.css file for the multicolumn above which is “Why Choose US?” to make the text wider and fill out the whole section but that code now applies to all multicolumns I add after which I don’t want to happen I only want that code to affect that specific multicolumn, any idea how to fix that?

Thanks for the info, try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.section-template--18094115750084__multicolumn_9FJhrW-padding, .section-template--18094115750084__multicolumn_466QtX-padding {
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}
  • And Save.

  • Result:

  • This code will only add border on this 2 multicolumn in your homepage.

  • And if you only want to max-width the “why choose us” multicolumn replace the code you used with this code below.

.page-width.section-template--18094115750084__multicolumn_466QtX-padding {
    max-width: 100% !important;
}
  • And Save.

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!