Why can't I delete the accordion text from a website?

Hi, I’m working on this website which someone worked on in the past and for some reason I cannot delete the accordion text (Shipping & returns). This should have been a very easy task :disappointed_face:

Can anyone help ?

https://ideevintage.com/products/black-100-linen-asymmetrical-long-ghost-skirt-vintage-3-4-length-size-s

Just want to change it

1 Like

Hey @Daniel19901

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


RESULT:

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

Best Regards,
Moeed

**Hi @Daniel19901 **

Follow these Steps:

Go to Online Store Edit Code Find theme.liquid file or base.css

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

.product__accordion.accordion {
    display: none;
}

RESULT:

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

HI @Daniel19901

Try 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:
.product__accordion.accordion {
    display: none !important;
}