function updateHeaderHeight() {
        // Get the height of #brx-header
        const headerHeight = document.querySelector('#brx-header').offsetHeight;
          
        // Store the height in the CSS custom property --header-height
        document.documentElement.style.setProperty('--brxw-header-height', headerHeight + 'px');
    }

    // Execute the function as soon as the document is ready
    document.addEventListener('DOMContentLoaded', function() {
        updateHeaderHeight();  // Initial update of header height when the document is ready

        // Update the header height on window resize and orientation change
        window.addEventListener('resize', updateHeaderHeight);
        window.addEventListener('orientationchange', updateHeaderHeight);
});

Permissions Policy

All the content on this website is copyrighted in my name.

However, I encourage distribution and sharing of my content, but please read this before using any of my content (including images and text) in your own posts or articles.

Using my images

Without my permission you can:

With my permission you can:

You must have my consent (via email) to do any of the following:

Re-posting my content

I do not allow direct re-posting of any of my posts. This is because Google penalises websites which have duplicate content. It does not always distinguish which site hosts the original, so I risk getting penalised myself for allowing this.

Creative Commons License