Core Web Vitals Chrome extension
If, like us, you need to monitor core web vitals regularly or on a large scale it might help to add the CWV Chrome extension to your browser. The extension provides real time feedback on all three metrics. The extension mimics exactly how Chrome tests the CWVs and reports them to Google.
Five quick fixes to boost your Core Web Vitals score before the Google update
Core web vitals are just one small component of a larger group of ranking signals that search engines understand and use to determine positions in SERPs. Ranking signals are impacted by elements like on-page content, backlinks and user experience.
The next Google update will weigh heavily on user experience, but there’s no one fix that will solve all of your CWV woes, rather many smaller fixes that will improve your score over time.
While it’s impossible to fully prepare for the changes that will come with the Google update, our web development team recommend these five basic improvements to quickly give your website a stronger foothold on user experience.
Optimise images
Optimising images on a site has always been critical, but considering your largest contentful paint could be taken up with one large image (likely on your front page), it’s wise to make sure all images are fully optimised across your site and ensure visitors to your website are not affected by load times.
Resizing image dimensions to be the size you want them to be displayed is just one tip, as then the browser won’t need to load a large image file and then resize it responsively for the users browsing device.
Reduce server loading time
Optimising server processes such as handling requests and serving files and scripts means that your server is responding to requests faster. This directly affects site speed metrics and therefore CWVs.
Check load time of third party scripts
It could be the case that some of your websites load time is affected by third party scripts such as ads. Unfortunately the onus is on the ad providers to ensure their ads perform well.
Auditing all third party scripts on your website and cutting out any slow loading scripts will have a positive effect on your CWVs assessment.
Focus on content above the fold
When you click through to a website lots of processes are kick-started behind the scenes, HTML, CSS and JavaScript are gathered and loaded. Render-blocking Javascript and CSS drag the experience downhill and the browser struggles with other tasks in the meantime.
By inlining above the fold CSS in your web page code you can tell the browser which part of the page is critical (which part it should load first), the content above the fold. In this way you aren’t necessarily making the page load faster, but giving the illusion that it is, which gives the user experience that all important boost.
Give images room to stabilise loading
Earlier we spoke about cumulative layout shift (CLS), the effect of an image ‘jumping’ on a page as other content is loaded around it. CLS is caused by embedded content without dimensions and dynamically injected content which is what causes the jumping motion.
By adding width and height for images into the CSS of a web page you are telling the browser to save space for an image which might not have loaded yet. This doesn’t affect page speed but will greatly improve page experience as the user can scroll and interact with a page while an image loads without clicking on anything unintended.
Is there an even easier way to pass the Web Vitals assessment?