Lighthouse Mobile
· 0 checks — Mobile Lighthouse audit -- Performance, Accessibility, Best Practices, and SEO category breakdown.Detailed Report
Audit breakdown by category with detailed findings.
Performance
Insights
Remove large, duplicate JavaScript modules from bundles to reduce unnecessary bytes consumed by network activity.
Performance issues directly impact user engagement and conversion rates.
Polyfills and transforms enable older browsers to use new JavaScript features. However, many aren't necessary for modern browsers. Consider modifying your JavaScript build process to not transpile Baseline features, unless you know you must support older browsers. Learn why most sites can deploy ES6+ code without transpiling
Performance issues directly impact user engagement and conversion rates.
3rd party code can significantly impact load performance. Reduce and defer loading of 3rd party code to prioritize your page's content.
Performance issues directly impact user engagement and conversion rates.
A long cache lifetime can speed up repeat visits to your page. Learn more about caching.
Performance issues directly impact user engagement and conversion rates.
Consider setting font-display to swap or optional to ensure text is consistently visible. swap can be further optimized to mitigate layout shifts with font metric overrides.
Performance issues directly impact user engagement and conversion rates.
A forced reflow occurs when JavaScript queries geometric properties (such as offsetWidth) after styles have been invalidated by a change to the DOM state. This can result in poor performance. Learn more about forced reflows and possible mitigations.
Performance issues directly impact user engagement and conversion rates.
Reducing the download time of images can improve the perceived load time of the page and LCP. Learn more about optimizing image size
Performance issues directly impact user engagement and conversion rates.
| URL | Resource Size | Est Savings | |
|---|---|---|---|
facebook.com div.col-md-4 > div.thumbnail > a > img.image-overlay | siteworth.co/site_snapshot/facebook.com.jpg | 76.0 KiB | 53.5 KiB |
google.com div.col-md-4 > div.thumbnail > a > img.image-overlay | siteworth.co/site_snapshot/google.com.jpg | 39.6 KiB | 27.9 KiB |
aiseomate.com div.col-md-4 > div.thumbnail > a > img.image-overlay | siteworth.co/theme/default/img/no-preview.png | 12.4 KiB | 8.7 KiB |
wikipedia.org div.col-md-4 > div.thumbnail > a > img.image-overlay | siteworth.co/site_snapshot/wikipedia.org.jpg | 32.6 KiB | 4.5 KiB |
Each subpart has specific improvement strategies. Ideally, most of the LCP time should be spent on loading the resources, not within delays.
Performance issues directly impact user engagement and conversion rates.
Optimize LCP by making the LCP image discoverable from the HTML immediately, and avoiding lazy-loading
Performance issues directly impact user engagement and conversion rates.
Avoid chaining critical requests by reducing the length of chains, reducing the download size of resources, or deferring the download of unnecessary resources to improve page load.
Performance issues directly impact user engagement and conversion rates.
Requests are blocking the page's initial render, which may delay LCP. Deferring or inlining can move these network requests out of the critical path.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Duration |
|---|---|---|
| siteworth.co/theme/default/css/theme.css | 31.2 KiB | 1.5 s |
| siteworth.co/theme/default/css/AdminLTE.css | 18.4 KiB | 214 ms |
| siteworth.co/theme/default/css/ionicons.min.css | 6.3 KiB | |
| siteworth.co/theme/default/css/font-awesome.min.css | 4.7 KiB | 428 ms |
| siteworth.co/theme/default/css/morris/morris.css | 311 B | |
| siteworth.co/theme/default/css/jvectormap/jquery-jvectormap-1.2.2.css | 310 B | |
| siteworth.co/theme/default/css/reset.css | 2.9 KiB | 214 ms |
| fonts.googleapis.com/css?family=Kaushan+Script | 494 B | 152 ms |
| /css?family=Source+Sans+Pro:300,400,600,300italic,400ital... | 1.4 KiB | 776 ms |
| ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js | 32.8 KiB | 1.8 s |
These insights are also available in the Chrome DevTools Performance Panel - record a trace to view more detailed information.
Time to Interactive is the amount of time it takes for the page to become fully interactive. Learn more about the Time to Interactive metric.
Performance issues directly impact user engagement and conversion rates.
Diagnostics
Minifying CSS files can reduce network payload sizes. Learn how to minify CSS.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| siteworth.co/theme/default/css/AdminLTE.css | 18.4 KiB | 3.6 KiB |
Reduce unused rules from stylesheets and defer CSS not used for above-the-fold content to decrease bytes consumed by network activity. Learn how to reduce unused CSS.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| siteworth.co/theme/default/css/theme.css | 31.2 KiB | 29.5 KiB |
| siteworth.co/theme/default/css/AdminLTE.css | 18.4 KiB | 18.1 KiB |
Reduce unused JavaScript and defer loading scripts until they are required to decrease bytes consumed by network activity. Learn how to reduce unused JavaScript.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| /pagead/managed/js/adsense/m202605190101/show_ads_impl_fy... | 172.8 KiB | 121.6 KiB |
| pagead2.googlesyndication.com/pagead/js/adsbygoogle.js | 54.1 KiB | 43.5 KiB |
| pagead2.googlesyndication.com/pagead/js/adsbygoogle.js | 54.1 KiB | 24.6 KiB |
| cdnjs.cloudflare.com/ajax/libs/raphael/2.1.0/raphael-min.js | 26.7 KiB | 23.5 KiB |
| ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js | 32.2 KiB | 22.1 KiB |
Consider reducing the time spent parsing, compiling and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to minimize main-thread work
Performance issues directly impact user engagement and conversion rates.
| Category | Time Spent |
|---|---|
| Script Evaluation | 1.1 s |
| Style & Layout | 649 ms |
| Other | 609 ms |
| Script Parsing & Compilation | 212 ms |
| Rendering | 78 ms |
| Parse HTML & CSS | 73 ms |
| Garbage Collection | 14 ms |
Many navigations are performed by going back to a previous page, or forwards again. The back/forward cache (bfcache) can speed up these return navigations. Learn more about the bfcache
Performance issues directly impact user engagement and conversion rates.
| Failure reason | Failure type |
|---|---|
| Pages with cache-control:no-store header cannot enter back/forward cache. | Actionable |
| Pages whose main resource has cache-control:no-store cannot enter back/forward cache. | Not actionable |
| Back/forward cache is disabled because some JavaScript network request received resource with Cache-Control: no-store header. | Not actionable |
Minifying JavaScript files can reduce payload sizes and script parse time. Learn how to minify JavaScript.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| siteworth.co/theme/default/js/AdminLTE/app.js | 15.2 KiB | 6.7 KiB |
| siteworth.co/theme/default/js/plugins/jqueryKnob/jquery.knob.js | 6.4 KiB | 3.7 KiB |
Set an explicit width and height on image elements to reduce layout shifts and improve CLS. Learn how to set image dimensions
Performance issues directly impact user engagement and conversion rates.
| URL | |
|---|---|
google.com div.col-md-4 > div.thumbnail > a > img.image-overlay | siteworth.co/site_snapshot/google.com.jpg |
facebook.com div.col-md-4 > div.thumbnail > a > img.image-overlay | siteworth.co/site_snapshot/facebook.com.jpg |
salutelazio.it div.col-md-4 > div.thumbnail > a > img.image-overlay | siteworth.co/theme/default/img/no-preview.png |
viatieri.it div.col-md-4 > div.thumbnail > a > img.image-overlay | siteworth.co/theme/default/img/no-preview.png |
tusciatimesold.it div.col-md-4 > div.thumbnail > a > img.image-overlay | siteworth.co/theme/default/img/no-preview.png |
emiliosacco.it div.col-md-4 > div.thumbnail > a > img.image-overlay | siteworth.co/theme/default/img/no-preview.png |
l3harris.com div.col-md-4 > div.thumbnail > a > img.image-overlay | siteworth.co/theme/default/img/no-preview.png |
aiseomate.com div.col-md-4 > div.thumbnail > a > img.image-overlay | siteworth.co/theme/default/img/no-preview.png |
wikipedia.org div.col-md-4 > div.thumbnail > a > img.image-overlay | siteworth.co/site_snapshot/wikipedia.org.jpg |
worthmysite div.container > div.navbar-header > a.navbar-brand > img.worth_my_site_logo | siteworth.co/core/img/32947_SiteWorth_logo5.png |
More information about the performance of your application. These numbers don't directly affect the Performance score.
Accessibility
These checks highlight opportunities to improve the accessibility of your web app. Automatic detection can only detect a subset of issues and does not guarantee the accessibility of your web app, so manual testing is also encouraged.
Names and labels
When a button doesn't have an accessible name, screen readers announce it as "button", making it unusable for users who rely on screen readers. Learn how to make buttons more accessible.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.row > div.input-group > div.input-group-btn > button.btn div.row > div.input-group > div.input-group-btn > button.btn |
Link text (and alternate text for images, when used as links) that is discernible, unique, and focusable improves the navigation experience for screen reader users. Learn how to make links accessible.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.container > div.row > div.none > a.ultm div.container > div.row > div.none > a.ultm |
div.container > div.row > div.none > a.ultm div.container > div.row > div.none > a.ultm |
div.container > div.row > div.none > a.ultm div.container > div.row > div.none > a.ultm |
These are opportunities to improve the semantics of the controls in your application. This may enhance the experience for users of assistive technology, like a screen reader.
Contrast
Low-contrast text is difficult or impossible for many users to read. Learn how to provide sufficient color contrast.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Visit div.thumbnail > div.caption > p > a.btn |
Details div.thumbnail > div.caption > p > a.btn |
Visit div.thumbnail > div.caption > p > a.btn |
Details div.thumbnail > div.caption > p > a.btn |
Visit div.thumbnail > div.caption > p > a.btn |
Details div.thumbnail > div.caption > p > a.btn |
Visit div.thumbnail > div.caption > p > a.btn |
Details div.thumbnail > div.caption > p > a.btn |
Visit div.thumbnail > div.caption > p > a.btn |
Details div.thumbnail > div.caption > p > a.btn |
Visit div.thumbnail > div.caption > p > a.btn |
Details div.thumbnail > div.caption > p > a.btn |
Visit div.thumbnail > div.caption > p > a.btn |
Details div.thumbnail > div.caption > p > a.btn |
Visit div.thumbnail > div.caption > p > a.btn |
Details div.thumbnail > div.caption > p > a.btn |
Visit div.thumbnail > div.caption > p > a.btn |
Details div.thumbnail > div.caption > p > a.btn |
These are opportunities to improve the legibility of your content.
Navigation
Properly ordered headings that do not skip levels convey the semantic structure of the page, making it easier to navigate and understand when using assistive technologies. Learn more about heading order.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Quickly Calculate the Estimated Worth of Your Website for Free. div#myhome > div.container > div.row > h4 |
SiteWorth.co is a free website worth calculator tool.
It uses publicly availab… div.more > div.container > div.contentx > h4 |
Google.com div.col-md-4 > div.thumbnail > div.caption > h4 |
Salutelazio.it div.col-md-4 > div.thumbnail > div.caption > h4 |
These are opportunities to improve keyboard navigation in your application.
Internationalization and localization
If a page doesn't specify a `lang` attribute, a screen reader assumes that the page is in the default language that the user chose when setting up the screen reader. If the page isn't actually in the default language, then the screen reader might not announce the page's text correctly. Learn more about the `lang` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
html html |
These are opportunities to improve the interpretation of your content by users in different locales.
Best practices
Touch targets with sufficient size and spacing help users who may have difficulty targeting small controls to activate the targets. Learn more about touch targets.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Get Paid to Post on Social Media div.row > div#xxxd > i > a |
Get Paid to Test Apps div.row > div#xxxd > i > a |
Get Paid to Take Pics div.row > div#xxxd > i > a |
One main landmark helps screen reader users navigate a web page. Learn more about landmarks.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
html html |
These items highlight common accessibility best practices.
Best Practices
Trust and Safety
All sites should be protected with HTTPS, even ones that don't handle sensitive data. This includes avoiding mixed content, where some resources are loaded over HTTP despite the initial request being served over HTTPS. HTTPS prevents intruders from tampering with or passively listening in on the communications between your app and your users, and is a prerequisite for HTTP/2 and many new web platform APIs. Learn more about HTTPS.
Performance issues directly impact user engagement and conversion rates.
| Insecure URL | Request Resolution |
|---|---|
| /css?family=Source+Sans+Pro:200,300,400,600,200italic,300... | Blocked |
General
Errors logged to the console indicate unresolved problems. They can come from network request failures and other browser concerns. Learn more about this errors in console diagnostic audit
Performance issues directly impact user engagement and conversion rates.
| Source | Description |
|---|---|
Mixed Content: The page at 'https://siteworth.co/' was loaded over HTTPS, but requested an insecure stylesheet 'http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600,200italic,300italic,400italic,600italic'. This request has been blocked; the content must be served over HTTPS. |
Issues logged to the `Issues` panel in Chrome Devtools indicate unresolved problems. They can come from network request failures, insufficient security controls, and other browser concerns. Open up the Issues panel in Chrome DevTools for more details on each issue.
Performance issues directly impact user engagement and conversion rates.
| Issue type |
|---|
| Mixed content |
SEO
These checks ensure that your page is following basic search engine optimization advice. There are many additional factors Lighthouse does not score here that may affect your search ranking, including performance on Core Web Vitals. Learn more about Google Search Essentials.