Check out the bootstrap accordion menu I added to my website here
I'm facing an issue where one toggle stays open when another is clicked. It seems like a CSS problem since I've tried adding extra properties to my HTML without success.
Currently, the CSS property for collapsed toggles is:
.collapse .in { display: block }
<article class="panel-heading" role="tab" data-toggle="collapse" data-parent="#accordion" href="#NewsFive" aria-expanded="true" aria-controls="collapseFive">
<div class="panel-heading-date">
<span>06/10/2016</span>
</div>
<div class="panel-title panel-news">
<article>
</article>
</div>
</article>
<!-- PANEL HEADING ENDS HERE -->
<div id="NewsFive" class="panel-collapse collapse in" role="tabpanel" aria-labelledby="headingFive">
<div class="video-wrapper">
<source src="/assets/videos/the-future-of-retail.mp4" type="video/mp4">
</video>
</div>
<div class="playpause"></div>
</div>
</div><!-- PANEL ENDS HERE -->
If anyone can help spot what might be causing this issue, it would be greatly appreciated.