Inner Radiance

Are you struggling to find a celebrant you connect with?

Contact us about your ceremony requirements

Phone: 0425 222 635

Email: sue@innerradiance.com.au

Monday to Saturday
9:00 AM to 7:00 PM 
(Sunday Closed)

    // When the user scrolls the page, execute myFunction window.onscroll = function() {myFunction()}; // Get the header var header = document.getElementById("myHeader"); // Get the offset position of the navbar var sticky = header.offsetTop; // Add the sticky class to the header when you reach its scroll position. Remove "sticky" when you leave the scroll position function myFunction() { if (window.pageYOffset > sticky) { header.classList.add("sticky"); } else { header.classList.remove("sticky"); } }