Looking for help with customizing an accordion button on a website with Arabic content.
The issue is that I need to reverse the content within the accordion-button (the question on the right, and the down arrow on the left).
Any suggestions on how to solve this?
<!-- Bootstrap 5.0.x library -->
<link href="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="d0b2bfbfa4a3a4a2b1a090e5feefe0fee2">[email protected]</a>/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<!-- Body -->
<div class="accordion accordion-flush" id="questions">
<!--Beginning of the item-->
<div class="accordion-item">
<h2 class="accordion-header" id="flush-headingOne">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#quest_1">
السؤال الأول
</button>
</h2>
<div id="quest_1" class="accordion-collapse collapse" data-bs-parent="#questions">
<div class="accordion-body text-end">
الإجابة على السؤال الأول
</div>
</div>
</div>
<!--End of the item-->
</div>