Accordion menu

without testing it, I would look out for the “border-bottom: 1px solid #014237;”
and change it to your desire.

/* accordion content box styles: default */
.accordion-container .accordion-content {
  overflow: hidden;
  padding: 0px 8px;
  max-height: 0;
  border-bottom: 1px solid #014237;
  background-color: #F1EBE0;
  transition: max-height 0.5s ease-out;
}

Is there a way to make it so only one section is open at a time? meaning whatever is open will close when another is clicked on.
Trying to work around

Hi, I’m trying to make an accordion menu with an opaque background. I have the menu above an image as of now and want the text to be readable when the menu is open without having to leave a large space blank below it. Is there a way to make the menu opaque so it covers the image below it?