@bobgarretthomenetworks-co-uk: Sorry for the late reply, looks like we missed this topic. We usually reply within 24 hours. So, anyone, who didn’t hear us for more than 24 hours there must be an issue with your notification system just comment or contact us directly at https://catchthemes.com/contact-us/.
I don’t see a delay on your page title, can you tell me which page has that issue?
If you are talking about the padding-top for .custom-header then that delay is there due to the script to estimate the padding needed for fixed header .site-header. For that, you need to do a manual header padding-top as per your site and add the following CSS in the “Appearance => Customize => Additional CSS” box:
.custom-header {
padding-top: 139px;
transition-duration: 0s;
}
@media screen and (min-width: 480px) {
.custom-header {
padding-top: 203px;
}
}
@media only screen and (min-width: 568px) {
.custom-header {
padding-top: 182px;
}
}
@media only screen and (min-width: 742px) {
.custom-header {
padding-top: 139px;
}
}
@media only screen and (min-width: 1024px) {
.custom-header {
padding-top: 153px;
}
}
@media only screen and (min-width: 1200px) {
.custom-header {
padding-top: 214px;
}
}
Regards,
Sakin