Knowledge base

Find clear, easy-to-follow guides to help you make updates and manage your website independently.

Need a hand?

Every challenge has a solution. If you’re feeling stuck, reach out through the form below and let’s work through it together so you can move forward with clarity and confidence.

©2025 ClearlyCreative. All Rights Reserved. Privacy Policy

document.addEventListener('DOMContentLoaded', function() { const reveals = document.querySelectorAll('.reveal'); const observer = new IntersectionObserver((entries) => { entries.forEach(entry => { if (entry.isIntersecting) { entry.target.classList.add('revealed'); } }); }, { threshold: 0.1 }); reveals.forEach(el => observer.observe(el)); });