Padding and Title Boldness on Accordion

Hi, how do I:

  • reduce padding on this section so there isn’t as much space between the middle section on the top and bottom

  • make all of the ‘product features’ headers bold?

https://silksoothehair.com/products/silksoothe%E2%84%A2-premium-red-light-massage-brush

Hello @caitlynneal

Go to Online Store, then Theme, and select Edit Code.
Search for assets/base.css Add the provided code at the end of the file.

.section-template--18647702896876__collapsible_content_aCiegx-padding {
padding: 5px 0;
}
.collapsible-content {
margin-bottom: 0;
}
h3.accordion__title {
font-weight: bold;
}

Hi! i added it in here, but it didnt change it for some reason.

Hello @caitlynneal
Please try this code.

@media (max-width: 769px){
  .section-template--18647702896876__collapsible_content_aCiegx-padding {
padding: 5px 0!important;
}
.collapsible-content {
margin-bottom: 0!important;
}
h3.accordion__title {
font-weight: bold!important;
}
}

Hello @caitlynneal

You’re very welcome! I’m glad to hear that you’re pleased with the outcome. Please feel free to reach out if you need further assistance.

If my assistance was helpful, please consider liking and accepting the solution. Thank you!