Lighthouse Desktop
· 0 checks — Desktop 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.
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.
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 | |
|---|---|---|---|
li > div.be-slide-bg-holder > div.be-slide-bg > img li > div.be-slide-bg-holder > div.be-slide-bg > img | /wp-content/uploads/2021/08/cafe_de_paris_raffaello_gesch... | 539.5 KiB | 494.7 KiB |
li > div.be-slide-bg-holder > div.be-slide-bg > img li > div.be-slide-bg-holder > div.be-slide-bg > img | portnerag.ch/wp-content/uploads/2021/08/wein_lastwagen-scaled.jpg | 524.9 KiB | 489.3 KiB |
li.current > div.be-slide-bg-holder > div.be-slide-bg > img li.current > div.be-slide-bg-holder > div.be-slide-bg > img | portnerag.ch/wp-content/uploads/2021/08/Geschenk-Schaft.jpg | 445.5 KiB | 379.2 KiB |
li.current > div.be-slide-bg-holder > div.be-slide-bg > img li.current > div.be-slide-bg-holder > div.be-slide-bg > img | portnerag.ch/wp-content/uploads/2024/09/Toyota_Hilux_Lieferwagen.webp | 363.0 KiB | 275.0 KiB |
li > div.be-slide-bg-holder > div.be-slide-bg > img li > div.be-slide-bg-holder > div.be-slide-bg > img | /2f7lvmE-4S_81bXv/w:auto/h:auto/q:auto/https://portnerag.... | 243.8 KiB | 206.6 KiB |
li > div.be-slide-bg-holder > div.be-slide-bg > img li > div.be-slide-bg-holder > div.be-slide-bg > img | portnerag.ch/wp-content/uploads/2024/09/kuehlanhaenger_portner.webp | 220.6 KiB | 171.8 KiB |
li > div.be-slide-bg-holder > div.be-slide-bg > img li > div.be-slide-bg-holder > div.be-slide-bg > img | /2f7lvmE-o72WUJ_z/w:auto/h:auto/q:auto/https://portnerag.... | 189.9 KiB | 160.9 KiB |
li > div.be-slide-bg-holder > div.be-slide-bg > img li > div.be-slide-bg-holder > div.be-slide-bg > img | /2f7lvmE-nI5XtUOx/w:auto/h:auto/q:auto/https://portnerag.... | 162.0 KiB | 137.3 KiB |
li > div.be-slide-bg-holder > div.be-slide-bg > img li > div.be-slide-bg-holder > div.be-slide-bg > img | /2f7lvmE-akB7Mrfr/w:auto/h:auto/q:auto/https://portnerag.... | 104.1 KiB | 87.3 KiB |
li.current > div.be-slide-bg-holder > div.be-slide-bg > img li.current > div.be-slide-bg-holder > div.be-slide-bg > img | portnerag.ch/wp-content/uploads/2021/09/mineralwasser_klein.jpg | 137.7 KiB | 85.3 KiB |
li > div.be-slide-bg-holder > div.be-slide-bg > img li > div.be-slide-bg-holder > div.be-slide-bg > img | portnerag.ch/wp-content/uploads/2021/08/grappa_berta_portner_ag.jpg | 132.7 KiB | 68.7 KiB |
Portner AG div#sb-slidebar-content > div#logo-sidebar > a > img.transparent-logo | portnerag.ch/wp-content/uploads/2025/11/Logo_Portner_25.webp | 10.9 KiB | 8.3 KiB |
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
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 |
|---|---|---|
| @font-face{font-family:ETmodules;font-display:block;src:url(//bestellen.portnerag.ch/wp-content/the… | 21.1 KiB | 20.1 KiB |
| /wp-content/plugins/oshine-modules/public/css/oshine-modu... | 20.7 KiB | 19.8 KiB |
| portnerag.ch/wp-content/plugins/tatsu/public/css/tatsu.min.css?ver=3.5.3 | 20.0 KiB | 18.7 KiB |
| portnerag.ch/wp-content/themes/oshin/css/main.min.css?ver=1.0 | 17.3 KiB | 16.8 KiB |
Consider reducing the time spent parsing, compiling, and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to reduce Javascript execution time.
Performance issues directly impact user engagement and conversion rates.
| URL | Total CPU Time | Script Evaluation | Script Parse |
|---|---|---|---|
| www.gstatic.com/recaptcha/releases/U5VsmTDhJM1iOJUyw4DEUTYv/recaptcha__en.js | 672 ms | 607 ms | 37 ms |
| Unattributable | 551 ms | 7.0 ms | 0.0 ms |
| portnerag.ch/ | 451 ms | 6.0 ms | 2.3 ms |
| portnerag.ch/wp-includes/js/jquery/jquery.min.js?ver=3.7.1 | 408 ms | 286 ms | 3.2 ms |
| /wp-content/plugins/oshine-modules/public/js/vendor/count... | 354 ms | 49 ms | 0.6 ms |
| www.googletagmanager.com/gtag/js?id=GT-NC6V3MP | 136 ms | 110 ms | 22 ms |
| www.googletagmanager.com/gtag/js?id=G-H2FRWMB6Y8 | 123 ms | 98 ms | 19 ms |
| bestellen.portnerag.ch/wp-content/themes/Divi/js/scripts.min.js?ver=4.27.5 | 119 ms | 58 ms | 10 ms |
| portnerag.ch/wp-content/themes/oshin/js/vendor/imagesloaded.min.js | 63 ms | 47 ms | 0.3 ms |
| bestellen.portnerag.ch/wp-includes/js/jquery/jquery.min.js?ver=3.7.1 | 52 ms | 36 ms | 3.9 ms |
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.5 s |
| Other | 904 ms |
| Style & Layout | 520 ms |
| Script Parsing & Compilation | 128 ms |
| Rendering | 107 ms |
| Parse HTML & CSS | 68 ms |
| Garbage Collection | 39 ms |
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 |
|---|---|---|
| www.gstatic.com/recaptcha/releases/U5VsmTDhJM1iOJUyw4DEUTYv/recaptcha__en.js | 364.0 KiB | 160.9 KiB |
| www.googletagmanager.com/gtag/js?id=G-H2FRWMB6Y8 | 174.3 KiB | 70.1 KiB |
| www.googletagmanager.com/gtag/js?id=GT-NC6V3MP | 161.1 KiB | 69.2 KiB |
| bestellen.portnerag.ch/wp-content/themes/Divi/js/scripts.min.js?ver=4.27.5 | 55.3 KiB | 36.0 KiB |
Large network payloads cost users real money and are highly correlated with long load times. Learn how to reduce payload sizes.
Performance issues directly impact user engagement and conversion rates.
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 | |
|---|---|
div.owl-item > li.carousel-item > a > img div.owl-item > li.carousel-item > a > img | portnerag.ch/wp-content/uploads/2021/08/diwisa.png |
div.owl-item > li.carousel-item > a > img div.owl-item > li.carousel-item > a > img | portnerag.ch/wp-content/uploads/2021/08/diwisa.png |
li > div.be-slide-bg-holder > div.be-slide-bg > img li > div.be-slide-bg-holder > div.be-slide-bg > img | portnerag.ch/wp-content/uploads/2021/08/wein_lastwagen-scaled.jpg |
li > div.be-slide-bg-holder > div.be-slide-bg > img li > div.be-slide-bg-holder > div.be-slide-bg > img | /wp-content/uploads/2021/08/cafe_de_paris_raffaello_gesch... |
li > div.be-slide-bg-holder > div.be-slide-bg > img li > div.be-slide-bg-holder > div.be-slide-bg > img | /2f7lvmE-o72WUJ_z/w:auto/h:auto/q:auto/https://portnerag.... |
li > div.be-slide-bg-holder > div.be-slide-bg > img li > div.be-slide-bg-holder > div.be-slide-bg > img | /2f7lvmE-4S_81bXv/w:auto/h:auto/q:auto/https://portnerag.... |
li > div.be-slide-bg-holder > div.be-slide-bg > img li > div.be-slide-bg-holder > div.be-slide-bg > img | /2f7lvmE-nI5XtUOx/w:auto/h:auto/q:auto/https://portnerag.... |
div.owl-item > li.carousel-item > a > img div.owl-item > li.carousel-item > a > img | /2f7lvmE-7poHaS3K/w:auto/h:auto/q:auto/https://portnerag.... |
li > div.be-slide-bg-holder > div.be-slide-bg > img li > div.be-slide-bg-holder > div.be-slide-bg > img | /2f7lvmE-akB7Mrfr/w:auto/h:auto/q:auto/https://portnerag.... |
li.current > div.be-slide-bg-holder > div.be-slide-bg > img li.current > div.be-slide-bg-holder > div.be-slide-bg > img | portnerag.ch/wp-content/uploads/2021/08/Geschenk-Schaft.jpg |
div.owl-item > li.carousel-item > a > img div.owl-item > li.carousel-item > a > img | portnerag.ch/wp-content/uploads/2021/08/rivella_logo.png |
div.owl-item > li.carousel-item > a > img div.owl-item > li.carousel-item > a > img | portnerag.ch/wp-content/uploads/2021/08/rivella_logo.png |
li > div.be-slide-bg-holder > div.be-slide-bg > img li > div.be-slide-bg-holder > div.be-slide-bg > img | portnerag.ch/wp-content/uploads/2024/09/kuehlanhaenger_portner.webp |
div.owl-item > li.carousel-item > a > img div.owl-item > li.carousel-item > a > img | portnerag.ch/wp-content/uploads/2021/08/coca-colalogo.jpg |
li.current > div.be-slide-bg-holder > div.be-slide-bg > img li.current > div.be-slide-bg-holder > div.be-slide-bg > img | portnerag.ch/wp-content/uploads/2021/09/mineralwasser_klein.jpg |
div.owl-item > li.carousel-item > a > img div.owl-item > li.carousel-item > a > img | /2f7lvmE-6jGtfR_a/w:auto/h:auto/q:auto/https://portnerag.... |
div.owl-item > li.carousel-item > a > img div.owl-item > li.carousel-item > a > img | /2f7lvmE-6jGtfR_a/w:auto/h:auto/q:auto/https://portnerag.... |
div.owl-item > li.carousel-item > a > img div.owl-item > li.carousel-item > a > img | /2f7lvmE-qqozUu0z/w:auto/h:auto/q:auto/https://portnerag.... |
li.current > div.be-slide-bg-holder > div.be-slide-bg > img li.current > div.be-slide-bg-holder > div.be-slide-bg > img | portnerag.ch/wp-content/uploads/2024/09/Toyota_Hilux_Lieferwagen.webp |
div.owl-item > li.carousel-item > a > img div.owl-item > li.carousel-item > a > img | /2f7lvmE-FKOCbmTZ/w:auto/h:auto/q:auto/https://portnerag.... |
li > div.be-slide-bg-holder > div.be-slide-bg > img li > div.be-slide-bg-holder > div.be-slide-bg > img | portnerag.ch/wp-content/uploads/2021/08/grappa_berta_portner_ag.jpg |
li > div.be-slide-bg-holder > div.be-slide-bg > img li > div.be-slide-bg-holder > div.be-slide-bg > img | /2f7lvmE-1D2dd3kn/w:auto/h:auto/q:auto/https://portnerag.... |
div.owl-item > li.carousel-item > a > img div.owl-item > li.carousel-item > a > img | /2f7lvmE-dDlygJdO/w:auto/h:auto/q:auto/https://portnerag.... |
div.owl-item > li.carousel-item > a > img div.owl-item > li.carousel-item > a > img | /2f7lvmE-dDlygJdO/w:auto/h:auto/q:auto/https://portnerag.... |
div.owl-item > li.carousel-item > a > img div.owl-item > li.carousel-item > a > img | /2f7lvmE-fl0w1zyp/w:auto/h:auto/q:auto/https://portnerag.... |
div.owl-item > li.carousel-item > a > img div.owl-item > li.carousel-item > a > img | /2f7lvmE-fl0w1zyp/w:auto/h:auto/q:auto/https://portnerag.... |
div.owl-item > li.carousel-item > a > img div.owl-item > li.carousel-item > a > img | portnerag.ch/wp-content/uploads/2021/08/moehl_rgb.png |
div.owl-item > li.carousel-item > a > img div.owl-item > li.carousel-item > a > img | portnerag.ch/wp-content/uploads/2021/08/moehl_rgb.png |
div.owl-item > li.carousel-item > a > img div.owl-item > li.carousel-item > a > img | /2f7lvmE--LxLh09i/w:auto/h:auto/q:auto/https://portnerag.... |
div.owl-item > li.carousel-item > a > img div.owl-item > li.carousel-item > a > img | /2f7lvmE--LxLh09i/w:auto/h:auto/q:auto/https://portnerag.... |
div.owl-item > li.carousel-item > a > img div.owl-item > li.carousel-item > a > img | portnerag.ch/wp-content/uploads/2025/05/felsenau.webp |
div.owl-item > li.carousel-item > a > img div.owl-item > li.carousel-item > a > img | portnerag.ch/wp-content/uploads/2025/05/felsenau.webp |
Portner AG div#sb-slidebar-content > div#logo-sidebar > a > img.transparent-logo | portnerag.ch/wp-content/uploads/2025/11/Logo_Portner_25.webp |
div.owl-item > li.carousel-item > a > img div.owl-item > li.carousel-item > a > img | portnerag.ch/wp-content/uploads/2021/08/simmentaler_logo.png |
div.owl-item > li.carousel-item > a > img div.owl-item > li.carousel-item > a > img | portnerag.ch/wp-content/uploads/2021/08/simmentaler_logo.png |
div.owl-item > li.carousel-item > a > img div.owl-item > li.carousel-item > a > img | portnerag.ch/wp-content/uploads/2021/08/lateltin.png |
div.owl-item > li.carousel-item > a > img div.owl-item > li.carousel-item > a > img | portnerag.ch/wp-content/uploads/2021/08/lateltin.png |
div.owl-item > li.carousel-item > a > img div.owl-item > li.carousel-item > a > img | /2f7lvmE-IR93q8Ye/w:auto/h:auto/q:auto/https://portnerag.... |
div.owl-item > li.carousel-item > a > img div.owl-item > li.carousel-item > a > img | portnerag.ch/wp-content/uploads/2021/08/bataillard.jpg |
div.owl-item > li.carousel-item > a > img div.owl-item > li.carousel-item > a > img | portnerag.ch/wp-content/uploads/2021/08/swiss_alpine_herbs_logo.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.
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 |
|---|
KONTAKT div.menu > ul#slidebar-menu > li#menu-item-3271 > a |
Ich Akzeptiere div.be-gdpr-cookie-notice-bar > div.be-gdpr-cookie-notice-wrap > div.be-gdpr-cookie-notice-actions > div.be-gdpr-cookie-notice-button |
These are opportunities to improve the legibility of your content.
Names and labels
Informative elements should aim for short, descriptive alternate text. Decorative elements can be ignored with an empty alt attribute. Learn more about the `alt` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
li.current > div.be-slide-bg-holder > div.be-slide-bg > img li.current > div.be-slide-bg-holder > div.be-slide-bg > img |
li > div.be-slide-bg-holder > div.be-slide-bg > img li > div.be-slide-bg-holder > div.be-slide-bg > img |
li > div.be-slide-bg-holder > div.be-slide-bg > img li > div.be-slide-bg-holder > div.be-slide-bg > img |
li > div.be-slide-bg-holder > div.be-slide-bg > img li > div.be-slide-bg-holder > div.be-slide-bg > img |
li.current > div.be-slide-bg-holder > div.be-slide-bg > img li.current > div.be-slide-bg-holder > div.be-slide-bg > img |
li > div.be-slide-bg-holder > div.be-slide-bg > img li > div.be-slide-bg-holder > div.be-slide-bg > img |
li.current > div.be-slide-bg-holder > div.be-slide-bg > img li.current > div.be-slide-bg-holder > div.be-slide-bg > img |
li > div.be-slide-bg-holder > div.be-slide-bg > img li > div.be-slide-bg-holder > div.be-slide-bg > img |
li > div.be-slide-bg-holder > div.be-slide-bg > img li > div.be-slide-bg-holder > div.be-slide-bg > img |
li > div.be-slide-bg-holder > div.be-slide-bg > img li > div.be-slide-bg-holder > div.be-slide-bg > img |
li > div.be-slide-bg-holder > div.be-slide-bg > img li > div.be-slide-bg-holder > div.be-slide-bg > img |
li > div.be-slide-bg-holder > div.be-slide-bg > img li > div.be-slide-bg-holder > div.be-slide-bg > img |
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.tatsu-column-pad > div.component > nav.component-nav > a.prev div.tatsu-column-pad > div.component > nav.component-nav > a.prev |
div.tatsu-column-pad > div.component > nav.component-nav > a.next div.tatsu-column-pad > div.component > nav.component-nav > a.next |
div.tatsu-column-pad > div.component > nav.component-nav > a.prev div.tatsu-column-pad > div.component > nav.component-nav > a.prev |
div.tatsu-column-pad > div.component > nav.component-nav > a.next div.tatsu-column-pad > div.component > nav.component-nav > a.next |
div.tatsu-column-pad > div.component > nav.component-nav > a.prev div.tatsu-column-pad > div.component > nav.component-nav > a.prev |
div.tatsu-column-pad > div.component > nav.component-nav > a.next div.tatsu-column-pad > div.component > nav.component-nav > a.next |
div.owl-stage > div.owl-item > li.carousel-item > a div.owl-stage > div.owl-item > li.carousel-item > a |
div.owl-stage > div.owl-item > li.carousel-item > a div.owl-stage > div.owl-item > li.carousel-item > a |
div.owl-stage > div.owl-item > li.carousel-item > a div.owl-stage > div.owl-item > li.carousel-item > a |
div.owl-stage > div.owl-item > li.carousel-item > a div.owl-stage > div.owl-item > li.carousel-item > a |
div.owl-stage > div.owl-item > li.carousel-item > a div.owl-stage > div.owl-item > li.carousel-item > a |
div.owl-stage > div.owl-item > li.carousel-item > a div.owl-stage > div.owl-item > li.carousel-item > a |
div.owl-stage > div.owl-item > li.carousel-item > a div.owl-stage > div.owl-item > li.carousel-item > a |
div.owl-stage > div.owl-item > li.carousel-item > a div.owl-stage > div.owl-item > li.carousel-item > a |
div.owl-stage > div.owl-item > li.carousel-item > a div.owl-stage > div.owl-item > li.carousel-item > a |
div.owl-stage > div.owl-item > li.carousel-item > a div.owl-stage > div.owl-item > li.carousel-item > a |
div.owl-stage > div.owl-item > li.carousel-item > a div.owl-stage > div.owl-item > li.carousel-item > a |
div.owl-stage > div.owl-item > li.carousel-item > a div.owl-stage > div.owl-item > li.carousel-item > a |
div.owl-stage > div.owl-item > li.carousel-item > a div.owl-stage > div.owl-item > li.carousel-item > a |
div.owl-stage > div.owl-item > li.carousel-item > a div.owl-stage > div.owl-item > li.carousel-item > a |
div.owl-stage > div.owl-item > li.carousel-item > a div.owl-stage > div.owl-item > li.carousel-item > a |
div.owl-stage > div.owl-item > li.carousel-item > a div.owl-stage > div.owl-item > li.carousel-item > a |
div.owl-stage > div.owl-item > li.carousel-item > a div.owl-stage > div.owl-item > li.carousel-item > a |
div.owl-stage > div.owl-item > li.carousel-item > a div.owl-stage > div.owl-item > li.carousel-item > a |
div.owl-stage > div.owl-item > li.carousel-item > a div.owl-stage > div.owl-item > li.carousel-item > a |
div.owl-stage > div.owl-item > li.carousel-item > a div.owl-stage > div.owl-item > li.carousel-item > a |
div.owl-stage > div.owl-item > li.carousel-item > a div.owl-stage > div.owl-item > li.carousel-item > a |
div.owl-stage > div.owl-item > li.carousel-item > a div.owl-stage > div.owl-item > li.carousel-item > a |
div.owl-stage > div.owl-item > li.carousel-item > a div.owl-stage > div.owl-item > li.carousel-item > a |
div.owl-stage > div.owl-item > li.carousel-item > a div.owl-stage > div.owl-item > li.carousel-item > a |
div.owl-stage > div.owl-item > li.carousel-item > a div.owl-stage > div.owl-item > li.carousel-item > a |
div.owl-stage > div.owl-item > li.carousel-item > a div.owl-stage > div.owl-item > li.carousel-item > a |
div.owl-stage > div.owl-item > li.carousel-item > a div.owl-stage > div.owl-item > li.carousel-item > a |
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.
Tables and lists
Screen readers have a specific way of announcing lists. Ensuring proper list structure aids screen reader output. Learn more about proper list structure.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.tatsu-column-pad-wrap > div.tatsu-column-pad > div.carousel-wrap > ul.be-owl-carousel div.tatsu-column-pad-wrap > div.tatsu-column-pad > div.carousel-wrap > ul.be-owl-carousel |
Screen readers require list items (`<li>`) to be contained within a parent `<ul>`, `<ol>` or `<menu>` to be announced properly. Learn more about proper list structure.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item |
div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item |
div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item |
div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item |
div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item |
div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item |
div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item |
div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item |
div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item |
div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item |
div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item |
div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item |
div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item |
div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item |
div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item |
div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item |
div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item |
div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item |
div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item |
div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item |
div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item |
div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item |
div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item |
div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item |
div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item |
div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item |
div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item div.owl-stage-outer > div.owl-stage > div.owl-item > li.carousel-item |
These are opportunities to improve the experience of reading tabular or list data using assistive technology, like a screen reader.
Best practices
Disabling zooming is problematic for users with low vision who rely on screen magnification to properly see the contents of a web page. Learn more about the viewport meta tag.
Informational: a Permissions-Policy directive showing feature -> allowed origins.
Source: MDN Permissions-Policy
| Failing Elements |
|---|
head > meta head > meta |
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.js html.js |
These items highlight common accessibility best practices.
Best Practices
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 |
|---|---|
Failed to load resource: the server responded with a status of 404 () |
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.
Content Best Practices
Informative elements should aim for short, descriptive alternate text. Decorative elements can be ignored with an empty alt attribute. Learn more about the `alt` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
li.current > div.be-slide-bg-holder > div.be-slide-bg > img li.current > div.be-slide-bg-holder > div.be-slide-bg > img |
li > div.be-slide-bg-holder > div.be-slide-bg > img li > div.be-slide-bg-holder > div.be-slide-bg > img |
li > div.be-slide-bg-holder > div.be-slide-bg > img li > div.be-slide-bg-holder > div.be-slide-bg > img |
li > div.be-slide-bg-holder > div.be-slide-bg > img li > div.be-slide-bg-holder > div.be-slide-bg > img |
li.current > div.be-slide-bg-holder > div.be-slide-bg > img li.current > div.be-slide-bg-holder > div.be-slide-bg > img |
li > div.be-slide-bg-holder > div.be-slide-bg > img li > div.be-slide-bg-holder > div.be-slide-bg > img |
li.current > div.be-slide-bg-holder > div.be-slide-bg > img li.current > div.be-slide-bg-holder > div.be-slide-bg > img |
li > div.be-slide-bg-holder > div.be-slide-bg > img li > div.be-slide-bg-holder > div.be-slide-bg > img |
li > div.be-slide-bg-holder > div.be-slide-bg > img li > div.be-slide-bg-holder > div.be-slide-bg > img |
li > div.be-slide-bg-holder > div.be-slide-bg > img li > div.be-slide-bg-holder > div.be-slide-bg > img |
li > div.be-slide-bg-holder > div.be-slide-bg > img li > div.be-slide-bg-holder > div.be-slide-bg > img |
li > div.be-slide-bg-holder > div.be-slide-bg > img li > div.be-slide-bg-holder > div.be-slide-bg > img |
Format your HTML in a way that enables crawlers to better understand your app’s content.