How do I remove the logo from my Nav bar?

How do i remove the logo Make it British from my navigation bar? here is a picture

https://clair-de-lune.co.uk/

add this code to your theme-custom.css file.

Navigate to online store >> Click edit theme code.

Now find theme-custom.css and paste the following code on the bottom:

.made-in-uk-icon--container{display: none !important;}

@joshualev , do this to fix it in 20 seconds:

  1. In your Shopify Admin go to: online store > themes > actions > edit code
  2. Find Asset > theme.scss.liquid or theme.css and paste this at the bottom of the file:
.header__logo{
    display: none !important;
}

If you want to remove it only from the desktop and not mobile, use this code instead:

.header__logo{
    display: none !important;
}

Kind regards,
Diego

Hi @joshualev ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.css->paste below code at the bottom of the file:
@media (min-width: 1000px) {
.made-in-uk-icon--container,
.last-nav-item a:before {
    display: none !important;
}
}
@media (max-width: 1000px) {
.made-in-uk-icon--container {
   background: none !important;
}
.made-in-uk-icon--container > a {
    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.