Concrete steps
Time has gone quickly and so did the build. We are still right on track with the planning. There is a Songkran holiday break so…
Guest rooms and pool
The guestroom foundation has been done in a wink. Thanks to the crew working 7 days a week most of the time. Next up is…
<script> //Go to Bricks > Settings > Builder Access and allow Code Execution for Administrator //Execute this code below this field // You only need one Accesibility Code for each card type. If you imported more than one Article Section Foxtrot, remove extra accessibility code. // INSERT BELOWE THE ARTICLE CARDS LIST const deltaCards = document.querySelectorAll('.fr-article-card-foxtrot') deltaCards.forEach(card => { const link = card.querySelector('.fr-article-card-foxtrot__title a'); const bodyCard = card.querySelector('.fr-article-card-foxtrot__body'); link.addEventListener('focus', () => { bodyCard.classList.add('fr-article-card-foxtrot--visible'); }); link.addEventListener('blur', () => { bodyCard.classList.remove('fr-article-card-foxtrot--visible'); }); }); </script>