Collapsible content customization. Dawn theme

So I want to get rid of the gray lines that divide the rows of my collapsible content on my product page. And, I want to make the heading of each row bold. Plus, I want to make icon of each row a “+” and when you press on the row the icon changes to “-”. Any ideas on how i can achieve that? I have dawn theme on my store.

The perfect style that I want to achieve for my collapsible content is provided in the attached photo, but i don’t think its achievable, but if it is, please let me know :wink:

1 Like

Hi @GalaxyGlowz

To remove the grey lines and bold the text.

Check 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:
  • And Save.
.accordion {
    border-top: 0rem !important;
    border-bottom: 0rem !important;
}
.accordion__title {
    font-weight: 700;
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!