How to hide a logo on the home page using a simple theme?

Hi,

On our website (https://wozkat.myshopify.com), we would like the logo to be hidden on the home page only. Is there some CSS we can change or add for this to happen?

Also, I removed our announcement bar but I still see a red line at the very top of the page where the announcement bar used to be.. Is there a way to get rid of this?

Password is creoff

Thank you :slightly_smiling_face:

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset >theme.scss.css and paste this at the bottom of the file:
.template-index header.site-header.grid.medium-up--grid--table {
display: none!important;
}

.page-border {
background-color: inherit!important;
}

hello @al3cuz

please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

.template-index header.site-header.grid.medium-up--grid--table {
display: none !important;
}
   .page-border{
        background-color: transparent;
    }

Thank you @Kinjaldavra and @ZestardTech , that is fantastic.

Thank you for your response. It’s good to know that it’s worked for you. Kindly feel free to get back to me if you need any further assistance.