Events section HTML
The#events section is split into two columns — left for Day 1 events, right for Day 2 events. Each event uses a wp (waypoint) class that triggers a slide-in animation on scroll.
index.html
Changing event names, dates, and descriptions
For each event, update three things:- Date heading — the
<p><strong>tag above each column (e.g.27th November) - Event name and time — the
<h5>tag:Mehndi <span class="time">1PM - 5PM</span> - Description — the
<p>paragraph that follows
<div class="wp3"> block and increment the waypoint class number (e.g. wp3 → use an unused class, or reuse an existing one). If you add more than the existing waypoint selectors cover, add a corresponding waypoint handler in js/scripts.js:
js/scripts.js
If you change the event dates here, remember to also update the matching dates in the Add to Calendar configuration in
js/scripts.js. Both places must stay in sync so calendar invites reflect the correct schedule. See the Add to Calendar page for details.Dress code modal
Clicking the “Dress code” button opens a Bootstrap modal (#dc-modal). The modal body lists dress codes per event and links to Pinterest boards for inspiration:
index.html
Updating Pinterest links
Each dress code suggestion links to a Pinterest board. Replace thehref values with your own Pinterest board URLs, or remove the <a> tags entirely and leave plain text:
| Event | Current link | Replace with |
|---|---|---|
| Mehndi (women) | pinterest.com/…/mehndi-dress-for-women/ | Your own Pinterest board URL |
| Mehndi (men) | pinterest.com/…/mehndi-dress-for-men/ | Your own Pinterest board URL |
| Cocktail (women) | pinterest.com/…/cocktail-night-outfit-for-women/ | Your own Pinterest board URL |
| Cocktail (men) | pinterest.com/…/cocktail-night-outfit-for-men/ | Your own Pinterest board URL |
| Wedding lehengas | pinterest.com/…/indo-western-lehengas/ | Your own Pinterest board URL |
| Wedding anarkalis | pinterest.com/…/indo-western-anarkalis/ | Your own Pinterest board URL |
data-toggle and data-target attributes — no JavaScript changes are needed:
index.html
