The site was previously built on the Base (Bootstrap) ReadyTheme and had fairly good Page Speed Insight numbers. But since the switch to Colossus, the numbers are bad. And the store owner is in a panic.
The top issue that I have been asking about (and even have a support ticket open for) is the need to preload the ReadyThemeIcons.woff - it's taking 2.28 seconds to load. Everything suggested has been tried. Google is not recognizing the preload and that is most likely because the font is being "called" from within the icons.css file
I have asked before and I ask again, isn't there some way to do this like Google Fonts does? For example:
And then there is this CLS (Cumulative Layout Shift) - GTmetrix really helped point something out
with a 0.36 and
with a 0.36
So it's something in these two sections that need tending to? That's what I'm thinking.
FWIW - the does have Cloudflare added on.
Suggestions are welcome.
The top issue that I have been asking about (and even have a support ticket open for) is the need to preload the ReadyThemeIcons.woff - it's taking 2.28 seconds to load. Everything suggested has been tried. Google is not recognizing the preload and that is most likely because the font is being "called" from within the icons.css file
Code:
@font-face { font-family: 'ReadyTheme Icons'; font-style: normal; font-weight: normal; font-display: fallback; src: url('themes/colossus/ui/css/ReadyThemeIcons.woff') format('woff'); }
Code:
<link rel="preconnect" href="https://fonts.gstatic.com"> <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap" rel="stylesheet">
And then there is this CLS (Cumulative Layout Shift) - GTmetrix really helped point something out
Code:
<main class="o-wrapper t-wrapper t-site-main">
Code:
<div id="sfnt_hero" class="readytheme-contentsection">
So it's something in these two sections that need tending to? That's what I'm thinking.
FWIW - the does have Cloudflare added on.
Suggestions are welcome.
Comment