How to remove the bottom line on the Dawn theme?

There is a line at the bottom of my website and I cant get rid of it. my URL is faisean-dia.myshopify.com

Im using the dawn theme.

@Dirk

1 Like
hr{
display:none !important;
}

@Faiseandia
Add this code in the bottom of the base.css file.

1 Like

Hi @Faiseandia I sent you a collaborator request to help you solve this problem, It should come from Creative Nova / Manuel Moreno.

@manuel_aguilera @Faiseandia

Don’t sent/accept any collaboration requests, there are many fraudulent,

Until you required the most important.
So be careful about it.

1 Like

Okay thank you, I added it to the base.css file but nothing happened

1 Like

@Faiseandia

I see you haven’t added any code. then how it will work.

1 Like

sorry i deleted it because it didnt work, I just added it again and still not working

1 Like

This code will hide all hr in the store, which I don’t think it’s what the OP wants. You should limit it to footer hr {

display: none !important;
}

1 Like

@Faiseandia

hr {
  border: none;
  height: 0.1rem;
  background-color: rgba(var(--color-foreground), 0.2);
  display: block;
  margin: 5rem 0;
  display:none !important;
}

try out this.

1 Like

@Faiseandia
or try out this one.
Go to the password.liquid file.
open it.

And use (ctrl+f ) find ’


’ and delete it.

1 Like

I was not able to find


i just unlocked my site. Im not so worried about the password page. Im more focused on the main pages. I probably should have clarified that at the beginning im sorry

1 Like

@Faiseandia

ok, check i have messaged you PM.

1 Like

@Faiseandia don’t do anything there is no


tag in your footer you have footer top border

just use this code in base.css

.footer {border-top: unset !important;}