For 2 days I noticed all I could see was the background. None of the content on the site was loading. Eventually I did a bit of digging. For some reason the body in the CSS is set to hidden visibility. Inspecting the element and unchecking this property will show the page as expected, but for every page refresh I need to apply this change.
Can your web guys please look into this? Thanks

If you, or anyone you know, is having a similar problem, I used the "Stylish" Chrome extension to permanently fix the error (
https://chrome.google.com/webstore/detail/stylish-custom-themes-for/fjnbnpbmkenffdnngjfgmeleoegfcffe)
Just add the code
body {
visibility: visible;
}
and it will override the default one that's bugging it out!
Edited by Alucardo on June 30, 2021 6:22AM