How can I add a horizontal line above my footer and remove menu button on mobile view?

Hello,
I’d like to ask two questions.

Question 1:
I would like to add a white horizontal line above my footer (the same line under the header)
I’d also add this type of line in between sections if thats possible.

Question 2:
In the mobile view it still shows the 3 Lines (Menu button) in the header section right next to the logo. How can I remove those?
I wanna have one page only, so its unnecessary for me to keep it.

Your help is appreciated. Thank you very much.

URL: https://3084f6-2.myshopify.com/?_ab=0&_fd=0&_sc=1

Hi @Rydak

Check this one.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • 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:
footer.footer.color-background-1.gradient.section-sections--20240556982612__footer-padding {
border-top: none !important;
}
.section {
    border-bottom: 5px solid white;
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!