Add line between section

Hi ,

i want to add line after my collection section also before the footer like the photo

im using dawn theme

how to do it ,

here my website link :https://b6448a-44.myshopify.com/

Hi @ai41

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 “theme. Liquid” file. Find the tag and paste the code below before the tag.

{% if template.name == 'collection' %}

{% endif %}

And Save.

Result:

Note: This will only show on the collection page.

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!

thank you sir for your time , but it did not work , i want it also to show on all pages

Oh, i thought only on the collection pages.

Try this one then.

  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:
.newsletter.center {
    border-top: 1px solid black;
    border-bottom: 1px solid black;
  }
  • And Save.

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!

thank you its working