All things Shopify and commerce
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
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)
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;
}
This code will only add border on this 2 multicolumn in your homepage.
.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!
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?