-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
18 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -146,7 +146,7 @@ <h1 class="mt-3" style="margin-bottom: 1rem">Questions</h1> | |
</p> | ||
<div class="collapse" id="collapseRSVP"> | ||
<div class="card card-body"><p> | ||
TBD | ||
Kindly R.S.V.P. by June 1, 2025. Unfortuantely we need an accurate guest count and cannot accept any more guests after that date. | ||
</p></div> | ||
</div> | ||
<br> | ||
|
@@ -295,6 +295,23 @@ <h1 class="mt-3" style="margin-bottom: 1rem">Questions</h1> | |
Here is our optional <a href="https://www.zola.com/registry/maggieandjulia2025" class="text-body-secondary">registry</a>. | ||
</div> | ||
<br> | ||
|
||
<p class="d-inline-flex gap-1"> | ||
<button class="faq-question btn" type="button" data-bs-toggle="collapse" data-bs-target="#collapseContact" aria-expanded="false" aria-controls="collapseContact"> | ||
<span> | ||
Who can I ask if I have more questions? | ||
</span> | ||
<div class="container-icon"> | ||
<i class="fas fa-chevron-down ms-2"></i> | ||
</div> | ||
</button> | ||
</p> | ||
<div class="collapse" id="collapseContact"> | ||
<div class="card card-body"><p> | ||
You can contact both Maggie and Julia with questions about the wedding by emailing us at [email protected]. | ||
</div> | ||
<br> | ||
|
||
<script> | ||
document.addEventListener('DOMContentLoaded', function() { | ||
const collapseButton = document.querySelector('[data-bs-target="#collapseExample"]'); | ||
|