Dawn Theme- How To Change Border Line Color Before The Footer?

Trying to figure out how to change the line color before the footer to black just like how it is at the top. Website domain is goodwrittenusa@gmail.com.

Hi @Jamai1017 ,

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/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:
  4. And Save.
.site-footer__hr {
    border-bottom: 1px solid black;
}

Result:

i hope it help.

Didn’t work

Can you try this one again?

.site-footer__hr {
    border-bottom: 1px solid black !important;
}

There is another code that over rides with it.

I hope it help.

Worked Thanks. :slightly_smiling_face:

Welcome. :blush: