Hi all,
I want to know how to add thin lines to seperate specific sections.
Thanks in advance
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:
.multicolumn class to add top and bottom bordersFollow-up Issue:
base.css (making text wider in one multicolumn) now affects all multicolumn sections unintentionallyRefined Solution:
.section-template--18094115750084__multicolumn_9FJhrW-padding and similar)The discussion includes code snippets and screenshot references showing the implementation results.
Hi all,
I want to know how to add thin lines to seperate specific sections.
Thanks in advance
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.
.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;
}
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!