How can I merge two logos into one on my website header?

Can someone assist me on how to make my logo on the header to be one, when we publish our website it’s showing 2 logo on the header, already tried possible things on my end but can’t resolve it.

Hi @UFC-elan123 ,

Please share your store URL and if your store is password protected then please provide password too.

So that we can help you.

Thank you.

Hi, here’s our store URL: https://elan-shop.com/

Hi @UFC-elan123 ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.scss->paste below code at the bottom of the file:
.site-header__logo img:first-child {
    display: none !important;
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

I tried it and it removes the other logo but I had another issue, after I added the code it disappear the other logo on the header however the other logo left in the middle overlaps the text or images in the website whenever I click a product to browse, see photo attached. thanks

HI @UFC-elan123 ,

Thanks you for reply.

You try add more below code in theme.scss file:

@media (min-width: 1025px) {
body:not(.template-index) #PageContainer {
    padding-top: 50px;
}
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

Yes, it works! Thank you so much for your help! :slightly_smiling_face: