How can I remove the shopping cart and search bar in the Foodie theme?

How do I remove shopping cart from the header? And I also want to remove the search bar in the footer.

I want to edit through Custom CSS “Add custom styles to this section only.”

Site is nightcapmanila.ph

Hey @jamchua

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

Hello @jamchua

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > theme.css and paste this at the bottom of the file:
li.header__cart-links--cart.cart-link.relative.m0.p0 {
    display: none;
}
.left-footer.span-6.auto.a-left.v-end {
    display: none;
}
.right-footer.span-6.auto.a-right.v-end {
    text-align: revert;
}