prefers-color-scheme: darkFocus your efforts on these pages to make the biggest impact (combined scanner unique failures):
| Page | axe Unique | QualWeb | Total Unique | Page Title |
|---|---|---|---|---|
| View Page | 168 | 224 | 392 | Blog Archives - Nexxt |
| View Page | 168 | 224 | 392 | Uncategorized Archives - Nexxt |
| View Page | 69 | 74 | 143 | Digital Transformation Consulting - Nexxt |
| View Page | 67 | 70 | 137 | Workflow Automation Services - Nexxt |
| View Page | 61 | 75 | 136 | Insights - Nexxt |
| View Page | 61 | 75 | 136 | Insights - Nexxt |
| View Page | 64 | 71 | 135 | Nexxt - Digital Transformation Consultancy - Nexxt |
| View Page | 63 | 71 | 134 | Nexxt - Digital Transformation Consultancy - Nexxt |
| View Page | 65 | 68 | 133 | Nexxt - Digital Transformation Consultancy - Nexxt |
| View Page | 63 | 68 | 131 | Nexxt - Digital Transformation Consultancy - Nexxt |
These ALFA accessibility issues appear most frequently across your pages:
✅ No ALFA failed rules detected!
These axe accessibility issues appear most frequently across your pages:
| Rule | Pages Affected | Documentation |
|---|---|---|
| color-contrast | 37 of 37 | View Rule |
| heading-order | 37 of 37 | View Rule |
| landmark-banner-is-top-level | 37 of 37 | View Rule |
| landmark-contentinfo-is-top-level | 37 of 37 | View Rule |
| landmark-no-duplicate-banner | 37 of 37 | View Rule |
| landmark-unique | 37 of 37 | View Rule |
| link-name | 37 of 37 | View Rule |
| list | 37 of 37 | View Rule |
| image-alt | 29 of 37 | View Rule |
| landmark-no-duplicate-contentinfo | 25 of 37 | View Rule |
💡 Tip: Click on the rule documentation links to learn how to fix each issue. Consider fixing the most common issues first for maximum impact.
🤖 Future Enhancement: This report will soon include AI-powered fix suggestions for authenticated GitHub users (opt-in only, no auto-run AI).
These HTML patterns cause the same accessibility errors across multiple pages. Fix the pattern once in your codebase to fix it everywhere!
Scanner: axe Rule: list Impact: serious Issue: <ul> and <ol> must only directly contain <li>,
HTML Pattern:
<ul>
XPath (use in browser DevTools):
.footer-links:nth-child(1) > ul
How to Replicate:
$x('.footer-links:nth-child(1) > ul')Affected Pages:
Scanner: axe Rule: color-contrast Impact: serious Issue: Elements must meet minimum color contrast ratio thresholds
HTML Pattern:
<a href="/contact" class="theme-btn">Contact Us</a>
XPath (use in browser DevTools):
.header-left-right > .theme-btn[href$="contact"]
How to Replicate:
$x('.header-left-right > .theme-btn[href$="contact"]')Affected Pages:
Scanner: axe Rule: heading-order Impact: moderate Issue: Heading levels should only increase by one
HTML Pattern:
<h4>Services</h4>
XPath (use in browser DevTools):
.footer-links:nth-child(1) > h4
How to Replicate:
$x('.footer-links:nth-child(1) > h4')Affected Pages:
Scanner: axe Rule: landmark-banner-is-top-level Impact: moderate Issue: Banner landmark should not be contained in another landmark
HTML Pattern:
<header class="header-area">
XPath (use in browser DevTools):
.header-area
How to Replicate:
$x('.header-area')Affected Pages:
Scanner: axe Rule: landmark-no-duplicate-banner Impact: moderate Issue: Document should not have more than one banner landmark
HTML Pattern:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">
XPath (use in browser DevTools):
#masthead
How to Replicate:
$x('#masthead')Affected Pages:
Scanner: axe Rule: landmark-unique Impact: moderate Issue: Landmarks should have a unique role or role/label/title (i.e. accessible name) combination
HTML Pattern:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">
XPath (use in browser DevTools):
#masthead
How to Replicate:
$x('#masthead')Affected Pages:
Scanner: axe Rule: link-name Impact: serious Issue: Links must have discernible text
HTML Pattern:
<a href="https://www.linkedin.com/company/nexxtgroup/">
<i class="iconoir-linkedin"></i>
</a>
XPath (use in browser DevTools):
.social-links > li > a
How to Replicate:
$x('.social-links > li > a')Affected Pages:
Scanner: axe Rule: color-contrast Impact: serious Issue: Elements must meet minimum color contrast ratio thresholds
HTML Pattern:
<h6 class="section-subtitle">Contact</h6>
XPath (use in browser DevTools):
.contact-form-body > h6
How to Replicate:
$x('.contact-form-body > h6')Affected Pages:
Scanner: axe Rule: color-contrast Impact: serious Issue: Elements must meet minimum color contrast ratio thresholds
HTML Pattern:
<a target="_blank" href="mailto:info@nexxt.com.au">info@nexxt.com.au</a>
XPath (use in browser DevTools):
a[target="_blank"][href$="mailto:info@nexxt.com.au"]
How to Replicate:
$x('a[target="_blank"][href$="mailto:info@nexxt.com.au"]')Affected Pages:
Scanner: axe Rule: color-contrast Impact: serious Issue: Elements must meet minimum color contrast ratio thresholds
HTML Pattern:
<input type="submit" class="hs-button primary large" value="Submit">
XPath (use in browser DevTools):
#hs-form-iframe-0
How to Replicate:
$x('#hs-form-iframe-0')Affected Pages:
Scanner: axe Rule: color-contrast Impact: serious Issue: Elements must meet minimum color contrast ratio thresholds
HTML Pattern:
<p>Workshops delivered</p>
XPath (use in browser DevTools):
li:nth-child(1) > p
How to Replicate:
$x('li:nth-child(1) > p')Affected Pages:
Scanner: axe Rule: color-contrast Impact: serious Issue: Elements must meet minimum color contrast ratio thresholds
HTML Pattern:
<p>Delivered Successfully</p>
XPath (use in browser DevTools):
li:nth-child(2) > p
How to Replicate:
$x('li:nth-child(2) > p')Affected Pages:
Scanner: axe Rule: color-contrast Impact: serious Issue: Elements must meet minimum color contrast ratio thresholds
HTML Pattern:
<p>Professionals Coached</p>
XPath (use in browser DevTools):
li:nth-child(3) > p
How to Replicate:
$x('li:nth-child(3) > p')Affected Pages:
Scanner: axe Rule: heading-order Impact: moderate Issue: Heading levels should only increase by one
HTML Pattern:
<h6 class="section-subtitle">Contact</h6>
XPath (use in browser DevTools):
.contact-form-body > h6
How to Replicate:
$x('.contact-form-body > h6')Affected Pages:
Scanner: axe Rule: heading-order Impact: moderate Issue: Heading levels should only increase by one
HTML Pattern:
<h4>Contact Info</h4>
XPath (use in browser DevTools):
.contact-info:nth-child(1) > h4
How to Replicate:
$x('.contact-info:nth-child(1) > h4')Affected Pages:
💡 Pro Tip: These patterns likely come from shared components or templates in your codebase. Fix them in the component/template source, and the fix will propagate to all affected pages.
Complete scan results for all tested pages:
| Submitted URL | Final URL | Status | HTTP | Redirected | Time (ms) | axe Unique | ALFA Unique | Equal Access Unique | AccessLint Unique | Duplicates | Notes |
|---|---|---|---|---|---|---|---|---|---|---|---|
| https://nexxt.com.au/ | https://nexxt.com.au/ | OK | 200 | no | 13973 | 63 | 0 | 0 | 0 | 64 | Skipped (not requested) |
| axe failed rules: color-contrast, heading-order, image-alt, landmark-banner-is-top-level, landmark-contentinfo-is-top-level, landmark-no-duplicate-banner, landmark-unique, link-name, list | |||||||||||
| https://nexxt.com.au/jira-to-azure-devops-migration-services/ | https://nexxt.com.au/jira-to-azure-devops-migration-services/ | OK | 200 | no | 12927 | 50 | 0 | 0 | 0 | 44 | Skipped (not requested) |
| axe failed rules: color-contrast, heading-order, image-alt, landmark-banner-is-top-level, landmark-contentinfo-is-top-level, landmark-no-duplicate-banner, landmark-no-duplicate-contentinfo, landmark-one-main, landmark-unique, link-name, list, region | |||||||||||
| https://nexxt.com.au/office-365-consulting-services-australia/ | https://nexxt.com.au/office-365-consulting-services-australia/ | OK | 200 | no | 12206 | 52 | 0 | 0 | 0 | 44 | Skipped (not requested) |
| axe failed rules: color-contrast, heading-order, image-alt, landmark-banner-is-top-level, landmark-contentinfo-is-top-level, landmark-no-duplicate-banner, landmark-no-duplicate-contentinfo, landmark-one-main, landmark-unique, link-name, list, region | |||||||||||
| https://nexxt.com.au/services/ | https://nexxt.com.au/services/ | OK | 200 | no | 12602 | 36 | 0 | 0 | 0 | 34 | Skipped (not requested) |
| axe failed rules: color-contrast, heading-order, image-alt, landmark-banner-is-top-level, landmark-contentinfo-is-top-level, landmark-no-duplicate-banner, landmark-unique, link-name, list, page-has-heading-one | |||||||||||
| https://nexxt.com.au/contact/ | https://nexxt.com.au/contact/ | OK | 200 | no | 10365 | 23 | 0 | 0 | 0 | 17 | Skipped (not requested) |
| axe failed rules: color-contrast, heading-order, image-alt, landmark-banner-is-top-level, landmark-contentinfo-is-top-level, landmark-no-duplicate-banner, landmark-unique, link-name, list, page-has-heading-one | |||||||||||
| https://nexxt.com.au/20-years-of-agile-manifesto/ | https://nexxt.com.au/20-years-of-agile-manifesto/ | OK | 200 | no | 11950 | 71 | 0 | 0 | 0 | 34 | Skipped (not requested) |
| axe failed rules: color-contrast, heading-order, image-alt, landmark-banner-is-top-level, landmark-contentinfo-is-top-level, landmark-no-duplicate-banner, landmark-no-duplicate-contentinfo, landmark-one-main, landmark-unique, link-name, list, region | |||||||||||
| https://nexxt.com.au/about-us/ | https://nexxt.com.au/about-us/ | OK | 200 | no | 12127 | 39 | 0 | 0 | 0 | 38 | Skipped (not requested) |
| axe failed rules: color-contrast, heading-order, image-alt, landmark-banner-is-top-level, landmark-contentinfo-is-top-level, landmark-no-duplicate-banner, landmark-unique, link-name, list | |||||||||||
| https://nexxt.com.au/beyond-traditional-hiring-how-to-build-an-agile-future-ready-project-team/ | https://nexxt.com.au/beyond-traditional-hiring-how-to-build-an-agile-future-ready-project-team/ | OK | 200 | no | 11594 | 52 | 0 | 0 | 0 | 42 | Skipped (not requested) |
| axe failed rules: color-contrast, heading-order, image-alt, landmark-banner-is-top-level, landmark-contentinfo-is-top-level, landmark-no-duplicate-banner, landmark-no-duplicate-contentinfo, landmark-one-main, landmark-unique, link-name, list, region | |||||||||||
| https://nexxt.com.au/change-management-consulting-brisbane/ | https://nexxt.com.au/change-management-consulting-brisbane/ | OK | 200 | no | 12467 | 52 | 0 | 0 | 0 | 44 | Skipped (not requested) |
| axe failed rules: color-contrast, heading-order, image-alt, landmark-banner-is-top-level, landmark-contentinfo-is-top-level, landmark-no-duplicate-banner, landmark-no-duplicate-contentinfo, landmark-one-main, landmark-unique, link-name, list, region | |||||||||||
| https://nexxt.com.au/coaching-and-uplift/ | https://nexxt.com.au/coaching-and-uplift/ | OK | 200 | no | 12214 | 54 | 0 | 0 | 0 | 42 | Skipped (not requested) |
| axe failed rules: color-contrast, empty-heading, heading-order, image-alt, landmark-banner-is-top-level, landmark-contentinfo-is-top-level, landmark-no-duplicate-banner, landmark-unique, link-name, list | |||||||||||
| https://nexxt.com.au/decision-velocity-business-2025/ | https://nexxt.com.au/decision-velocity-business-2025/ | OK | 200 | no | 11871 | 52 | 0 | 0 | 0 | 42 | Skipped (not requested) |
| axe failed rules: color-contrast, heading-order, image-alt, landmark-banner-is-top-level, landmark-contentinfo-is-top-level, landmark-no-duplicate-banner, landmark-no-duplicate-contentinfo, landmark-one-main, landmark-unique, link-name, list, region | |||||||||||
| https://nexxt.com.au/digital-transformation-consulting/ | https://nexxt.com.au/digital-transformation-consulting/ | OK | 200 | no | 12132 | 69 | 0 | 0 | 0 | 76 | Skipped (not requested) |
| axe failed rules: color-contrast, heading-order, image-alt, landmark-banner-is-top-level, landmark-contentinfo-is-top-level, landmark-no-duplicate-banner, landmark-no-duplicate-contentinfo, landmark-one-main, landmark-unique, link-name, list, region | |||||||||||
| https://nexxt.com.au/insights-inner/ | https://nexxt.com.au/insights-inner/ | OK | 200 | no | 12254 | 41 | 0 | 0 | 0 | 42 | Skipped (not requested) |
| axe failed rules: aria-allowed-role, color-contrast, heading-order, landmark-banner-is-top-level, landmark-contentinfo-is-top-level, landmark-no-duplicate-banner, landmark-no-duplicate-contentinfo, landmark-one-main, landmark-unique, link-name, list, page-has-heading-one, region | |||||||||||
| https://nexxt.com.au/insights/ | https://nexxt.com.au/insights/ | OK | 200 | no | 12057 | 61 | 0 | 0 | 0 | 71 | Skipped (not requested) |
| axe failed rules: aria-allowed-role, color-contrast, heading-order, image-alt, landmark-banner-is-top-level, landmark-contentinfo-is-top-level, landmark-no-duplicate-banner, landmark-unique, link-name, list, page-has-heading-one | |||||||||||
| https://nexxt.com.au/it-consultant-brisbane-sme-guide/ | https://nexxt.com.au/it-consultant-brisbane-sme-guide/ | OK | 200 | no | 12658 | 52 | 0 | 0 | 0 | 44 | Skipped (not requested) |
| axe failed rules: color-contrast, heading-order, image-alt, landmark-banner-is-top-level, landmark-contentinfo-is-top-level, landmark-no-duplicate-banner, landmark-no-duplicate-contentinfo, landmark-one-main, landmark-unique, link-name, list, region | |||||||||||
| https://nexxt.com.au/microsoft-teams-training/ | https://nexxt.com.au/microsoft-teams-training/ | OK | 200 | no | 11230 | 54 | 0 | 0 | 0 | 46 | Skipped (not requested) |
| axe failed rules: color-contrast, heading-order, image-alt, landmark-banner-is-top-level, landmark-contentinfo-is-top-level, landmark-no-duplicate-banner, landmark-no-duplicate-contentinfo, landmark-one-main, landmark-unique, link-name, list, region | |||||||||||
| https://nexxt.com.au/privacy-policy/ | https://nexxt.com.au/privacy-policy/ | OK | 200 | no | 11813 | 15 | 0 | 0 | 0 | 6 | Skipped (not requested) |
| axe failed rules: color-contrast, heading-order, landmark-banner-is-top-level, landmark-contentinfo-is-top-level, landmark-no-duplicate-banner, landmark-no-duplicate-contentinfo, landmark-one-main, landmark-unique, link-name, list, region | |||||||||||
| https://nexxt.com.au/project-delivery-assurance-audit/ | https://nexxt.com.au/project-delivery-assurance-audit/ | OK | 200 | no | 11591 | 52 | 0 | 0 | 0 | 44 | Skipped (not requested) |
| axe failed rules: color-contrast, heading-order, image-alt, landmark-banner-is-top-level, landmark-contentinfo-is-top-level, landmark-no-duplicate-banner, landmark-no-duplicate-contentinfo, landmark-one-main, landmark-unique, link-name, list, region | |||||||||||
| https://nexxt.com.au/project-delivery/ | https://nexxt.com.au/project-delivery/ | OK | 200 | no | 12633 | 54 | 0 | 0 | 0 | 42 | Skipped (not requested) |
| axe failed rules: color-contrast, empty-heading, heading-order, image-alt, landmark-banner-is-top-level, landmark-contentinfo-is-top-level, landmark-no-duplicate-banner, landmark-unique, link-name, list | |||||||||||
| https://nexxt.com.au/running-a-workshop-part-2-the-art-of-skillful-facilitation/ | https://nexxt.com.au/running-a-workshop-part-2-the-art-of-skillful-facilitation/ | OK | 200 | no | 12245 | 50 | 0 | 0 | 0 | 36 | Skipped (not requested) |
| axe failed rules: color-contrast, heading-order, image-alt, landmark-banner-is-top-level, landmark-contentinfo-is-top-level, landmark-no-duplicate-banner, landmark-no-duplicate-contentinfo, landmark-one-main, landmark-unique, link-name, list, region | |||||||||||
| https://nexxt.com.au/scaling-tech-teams-brisbane-staff-augmentation-vs-outsourcing/ | https://nexxt.com.au/scaling-tech-teams-brisbane-staff-augmentation-vs-outsourcing/ | OK | 200 | no | 12113 | 50 | 0 | 0 | 0 | 36 | Skipped (not requested) |
| axe failed rules: color-contrast, empty-heading, heading-order, image-alt, landmark-banner-is-top-level, landmark-contentinfo-is-top-level, landmark-no-duplicate-banner, landmark-no-duplicate-contentinfo, landmark-one-main, landmark-unique, link-name, list, region | |||||||||||
| https://nexxt.com.au/sharepoint-consultation-brisbane/ | https://nexxt.com.au/sharepoint-consultation-brisbane/ | OK | 200 | no | 11347 | 53 | 0 | 0 | 0 | 46 | Skipped (not requested) |
| axe failed rules: color-contrast, heading-order, image-alt, landmark-banner-is-top-level, landmark-contentinfo-is-top-level, landmark-no-duplicate-banner, landmark-no-duplicate-contentinfo, landmark-one-main, landmark-unique, link-name, list, region | |||||||||||
| https://nexxt.com.au/sitemap/ | https://nexxt.com.au/sitemap/ | OK | 200 | no | 10534 | 16 | 0 | 0 | 0 | 18 | Skipped (not requested) |
| axe failed rules: color-contrast, heading-order, landmark-banner-is-top-level, landmark-contentinfo-is-top-level, landmark-no-duplicate-banner, landmark-no-duplicate-contentinfo, landmark-one-main, landmark-unique, link-name, list, page-has-heading-one, region | |||||||||||
| https://nexxt.com.au/staff-augmentation-vs-traditional-hiring-brisbane-2/ | https://nexxt.com.au/staff-augmentation-vs-traditional-hiring-brisbane-2/ | OK | 200 | no | 11954 | 50 | 0 | 0 | 0 | 36 | Skipped (not requested) |
| axe failed rules: color-contrast, empty-heading, heading-order, image-alt, landmark-banner-is-top-level, landmark-contentinfo-is-top-level, landmark-no-duplicate-banner, landmark-no-duplicate-contentinfo, landmark-one-main, landmark-unique, link-name, list, region | |||||||||||
| https://nexxt.com.au/terms-and-conditions/ | https://nexxt.com.au/terms-and-conditions/ | OK | 200 | no | 11539 | 17 | 0 | 0 | 0 | 6 | Skipped (not requested) |
| axe failed rules: color-contrast, heading-order, landmark-banner-is-top-level, landmark-contentinfo-is-top-level, landmark-no-duplicate-banner, landmark-no-duplicate-contentinfo, landmark-one-main, landmark-unique, link-name, list, region | |||||||||||
| https://nexxt.com.au/thank-you/ | https://nexxt.com.au/thank-you/ | OK | 200 | no | 10826 | 17 | 0 | 0 | 0 | 6 | Skipped (not requested) |
| axe failed rules: color-contrast, empty-heading, heading-order, landmark-banner-is-top-level, landmark-contentinfo-is-top-level, landmark-no-duplicate-banner, landmark-no-duplicate-contentinfo, landmark-one-main, landmark-unique, link-name, list, region | |||||||||||
| https://nexxt.com.au/the-seven-deadly-wastes-of-lean/ | https://nexxt.com.au/the-seven-deadly-wastes-of-lean/ | OK | 200 | no | 11492 | 48 | 0 | 0 | 0 | 34 | Skipped (not requested) |
| axe failed rules: color-contrast, heading-order, image-alt, landmark-banner-is-top-level, landmark-contentinfo-is-top-level, landmark-no-duplicate-banner, landmark-no-duplicate-contentinfo, landmark-one-main, landmark-unique, link-name, list, region | |||||||||||
| https://nexxt.com.au/transformation-and-change/ | https://nexxt.com.au/transformation-and-change/ | OK | 200 | no | 12119 | 54 | 0 | 0 | 0 | 42 | Skipped (not requested) |
| axe failed rules: color-contrast, empty-heading, heading-order, image-alt, landmark-banner-is-top-level, landmark-contentinfo-is-top-level, landmark-no-duplicate-banner, landmark-unique, link-name, list | |||||||||||
| https://nexxt.com.au/workflow-automation/ | https://nexxt.com.au/workflow-automation/ | OK | 200 | no | 12932 | 67 | 0 | 0 | 0 | 72 | Skipped (not requested) |
| axe failed rules: color-contrast, heading-order, image-alt, landmark-banner-is-top-level, landmark-contentinfo-is-top-level, landmark-no-duplicate-banner, landmark-no-duplicate-contentinfo, landmark-one-main, landmark-unique, link-name, list, region | |||||||||||
| https://nexxt.com.au/author/mnitish0gmail-com/ | https://nexxt.com.au/author/mnitish0gmail-com/ | OK | 200 | no | 11106 | 57 | 0 | 0 | 0 | 59 | Skipped (not requested) |
| axe failed rules: color-contrast, heading-order, landmark-banner-is-top-level, landmark-contentinfo-is-top-level, landmark-no-duplicate-banner, landmark-no-duplicate-contentinfo, landmark-one-main, landmark-unique, link-in-text-block, link-name, list, page-has-heading-one, region | |||||||||||
| https://nexxt.com.au/category/blog/ | https://nexxt.com.au/category/blog/ | OK | 200 | no | 12969 | 168 | 0 | 0 | 0 | 220 | Skipped (not requested) |
| axe failed rules: aria-allowed-role, aria-required-children, color-contrast, heading-order, landmark-banner-is-top-level, landmark-contentinfo-is-top-level, landmark-no-duplicate-banner, landmark-no-duplicate-contentinfo, landmark-one-main, landmark-unique, link-name, list, page-has-heading-one, region | |||||||||||
| https://nexxt.com.au/category/uncategorized/ | https://nexxt.com.au/category/uncategorized/ | OK | 200 | no | 13295 | 168 | 0 | 0 | 0 | 220 | Skipped (not requested) |
| axe failed rules: aria-allowed-role, aria-required-children, color-contrast, heading-order, landmark-banner-is-top-level, landmark-contentinfo-is-top-level, landmark-no-duplicate-banner, landmark-no-duplicate-contentinfo, landmark-one-main, landmark-unique, link-name, list, page-has-heading-one, region | |||||||||||
| https://nexxt.com.au/elementor-hf/home-footer/ | https://nexxt.com.au/ | OK | 200 | yes | 13598 | 63 | 0 | 0 | 0 | 67 | Skipped (not requested) |
| axe failed rules: color-contrast, heading-order, image-alt, landmark-banner-is-top-level, landmark-contentinfo-is-top-level, landmark-no-duplicate-banner, landmark-unique, link-name, list | |||||||||||
| https://nexxt.com.au/elementor-hf/home-v1-header/ | https://nexxt.com.au/ | OK | 200 | yes | 13321 | 65 | 0 | 0 | 0 | 64 | Skipped (not requested) |
| axe failed rules: color-contrast, heading-order, image-alt, landmark-banner-is-top-level, landmark-contentinfo-is-top-level, landmark-no-duplicate-banner, landmark-unique, link-name, list | |||||||||||
| https://nexxt.com.au/elementor-hf/home-v2-header/ | https://nexxt.com.au/ | OK | 200 | yes | 13494 | 64 | 0 | 0 | 0 | 67 | Skipped (not requested) |
| axe failed rules: color-contrast, heading-order, image-alt, landmark-banner-is-top-level, landmark-contentinfo-is-top-level, landmark-no-duplicate-banner, landmark-unique, link-name, list | |||||||||||
| https://nexxt.com.au/agile-20-years-on | https://nexxt.com.au/20-years-of-agile-manifesto/ | OK | 200 | yes | 12843 | 71 | 0 | 0 | 0 | 34 | Skipped (not requested) |
| axe failed rules: color-contrast, heading-order, image-alt, landmark-banner-is-top-level, landmark-contentinfo-is-top-level, landmark-no-duplicate-banner, landmark-no-duplicate-contentinfo, landmark-one-main, landmark-unique, link-name, list, region | |||||||||||
| https://nexxt.com.au/insights/2/ | https://nexxt.com.au/insights/2/ | OK | 200 | no | 12306 | 61 | 0 | 0 | 0 | 71 | Skipped (not requested) |
| axe failed rules: aria-allowed-role, color-contrast, heading-order, image-alt, landmark-banner-is-top-level, landmark-contentinfo-is-top-level, landmark-no-duplicate-banner, landmark-unique, link-name, list, page-has-heading-one |
Impact: serious
Failure 1:
<a href="/contact" class="theme-btn">Contact Us</a>.header-left-right > .theme-btn[href$="contact"]Failure 2:
<a href="/about-us" class="theme-btn">Learn More</a>.theme-btn[href$="about-us"]Failure 3:
<p> Years <span>of Customer <br>Success</span> </p>.experience-content > pFailure 4:
<p> 50+ <span>Years of combined business and digital expertise</span> </p>.our-expert-team-box-inner > pFailure 5:
<span class="section-subtitle">CASE STUDIES</span>.case-studio-header > p > .section-subtitle… and 11 more failures for this rule
Impact: moderate
Failure 1:
<h4><a href="/transformation-and-change">Transformation & Change</a></h4>.service-card.simple-shadow:nth-child(1) > h4Failure 2:
<h4>Accelerating Delivery, Inspiring Change</h4>#development > .case-studio-body.d-flex > .right > .case-studio-contents.service-card.card-h > h4Failure 3:
<h4>Assess</h4>.about-timeline-item:nth-child(1) > .about-timeline-item-inner > h4Failure 4:
<h6 class="section-subtitle section-subtitle1">Op Ed</h6>.section-subtitle1Failure 5:
<h6 class="section-subtitle">Tips</h6>.news-item.card-h:nth-child(1) > .news-item-body > h6… and 4 more failures for this rule
Impact: critical
Failure 1:
<img decoding="async" class="desktop fade-in" src="https://nexxt.com.au/wp-content/uploads/2024/11/NEXXT-226-1-scaled.jpg">.desktopFailure 2:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/11/success2.png">.experience-body > img[decoding="async"]Failure 3:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/11/experts2.png">.imgs > img[decoding="async"]Failure 4:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/11/Badge.jpeg" style="touch-action: pan-y;">.client-logo.simple-shadow:nth-child(1) > img[decoding="async"]Failure 5:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/11/linfox.png" style="touch-action: pan-y;">.client-logo.simple-shadow:nth-child(2) > img[decoding="async"]… and 20 more failures for this rule
Impact: moderate
Failure 1:
<header class="header-area">.header-areaImpact: moderate
Failure 1:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: serious
Failure 1:
<a href="/contact" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>#development > .case-studio-body.d-flex > .right > .case-studio-contents.service-card.card-h > .theme-btn[href$="contact"]Failure 2:
<a href="/agile-20-years-on" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.theme-btn[href$="agile-20-years-on"]Failure 3:
<a href="/running-a-workshop-part-2-the-art-of-skillful-facilitation" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(1) > .news-item-body > .theme-btnFailure 4:
<a href="/the-seven-deadly-wastes-of-lean" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(2) > .news-item-body > .theme-btnFailure 5:
<a href="https://www.linkedin.com/company/nexxtgroup/"> <i class="iconoir-linkedin"></i> </a>.social-links > li > aImpact: serious
Failure 1:
<ul>.footer-links:nth-child(1) > ulFailure 2:
<ul>.footer-links:nth-child(2) > ulFailure 3:
<ul>.footer-links:nth-child(3) > ulFailure 4:
<ul>.footer-links:nth-child(4) > ulImpact: serious
Failure 1:
<a href="/contact" class="theme-btn">Contact Us</a>.header-left-right > .theme-btn[href$="contact"]Failure 2:
<h6 class="section-subtitle badge-radius">Our Studies</h6>.badge-radiusFailure 3:
<span class="elementor-button-text">Talk to a Change Lead</span>.elementor-element-edf9bb6 > .elementor-widget-container > .elementor-button-wrapper > .elementor-button.elementor-button-link.elementor-size-sm > .elementor-button-content-wrapper > .elementor-button-textFailure 4:
<div class="e-n-accordion-item-title-text"> Will we lose history? </div>summary[data-accordion-index="2"] > .e-n-accordion-item-title-header > .e-n-accordion-item-title-textFailure 5:
<div class="e-n-accordion-item-title-text"> How long does migration take? </div>summary[data-accordion-index="3"] > .e-n-accordion-item-title-header > .e-n-accordion-item-title-text… and 8 more failures for this rule
Impact: moderate
Failure 1:
<h6 class="section-subtitle">INSIGHTS</h6>.left > h6Failure 2:
<h6 class="section-subtitle section-subtitle1">Op Ed</h6>.section-subtitle1Failure 3:
<h6 class="section-subtitle">Tips</h6>.news-item.card-h:nth-child(1) > .news-item-body > h6Failure 4:
<h6 class="section-subtitle">Lean</h6>.news-item.card-h:nth-child(2) > .news-item-body > h6Failure 5:
<h6 class="section-subtitle">Contact</h6>.contact-form-body > h6… and 2 more failures for this rule
Impact: critical
Failure 1:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/NEXXT-250-scaled.jpg">.sticky-news > .news-img-box > imgFailure 2:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/64b7ce72cc736c81beadb984_IMG_1582-2-p-800.jpg">.news-item.card-h:nth-child(1) > .news-img-box > imgFailure 3:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/61ac2b0bd942768a049f941a_58-COMPRESSED-p-800.jpeg">.news-item.card-h:nth-child(2) > .news-img-box > imgFailure 4:
<img src="https://nexxt.com.au/wp-content/uploads/2024/11/support2.png">.contact-info:nth-child(1) > imgFailure 5:
<img src="https://nexxt.com.au/wp-content/uploads/2024/11/map1.png">.contact-info:nth-child(2) > imgImpact: moderate
Failure 1:
<header class="header-area">.header-areaImpact: moderate
Failure 1:
<footer class="footer-area">.footer-areaImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: moderate
Failure 1:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: moderate
Failure 1:
<html lang="en-US">htmlFailure 2:
<html>#hs-form-iframe-0Impact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadFailure 2:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: serious
Failure 1:
<a href="/agile-20-years-on" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.theme-btn[href$="agile-20-years-on"]Failure 2:
<a href="/running-a-workshop-part-2-the-art-of-skillful-facilitation" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(1) > .news-item-body > .theme-btnFailure 3:
<a href="/the-seven-deadly-wastes-of-lean" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(2) > .news-item-body > .theme-btnFailure 4:
<a href="https://www.linkedin.com/company/nexxtgroup/"> <i class="iconoir-linkedin"></i> </a>.social-links > li > aImpact: serious
Failure 1:
<ul>.footer-links:nth-child(1) > ulFailure 2:
<ul>.footer-links:nth-child(2) > ulFailure 3:
<ul>.footer-links:nth-child(3) > ulFailure 4:
<ul>.footer-links:nth-child(4) > ulImpact: moderate
Failure 1:
<div class="elementor-element elementor-element-e499878 e-flex e-con-boxed e-con e-parent" data-id="e499878" data-element_type="container" data-e-type="container" data-settings="{"background_background":"gradient"}">.elementor-element-e499878Failure 2:
<div class="elementor-element elementor-element-92a3565 e-flex e-con-boxed e-con e-parent" data-id="92a3565" data-element_type="container" data-e-type="container">.elementor-element-92a3565Failure 3:
<div class="elementor-element elementor-element-50ed840 e-con-full e-flex e-con e-parent" data-id="50ed840" data-element_type="container" data-e-type="container">.elementor-element-50ed840Failure 4:
<h6 class="section-subtitle">Contact</h6>.contact-form-body > h6Failure 5:
<h2 class="section-title">Get in Touch</h2>.contact-form-body > .section-title… and 4 more failures for this rule
Impact: serious
Failure 1:
<a href="/contact" class="theme-btn">Contact Us</a>.header-left-right > .theme-btn[href$="contact"]Failure 2:
<h6 class="section-subtitle badge-radius">Our Studies</h6>.badge-radiusFailure 3:
<span class="elementor-button-text">Speak with a Microsoft 365 Consultant</span>.elementor-element-32745f5 > .elementor-widget-container > .elementor-button-wrapper > .elementor-button.elementor-button-link.elementor-size-sm > .elementor-button-content-wrapper > .elementor-button-textFailure 4:
<div class="e-n-accordion-item-title-text"> Can you integrate Teams telephony? </div>summary[data-accordion-index="2"] > .e-n-accordion-item-title-header > .e-n-accordion-item-title-textFailure 5:
<div class="e-n-accordion-item-title-text"> Will this disrupt day-to-day work? </div>summary[data-accordion-index="3"] > .e-n-accordion-item-title-header > .e-n-accordion-item-title-text… and 8 more failures for this rule
Impact: moderate
Failure 1:
<h6 class="section-subtitle">INSIGHTS</h6>.left > h6Failure 2:
<h6 class="section-subtitle section-subtitle1">Op Ed</h6>.section-subtitle1Failure 3:
<h6 class="section-subtitle">Tips</h6>.news-item.card-h:nth-child(1) > .news-item-body > h6Failure 4:
<h6 class="section-subtitle">Lean</h6>.news-item.card-h:nth-child(2) > .news-item-body > h6Failure 5:
<h6 class="section-subtitle">Contact</h6>.contact-form-body > h6… and 2 more failures for this rule
Impact: critical
Failure 1:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/NEXXT-250-scaled.jpg">.sticky-news > .news-img-box > imgFailure 2:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/64b7ce72cc736c81beadb984_IMG_1582-2-p-800.jpg">.news-item.card-h:nth-child(1) > .news-img-box > imgFailure 3:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/61ac2b0bd942768a049f941a_58-COMPRESSED-p-800.jpeg">.news-item.card-h:nth-child(2) > .news-img-box > imgFailure 4:
<img src="https://nexxt.com.au/wp-content/uploads/2024/11/support2.png">.contact-info:nth-child(1) > imgFailure 5:
<img src="https://nexxt.com.au/wp-content/uploads/2024/11/map1.png">.contact-info:nth-child(2) > imgImpact: moderate
Failure 1:
<header class="header-area">.header-areaImpact: moderate
Failure 1:
<footer class="footer-area">.footer-areaImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: moderate
Failure 1:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: moderate
Failure 1:
<html lang="en-US">htmlFailure 2:
<html>#hs-form-iframe-0Impact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadFailure 2:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: serious
Failure 1:
<a href="/agile-20-years-on" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.theme-btn[href$="agile-20-years-on"]Failure 2:
<a href="/running-a-workshop-part-2-the-art-of-skillful-facilitation" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(1) > .news-item-body > .theme-btnFailure 3:
<a href="/the-seven-deadly-wastes-of-lean" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(2) > .news-item-body > .theme-btnFailure 4:
<a href="https://www.linkedin.com/company/nexxtgroup/"> <i class="iconoir-linkedin"></i> </a>.social-links > li > aImpact: serious
Failure 1:
<ul>.footer-links:nth-child(1) > ulFailure 2:
<ul>.footer-links:nth-child(2) > ulFailure 3:
<ul>.footer-links:nth-child(3) > ulFailure 4:
<ul>.footer-links:nth-child(4) > ulImpact: moderate
Failure 1:
<div class="elementor-element elementor-element-e499878 e-flex e-con-boxed e-con e-parent" data-id="e499878" data-element_type="container" data-e-type="container" data-settings="{"background_background":"gradient"}">.elementor-element-e499878Failure 2:
<div class="elementor-element elementor-element-8ca229b elementor-widget elementor-widget-heading" data-id="8ca229b" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">.elementor-element-8ca229bFailure 3:
<div class="elementor-element elementor-element-9891aff blog-section e-flex e-con-boxed e-con e-parent" data-id="9891aff" data-element_type="container" data-e-type="container">.elementor-element-9891affFailure 4:
<div class="elementor-element elementor-element-35d0a21 e-flex e-con-boxed e-con e-parent" data-id="35d0a21" data-element_type="container" data-e-type="container">.elementor-element-35d0a21Failure 5:
<div class="elementor-element elementor-element-50ed840 e-con-full e-flex e-con e-parent" data-id="50ed840" data-element_type="container" data-e-type="container">.elementor-element-50ed840… and 6 more failures for this rule
Impact: serious
Failure 1:
<a href="/contact" class="theme-btn">Contact Us</a>.header-left-right > .theme-btn[href$="contact"]Failure 2:
<h6 class="section-subtitle">CASE STUDIES</h6>.case-studio-header > h6Failure 3:
<h6 class="section-subtitle">Contact</h6>.contact-form-body > h6Failure 4:
<a target="_blank" href="mailto:info@nexxt.com.au">info@nexxt.com.au</a>a[href$="mailto:info@nexxt.com.au"][target="_blank"]Failure 5:
<input type="submit" class="hs-button primary large" value="Submit">#hs-form-iframe-0… and 5 more failures for this rule
Impact: moderate
Failure 1:
<h6 class="section-subtitle">WHAT WE’RE OFFERING</h6>.left > h6Failure 2:
<h4><a href="">Transformation & Change</a></h4>.service-card.simple-shadow:nth-child(1) > h4Failure 3:
<h6 class="section-subtitle">CASE STUDIES</h6>.case-studio-header > h6Failure 4:
<h4>Accelerating Delivery, Inspiring Change</h4>#development > .case-studio-body.d-flex > .right > .case-studio-contents.card-h.service-card > h4Failure 5:
<h6 class="section-subtitle">Contact</h6>.contact-form-body > h6… and 2 more failures for this rule
Impact: critical
Failure 1:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/11/big-data2.png" class="service-icon">.service-card.simple-shadow:nth-child(1) > .service-icon[decoding="async"]Failure 2:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/11/mentoring.png" class="service-icon">.service-card.simple-shadow:nth-child(2) > .service-icon[decoding="async"]Failure 3:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/11/fast-delivery3.png" class="service-icon">.service-card.simple-shadow:nth-child(3) > .service-icon[decoding="async"]Failure 4:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/10/NEXXT-22-scaled.jpg">#development > .case-studio-body.d-flex > .flex-1.left.d-flex > .case-studio-img-card.simple-shadow > img[decoding="async"]Failure 5:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/11/fast-delivery3.png">#development > .case-studio-body.d-flex > .right > .case-studio-contents.card-h.service-card > img[decoding="async"]… and 2 more failures for this rule
Impact: moderate
Failure 1:
<header class="header-area">.header-areaImpact: moderate
Failure 1:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: serious
Failure 1:
<a href="#" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>#development > .case-studio-body.d-flex > .right > .case-studio-contents.card-h.service-card > .theme-btn[href="#"]Failure 2:
<a href="https://www.linkedin.com/company/nexxtgroup/"> <i class="iconoir-linkedin"></i> </a>.social-links > li > aImpact: serious
Failure 1:
<ul>.footer-links:nth-child(1) > ulFailure 2:
<ul>.footer-links:nth-child(2) > ulFailure 3:
<ul>.footer-links:nth-child(3) > ulFailure 4:
<ul>.footer-links:nth-child(4) > ulImpact: moderate
Failure 1:
<html lang="en-US" en-us""="">htmlFailure 2:
<html>#hs-form-iframe-0Impact: serious
Failure 1:
<a href="/contact" class="theme-btn">Contact Us</a>.header-left-right > .theme-btn[href$="contact"]Failure 2:
<h6 class="section-subtitle">Contact</h6>.contact-form-body > h6Failure 3:
<a target="_blank" href="mailto:info@nexxt.com.au">info@nexxt.com.au</a>a[target="_blank"][href$="mailto:info@nexxt.com.au"]Failure 4:
<input type="submit" class="hs-button primary large" value="Submit">#hs-form-iframe-0Failure 5:
<p>Workshops delivered</p>li:nth-child(1) > p… and 2 more failures for this rule
Impact: moderate
Failure 1:
<h6 class="section-subtitle">Contact</h6>.contact-form-body > h6Failure 2:
<h4>Contact Info</h4>.contact-info:nth-child(1) > h4Failure 3:
<h4>Services</h4>.footer-links:nth-child(1) > h4Impact: critical
Failure 1:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/11/support2.png">.contact-info:nth-child(1) > img[decoding="async"]Failure 2:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/11/map1.png">.contact-info:nth-child(2) > img[decoding="async"]Impact: moderate
Failure 1:
<header class="header-area">.header-areaImpact: moderate
Failure 1:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: serious
Failure 1:
<a href="https://www.linkedin.com/company/nexxtgroup/"> <i class="iconoir-linkedin"></i> </a>.social-links > li > aImpact: serious
Failure 1:
<ul>.footer-links:nth-child(1) > ulFailure 2:
<ul>.footer-links:nth-child(2) > ulFailure 3:
<ul>.footer-links:nth-child(3) > ulFailure 4:
<ul>.footer-links:nth-child(4) > ulImpact: moderate
Failure 1:
<html lang="en-US" en-us""="">htmlFailure 2:
<html>#hs-form-iframe-0Impact: serious
Failure 1:
<a href="/contact" class="theme-btn">Contact Us</a>.header-left-right > .theme-btn[href$="contact"]Failure 2:
<h6 class="section-subtitle badge-radius">Our Studies</h6>.badge-radiusFailure 3:
<h6 class="section-subtitle section-subtitle1">Op Ed</h6>.section-subtitle1Failure 4:
<span class="elementor-button-text">VIEW ALL</span>.elementor-button-textFailure 5:
<h6 class="section-subtitle">Contact</h6>.contact-form-body > h6… and 5 more failures for this rule
Impact: moderate
Failure 1:
<h6 class="section-subtitle">INSIGHTS</h6>.left > h6Failure 2:
<h6 class="section-subtitle section-subtitle1">Op Ed</h6>.section-subtitle1Failure 3:
<h6 class="section-subtitle">Tips</h6>.news-item.card-h:nth-child(1) > .news-item-body > h6Failure 4:
<h6 class="section-subtitle">Lean</h6>.news-item.card-h:nth-child(2) > .news-item-body > h6Failure 5:
<h6 class="section-subtitle">Contact</h6>.contact-form-body > h6… and 2 more failures for this rule
Impact: critical
Failure 1:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/NEXXT-250-scaled.jpg">.sticky-news > .news-img-box > imgFailure 2:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/64b7ce72cc736c81beadb984_IMG_1582-2-p-800.jpg">.news-item.card-h:nth-child(1) > .news-img-box > imgFailure 3:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/61ac2b0bd942768a049f941a_58-COMPRESSED-p-800.jpeg">.news-item.card-h:nth-child(2) > .news-img-box > imgFailure 4:
<img src="https://nexxt.com.au/wp-content/uploads/2024/11/support2.png">.contact-info:nth-child(1) > imgFailure 5:
<img src="https://nexxt.com.au/wp-content/uploads/2024/11/map1.png">.contact-info:nth-child(2) > imgImpact: moderate
Failure 1:
<header class="header-area">.header-areaImpact: moderate
Failure 1:
<footer class="footer-area">.footer-areaImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: moderate
Failure 1:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: moderate
Failure 1:
<html lang="en-US">htmlFailure 2:
<html>#hs-form-iframe-0Impact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadFailure 2:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: serious
Failure 1:
<a href="/agile-20-years-on" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.theme-btn[href$="agile-20-years-on"]Failure 2:
<a href="/running-a-workshop-part-2-the-art-of-skillful-facilitation" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(1) > .news-item-body > .theme-btnFailure 3:
<a href="/the-seven-deadly-wastes-of-lean" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(2) > .news-item-body > .theme-btnFailure 4:
<a href="https://www.linkedin.com/company/nexxtgroup/"> <i class="iconoir-linkedin"></i> </a>.social-links > li > aImpact: serious
Failure 1:
<ul>.footer-links:nth-child(1) > ulFailure 2:
<ul>.footer-links:nth-child(2) > ulFailure 3:
<ul>.footer-links:nth-child(3) > ulFailure 4:
<ul>.footer-links:nth-child(4) > ulImpact: moderate
Failure 1:
<div class="elementor-element elementor-element-e499878 e-flex e-con-boxed e-con e-parent" data-id="e499878" data-element_type="container" data-e-type="container" data-settings="{"background_background":"gradient"}">.elementor-element-e499878Failure 2:
<div class="elementor-element elementor-element-8ca229b elementor-widget elementor-widget-heading" data-id="8ca229b" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">.elementor-element-8ca229bFailure 3:
<div class="c-ih-insights-header t-section"><p>On the 20th anniversary of the Agile Manifesto, we ask whether the adoption of agile thinking and practices has improved business operations?</p></div>.c-ih-insights-headerFailure 4:
<p>2021 marked the 20th anniversary of the Agile Manifesto, created when 17 software experts met in Snowbird, Utah, to discuss how to radically improve the delivery of software products.</p>.c-ic__rich-text > p:nth-child(1)Failure 5:
<p>Since that time, the Agile movement has grown to be a global phenomenon, not only in the software field, but across all aspects of business and government. And understandably so – what business or government agency would not want to be seen as being agile?</p>.c-ic__rich-text > p:nth-child(2)… and 28 more failures for this rule
Impact: serious
Failure 1:
<a href="/contact" class="theme-btn">Contact Us</a>.header-left-right > .theme-btn[href$="contact"]Failure 2:
<span class="elementor-heading-title elementor-size-default">OUR VALUES</span>.elementor-element-82eac61 > .elementor-widget-container > .elementor-heading-title.elementor-size-defaultFailure 3:
<span class="elementor-button-text">Book an appointment</span>.elementor-button-textFailure 4:
<h6 class="section-subtitle">WHAT WE’RE OFFERING</h6>.left > h6Failure 5:
<a href="/contact" class="theme-btn">Book an appointment now</a>.cta-body > .theme-btn[href$="contact"]… and 6 more failures for this rule
Impact: moderate
Failure 1:
<h6 class="section-subtitle">WHAT WE’RE OFFERING</h6>.left > h6Failure 2:
<h4><a href="/transformation-and-change">Transformation & Change</a></h4>.service-card.simple-shadow:nth-child(1) > h4Failure 3:
<h6 class="section-subtitle">Contact</h6>.contact-form-body > h6Failure 4:
<h4>Contact Info</h4>.contact-info:nth-child(1) > h4Failure 5:
<h4>Services</h4>.footer-links:nth-child(1) > h4Impact: critical
Failure 1:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/11/Badge.jpeg" style="touch-action: pan-y;">.client-logo.simple-shadow:nth-child(1) > img[decoding="async"]Failure 2:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/11/linfox.png" style="touch-action: pan-y;">.client-logo.simple-shadow:nth-child(2) > img[decoding="async"]Failure 3:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2025/02/image002.png" style="touch-action: pan-y;">.client-logo.simple-shadow:nth-child(3) > img[decoding="async"]Failure 4:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/11/dominos.png" style="touch-action: pan-y;">.client-logo.simple-shadow:nth-child(4) > img[decoding="async"]Failure 5:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/11/datatorque.png" style="touch-action: pan-y;">.client-logo.simple-shadow:nth-child(5) > img[decoding="async"]… and 9 more failures for this rule
Impact: moderate
Failure 1:
<header class="header-area">.header-areaImpact: moderate
Failure 1:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: serious
Failure 1:
<a href="https://www.linkedin.com/company/nexxtgroup/"> <i class="iconoir-linkedin"></i> </a>.social-links > li > aImpact: serious
Failure 1:
<ul>.footer-links:nth-child(1) > ulFailure 2:
<ul>.footer-links:nth-child(2) > ulFailure 3:
<ul>.footer-links:nth-child(3) > ulFailure 4:
<ul>.footer-links:nth-child(4) > ulImpact: serious
Failure 1:
<a href="/contact" class="theme-btn">Contact Us</a>.header-left-right > .theme-btn[href$="contact"]Failure 2:
<h6 class="section-subtitle badge-radius">Our Studies</h6>.badge-radiusFailure 3:
<strong>Nexxt’s Solution:</strong>p:nth-child(14) > strongFailure 4:
<strong>Nexxt’s Solution:</strong>p:nth-child(19) > strongFailure 5:
<strong>Nexxt’s Solution:</strong>p:nth-child(24) > strong… and 9 more failures for this rule
Impact: moderate
Failure 1:
<h6 class="section-subtitle">INSIGHTS</h6>.left > h6Failure 2:
<h6 class="section-subtitle section-subtitle1">Op Ed</h6>.section-subtitle1Failure 3:
<h6 class="section-subtitle">Tips</h6>.news-item.card-h:nth-child(1) > .news-item-body > h6Failure 4:
<h6 class="section-subtitle">Lean</h6>.news-item.card-h:nth-child(2) > .news-item-body > h6Failure 5:
<h6 class="section-subtitle">Contact</h6>.contact-form-body > h6… and 2 more failures for this rule
Impact: critical
Failure 1:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/NEXXT-250-scaled.jpg">.sticky-news > .news-img-box > imgFailure 2:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/64b7ce72cc736c81beadb984_IMG_1582-2-p-800.jpg">.news-item.card-h:nth-child(1) > .news-img-box > imgFailure 3:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/61ac2b0bd942768a049f941a_58-COMPRESSED-p-800.jpeg">.news-item.card-h:nth-child(2) > .news-img-box > imgFailure 4:
<img src="https://nexxt.com.au/wp-content/uploads/2024/11/support2.png">.contact-info:nth-child(1) > imgFailure 5:
<img src="https://nexxt.com.au/wp-content/uploads/2024/11/map1.png">.contact-info:nth-child(2) > imgImpact: moderate
Failure 1:
<header class="header-area">.header-areaImpact: moderate
Failure 1:
<footer class="footer-area">.footer-areaImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: moderate
Failure 1:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: moderate
Failure 1:
<html lang="en-US">htmlFailure 2:
<html>#hs-form-iframe-0Impact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadFailure 2:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: serious
Failure 1:
<a href="/agile-20-years-on" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.theme-btn[href$="agile-20-years-on"]Failure 2:
<a href="/running-a-workshop-part-2-the-art-of-skillful-facilitation" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(1) > .news-item-body > .theme-btnFailure 3:
<a href="/the-seven-deadly-wastes-of-lean" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(2) > .news-item-body > .theme-btnFailure 4:
<a href="https://www.linkedin.com/company/nexxtgroup/"> <i class="iconoir-linkedin"></i> </a>.social-links > li > aImpact: serious
Failure 1:
<ul>.footer-links:nth-child(1) > ulFailure 2:
<ul>.footer-links:nth-child(2) > ulFailure 3:
<ul>.footer-links:nth-child(3) > ulFailure 4:
<ul>.footer-links:nth-child(4) > ulImpact: moderate
Failure 1:
<div class="elementor-element elementor-element-e499878 e-flex e-con-boxed e-con e-parent" data-id="e499878" data-element_type="container" data-e-type="container" data-settings="{"background_background":"gradient"}">.elementor-element-e499878Failure 2:
<div class="elementor-element elementor-element-8ca229b elementor-widget elementor-widget-heading" data-id="8ca229b" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">.elementor-element-8ca229bFailure 3:
<div class="elementor-element elementor-element-c445e3a e-flex e-con-boxed e-con e-parent" data-id="c445e3a" data-element_type="container" data-e-type="container">.elementor-element-c445e3aFailure 4:
<div class="elementor-element elementor-element-50ed840 e-con-full e-flex e-con e-parent" data-id="50ed840" data-element_type="container" data-e-type="container">.elementor-element-50ed840Failure 5:
<h6 class="section-subtitle">Contact</h6>.contact-form-body > h6… and 5 more failures for this rule
Impact: serious
Failure 1:
<a href="/contact" class="theme-btn">Contact Us</a>.header-left-right > .theme-btn[href$="contact"]Failure 2:
<h6 class="section-subtitle badge-radius">Our Studies</h6>.badge-radiusFailure 3:
<span class="elementor-button-text">Talk to a Change Lead</span>.elementor-element-044fdbf > .elementor-widget-container > .elementor-button-wrapper > .elementor-button.elementor-button-link.elementor-size-sm > .elementor-button-content-wrapper > .elementor-button-textFailure 4:
<div class="e-n-accordion-item-title-text"> Do you customise for frontline vs leadership? </div>summary[data-accordion-index="2"] > .e-n-accordion-item-title-header > .e-n-accordion-item-title-textFailure 5:
<div class="e-n-accordion-item-title-text"> Can you align with current programs (e.g., Teams rollout)? </div>summary[data-accordion-index="3"] > .e-n-accordion-item-title-header > .e-n-accordion-item-title-text… and 8 more failures for this rule
Impact: moderate
Failure 1:
<h6 class="section-subtitle">INSIGHTS</h6>.left > h6Failure 2:
<h6 class="section-subtitle section-subtitle1">Op Ed</h6>.section-subtitle1Failure 3:
<h6 class="section-subtitle">Tips</h6>.news-item.card-h:nth-child(1) > .news-item-body > h6Failure 4:
<h6 class="section-subtitle">Lean</h6>.news-item.card-h:nth-child(2) > .news-item-body > h6Failure 5:
<h6 class="section-subtitle">Contact</h6>.contact-form-body > h6… and 2 more failures for this rule
Impact: critical
Failure 1:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/NEXXT-250-scaled.jpg">.sticky-news > .news-img-box > imgFailure 2:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/64b7ce72cc736c81beadb984_IMG_1582-2-p-800.jpg">.news-item.card-h:nth-child(1) > .news-img-box > imgFailure 3:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/61ac2b0bd942768a049f941a_58-COMPRESSED-p-800.jpeg">.news-item.card-h:nth-child(2) > .news-img-box > imgFailure 4:
<img src="https://nexxt.com.au/wp-content/uploads/2024/11/support2.png">.contact-info:nth-child(1) > imgFailure 5:
<img src="https://nexxt.com.au/wp-content/uploads/2024/11/map1.png">.contact-info:nth-child(2) > imgImpact: moderate
Failure 1:
<header class="header-area">.header-areaImpact: moderate
Failure 1:
<footer class="footer-area">.footer-areaImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: moderate
Failure 1:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: moderate
Failure 1:
<html lang="en-US">htmlFailure 2:
<html>#hs-form-iframe-0Impact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadFailure 2:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: serious
Failure 1:
<a href="/agile-20-years-on" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.theme-btn[href$="agile-20-years-on"]Failure 2:
<a href="/running-a-workshop-part-2-the-art-of-skillful-facilitation" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(1) > .news-item-body > .theme-btnFailure 3:
<a href="/the-seven-deadly-wastes-of-lean" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(2) > .news-item-body > .theme-btnFailure 4:
<a href="https://www.linkedin.com/company/nexxtgroup/"> <i class="iconoir-linkedin"></i> </a>.social-links > li > aImpact: serious
Failure 1:
<ul>.footer-links:nth-child(1) > ulFailure 2:
<ul>.footer-links:nth-child(2) > ulFailure 3:
<ul>.footer-links:nth-child(3) > ulFailure 4:
<ul>.footer-links:nth-child(4) > ulImpact: moderate
Failure 1:
<div class="elementor-element elementor-element-e499878 e-flex e-con-boxed e-con e-parent" data-id="e499878" data-element_type="container" data-e-type="container" data-settings="{"background_background":"gradient"}">.elementor-element-e499878Failure 2:
<div class="elementor-element elementor-element-8ca229b elementor-widget elementor-widget-heading" data-id="8ca229b" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">.elementor-element-8ca229bFailure 3:
<div class="elementor-element elementor-element-2ca2648 blog-section e-flex e-con-boxed e-con e-parent" data-id="2ca2648" data-element_type="container" data-e-type="container">.elementor-element-2ca2648Failure 4:
<div class="elementor-element elementor-element-1d449b7 e-flex e-con-boxed e-con e-parent" data-id="1d449b7" data-element_type="container" data-e-type="container">.elementor-element-1d449b7Failure 5:
<div class="elementor-element elementor-element-50ed840 e-con-full e-flex e-con e-parent" data-id="50ed840" data-element_type="container" data-e-type="container">.elementor-element-50ed840… and 6 more failures for this rule
Impact: serious
Failure 1:
<a href="/contact" class="theme-btn">Contact Us</a>.header-left-right > .theme-btn[href$="contact"]Failure 2:
<h6 class="section-subtitle">Benefits</h6>.about-service7-content > .section-header > h6Failure 3:
<h6 class="section-subtitle">FEATURES</h6>.feature3-body > .section-header > h6Failure 4:
<h6 class="section-subtitle">CASE STUDIES</h6>.case-studio-header > h6Failure 5:
<h6 class="section-subtitle section-subtitle1">Op Ed</h6>.section-subtitle1… and 7 more failures for this rule
Impact: minor
Failure 1:
<h6 class="section-subtitle"> </h6>.section-header.w-full.justify-content-between > .left > h6Failure 2:
<h2 class="section-title"> </h2>.section-header.w-full.justify-content-between > .left > .section-titleImpact: moderate
Failure 1:
<h4>Projects Delivered Successfully</h4>.hero-company-box.simple-shadow:nth-child(1) > h4Failure 2:
<h4>Tailored Workshops Delivered</h4>.hero-company-box.simple-shadow:nth-child(2) > h4Failure 3:
<h4>Professionals Coached</h4>.hero-company-box.simple-shadow:nth-child(3) > h4Failure 4:
<h4>Established</h4>.hero-company-box.simple-shadow:nth-child(4) > h4Failure 5:
<h6 class="section-subtitle"> </h6>.section-header.w-full.justify-content-between > .left > h6… and 12 more failures for this rule
Impact: critical
Failure 1:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/11/NEXXT-54-scaled.jpg">.hero-service-about > img[decoding="async"]Failure 2:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/11/NEXXT-83-scaled.jpg">.about-service7-img-box > img[decoding="async"]:nth-child(1)Failure 3:
<img decoding="async" src="">img[src=""][decoding="async"]Failure 4:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/10/NEXXT-22-scaled.jpg">#development > .case-studio-body.d-flex > .flex-1.left.d-flex > .case-studio-img-card.simple-shadow > img[decoding="async"]Failure 5:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/11/fast-delivery3.png">#development > .case-studio-body.d-flex > .right > .case-studio-contents.service-card.card-h > img[decoding="async"]… and 5 more failures for this rule
Impact: moderate
Failure 1:
<header class="header-area">.header-areaImpact: moderate
Failure 1:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: serious
Failure 1:
<a href="/contact" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>#development > .case-studio-body.d-flex > .right > .case-studio-contents.service-card.card-h > .theme-btn[href$="contact"]Failure 2:
<a href="/agile-20-years-on" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.theme-btn[href$="agile-20-years-on"]Failure 3:
<a href="/running-a-workshop-part-2-the-art-of-skillful-facilitation" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(1) > .news-item-body > .theme-btnFailure 4:
<a href="/the-seven-deadly-wastes-of-lean" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(2) > .news-item-body > .theme-btnFailure 5:
<a href="https://www.linkedin.com/company/nexxtgroup/"> <i class="iconoir-linkedin"></i> </a>.social-links > li > aImpact: serious
Failure 1:
<ul>.footer-links:nth-child(1) > ulFailure 2:
<ul>.footer-links:nth-child(2) > ulFailure 3:
<ul>.footer-links:nth-child(3) > ulFailure 4:
<ul>.footer-links:nth-child(4) > ulImpact: serious
Failure 1:
<a href="/contact" class="theme-btn">Contact Us</a>.header-left-right > .theme-btn[href$="contact"]Failure 2:
<h6 class="section-subtitle badge-radius">Our Studies</h6>.badge-radiusFailure 3:
<strong>Nexxt’s Approach:</strong>p:nth-child(9) > strongFailure 4:
<strong>Nexxt’s Approach:</strong>p:nth-child(12) > strongFailure 5:
<strong>Nexxt’s Approach:</strong>p:nth-child(15) > strong… and 9 more failures for this rule
Impact: moderate
Failure 1:
<h6 class="section-subtitle">INSIGHTS</h6>.left > h6Failure 2:
<h6 class="section-subtitle section-subtitle1">Op Ed</h6>.section-subtitle1Failure 3:
<h6 class="section-subtitle">Tips</h6>.news-item.card-h:nth-child(1) > .news-item-body > h6Failure 4:
<h6 class="section-subtitle">Lean</h6>.news-item.card-h:nth-child(2) > .news-item-body > h6Failure 5:
<h6 class="section-subtitle">Contact</h6>.contact-form-body > h6… and 2 more failures for this rule
Impact: critical
Failure 1:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/NEXXT-250-scaled.jpg">.sticky-news > .news-img-box > imgFailure 2:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/64b7ce72cc736c81beadb984_IMG_1582-2-p-800.jpg">.news-item.card-h:nth-child(1) > .news-img-box > imgFailure 3:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/61ac2b0bd942768a049f941a_58-COMPRESSED-p-800.jpeg">.news-item.card-h:nth-child(2) > .news-img-box > imgFailure 4:
<img src="https://nexxt.com.au/wp-content/uploads/2024/11/support2.png">.contact-info:nth-child(1) > imgFailure 5:
<img src="https://nexxt.com.au/wp-content/uploads/2024/11/map1.png">.contact-info:nth-child(2) > imgImpact: moderate
Failure 1:
<header class="header-area">.header-areaImpact: moderate
Failure 1:
<footer class="footer-area">.footer-areaImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: moderate
Failure 1:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: moderate
Failure 1:
<html lang="en-US">htmlFailure 2:
<html>#hs-form-iframe-0Impact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadFailure 2:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: serious
Failure 1:
<a href="/agile-20-years-on" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.theme-btn[href$="agile-20-years-on"]Failure 2:
<a href="/running-a-workshop-part-2-the-art-of-skillful-facilitation" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(1) > .news-item-body > .theme-btnFailure 3:
<a href="/the-seven-deadly-wastes-of-lean" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(2) > .news-item-body > .theme-btnFailure 4:
<a href="https://www.linkedin.com/company/nexxtgroup/"> <i class="iconoir-linkedin"></i> </a>.social-links > li > aImpact: serious
Failure 1:
<ul>.footer-links:nth-child(1) > ulFailure 2:
<ul>.footer-links:nth-child(2) > ulFailure 3:
<ul>.footer-links:nth-child(3) > ulFailure 4:
<ul>.footer-links:nth-child(4) > ulImpact: moderate
Failure 1:
<div class="elementor-element elementor-element-e499878 e-flex e-con-boxed e-con e-parent" data-id="e499878" data-element_type="container" data-e-type="container" data-settings="{"background_background":"gradient"}">.elementor-element-e499878Failure 2:
<div class="elementor-element elementor-element-8ca229b elementor-widget elementor-widget-heading" data-id="8ca229b" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">.elementor-element-8ca229bFailure 3:
<div class="elementor-element elementor-element-690a031 e-flex e-con-boxed e-con e-parent" data-id="690a031" data-element_type="container" data-e-type="container">.elementor-element-690a031Failure 4:
<div class="elementor-element elementor-element-50ed840 e-con-full e-flex e-con e-parent" data-id="50ed840" data-element_type="container" data-e-type="container">.elementor-element-50ed840Failure 5:
<h6 class="section-subtitle">Contact</h6>.contact-form-body > h6… and 5 more failures for this rule
Impact: serious
Failure 1:
<a href="/contact" class="theme-btn">Contact Us</a>.header-left-right > .theme-btn[href$="contact"]Failure 2:
<h6 class="section-subtitle badge-radius">Our Studies</h6>.badge-radiusFailure 3:
<strong>Digital transformation</strong>p:nth-child(2) > strongFailure 4:
<a href="https://nexxt.com.au">Nexxt.com.au</a>strong:nth-child(1) > a[href$="nexxt.com.au"]Failure 5:
<strong>digital transformation consulting</strong>p:nth-child(3) > strong:nth-child(2)… and 26 more failures for this rule
Impact: moderate
Failure 1:
<h6 class="section-subtitle">INSIGHTS</h6>.left > h6Failure 2:
<h6 class="section-subtitle section-subtitle1">Op Ed</h6>.section-subtitle1Failure 3:
<h6 class="section-subtitle">Tips</h6>.news-item.card-h:nth-child(1) > .news-item-body > h6Failure 4:
<h6 class="section-subtitle">Lean</h6>.news-item.card-h:nth-child(2) > .news-item-body > h6Failure 5:
<h6 class="section-subtitle">Contact</h6>.contact-form-body > h6… and 2 more failures for this rule
Impact: critical
Failure 1:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/NEXXT-250-scaled.jpg">.sticky-news > .news-img-box > imgFailure 2:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/64b7ce72cc736c81beadb984_IMG_1582-2-p-800.jpg">.news-item.card-h:nth-child(1) > .news-img-box > imgFailure 3:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/61ac2b0bd942768a049f941a_58-COMPRESSED-p-800.jpeg">.news-item.card-h:nth-child(2) > .news-img-box > imgFailure 4:
<img src="https://nexxt.com.au/wp-content/uploads/2024/11/support2.png">.contact-info:nth-child(1) > imgFailure 5:
<img src="https://nexxt.com.au/wp-content/uploads/2024/11/map1.png">.contact-info:nth-child(2) > imgImpact: moderate
Failure 1:
<header class="header-area">.header-areaImpact: moderate
Failure 1:
<footer class="footer-area">.footer-areaImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: moderate
Failure 1:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: moderate
Failure 1:
<html lang="en-US">htmlFailure 2:
<html>#hs-form-iframe-0Impact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadFailure 2:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: serious
Failure 1:
<a href="/agile-20-years-on" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.theme-btn[href$="agile-20-years-on"]Failure 2:
<a href="/running-a-workshop-part-2-the-art-of-skillful-facilitation" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(1) > .news-item-body > .theme-btnFailure 3:
<a href="/the-seven-deadly-wastes-of-lean" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(2) > .news-item-body > .theme-btnFailure 4:
<a href="https://www.linkedin.com/company/nexxtgroup/"> <i class="iconoir-linkedin"></i> </a>.social-links > li > aImpact: serious
Failure 1:
<ul>.footer-links:nth-child(1) > ulFailure 2:
<ul>.footer-links:nth-child(2) > ulFailure 3:
<ul>.footer-links:nth-child(3) > ulFailure 4:
<ul>.footer-links:nth-child(4) > ulImpact: moderate
Failure 1:
<div class="elementor-element elementor-element-e499878 e-flex e-con-boxed e-con e-parent" data-id="e499878" data-element_type="container" data-e-type="container" data-settings="{"background_background":"gradient"}">.elementor-element-e499878Failure 2:
<div class="elementor-element elementor-element-8ca229b elementor-widget elementor-widget-heading" data-id="8ca229b" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">.elementor-element-8ca229bFailure 3:
<div class="elementor-element elementor-element-b097045 e-flex e-con-boxed e-con e-parent" data-id="b097045" data-element_type="container" data-e-type="container">.elementor-element-b097045Failure 4:
<div class="elementor-element elementor-element-50ed840 e-con-full e-flex e-con e-parent" data-id="50ed840" data-element_type="container" data-e-type="container">.elementor-element-50ed840Failure 5:
<h6 class="section-subtitle">Contact</h6>.contact-form-body > h6… and 5 more failures for this rule
Impact: minor
Failure 1:
<article class="elementor-post elementor-grid-item post-8568 post type-post status-publish format-standard has-post-thumbnail hentry category-blog" role="listitem">.post-8568Failure 2:
<article class="elementor-post elementor-grid-item post-8559 post type-post status-publish format-standard has-post-thumbnail hentry category-blog" role="listitem">.post-8559Failure 3:
<article class="elementor-post elementor-grid-item post-8551 post type-post status-publish format-standard has-post-thumbnail hentry category-blog" role="listitem">.post-8551Failure 4:
<article class="elementor-post elementor-grid-item post-8533 post type-post status-publish format-standard has-post-thumbnail hentry category-blog" role="listitem">.post-8533Failure 5:
<article class="elementor-post elementor-grid-item post-8525 post type-post status-publish format-standard has-post-thumbnail hentry category-blog" role="listitem">.post-8525… and 1 more failures for this rule
Impact: serious
Failure 1:
<a href="/contact" class="theme-btn">Contact Us</a>.header-left-right > .theme-btn[href$="contact"]Failure 2:
<a href="https://nexxt.com.au/it-consultant-brisbane-sme-guide/"> IT Consultant Brisbane for SMEs: Services, Pricing Signals & When to Engage </a>.post-8568 > .elementor-post__text > .elementor-post__title > aFailure 3:
<p>If you’re spinning up initiatives without clear outcomes or fighting tool sprawl, an IT consultant in Brisbane can align strategy, delivery and change so work</p>.post-8568 > .elementor-post__text > .elementor-post__excerpt > pFailure 4:
<a class="elementor-post__read-more" href="https://nexxt.com.au/it-consultant-brisbane-sme-guide/" aria-label="Read more about IT Consultant Brisbane for SMEs: Services, Pricing Signals & When to Engage" tabindex="-1"> Read More » </a>.post-8568 > .elementor-post__text > .elementor-post__read-moreFailure 5:
<a href="https://nexxt.com.au/office-365-consulting-services-australia/"> Office 365 Consulting Services (Australia) </a>.post-8559 > .elementor-post__text > .elementor-post__title > a… and 14 more failures for this rule
Impact: moderate
Failure 1:
<h4>Services</h4>.footer-links:nth-child(1) > h4Impact: moderate
Failure 1:
<header class="header-area">.header-areaImpact: moderate
Failure 1:
<footer class="footer-area">.footer-areaImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: moderate
Failure 1:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: moderate
Failure 1:
<html lang="en-US">htmlImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadFailure 2:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: serious
Failure 1:
<a href="https://www.linkedin.com/company/nexxtgroup/"> <i class="iconoir-linkedin"></i> </a>.social-links > li > aImpact: serious
Failure 1:
<ul>.footer-links:nth-child(1) > ulFailure 2:
<ul>.footer-links:nth-child(2) > ulFailure 3:
<ul>.footer-links:nth-child(3) > ulFailure 4:
<ul>.footer-links:nth-child(4) > ulImpact: moderate
Failure 1:
<html lang="en-US">htmlImpact: moderate
Failure 1:
<div class="elementor-widget-container">.elementor-element-74889dd > .elementor-widget-containerFailure 2:
<div class="elementor-posts-container elementor-posts elementor-posts--skin-classic elementor-grid elementor-has-item-ratio" role="list">.elementor-posts-containerImpact: minor
Failure 1:
<article class="elementor-post elementor-grid-item post-8568 post type-post status-publish format-standard has-post-thumbnail hentry category-blog" role="listitem">.post-8568Failure 2:
<article class="elementor-post elementor-grid-item post-8559 post type-post status-publish format-standard has-post-thumbnail hentry category-blog" role="listitem">.post-8559Failure 3:
<article class="elementor-post elementor-grid-item post-8551 post type-post status-publish format-standard has-post-thumbnail hentry category-blog" role="listitem">.post-8551Failure 4:
<article class="elementor-post elementor-grid-item post-8533 post type-post status-publish format-standard has-post-thumbnail hentry category-blog" role="listitem">.post-8533Failure 5:
<article class="elementor-post elementor-grid-item post-8525 post type-post status-publish format-standard has-post-thumbnail hentry category-blog" role="listitem">.post-8525… and 3 more failures for this rule
Impact: serious
Failure 1:
<a href="/contact" class="theme-btn">Contact Us</a>.header-left-right > .theme-btn[href$="contact"]Failure 2:
<a href="https://nexxt.com.au/it-consultant-brisbane-sme-guide/"> IT Consultant Brisbane for SMEs: Services, Pricing Signals & When to Engage </a>.post-8568 > .elementor-post__text > .elementor-post__title > aFailure 3:
<p>If you’re spinning up initiatives without clear outcomes or fighting tool sprawl, an IT consultant in Brisbane can align strategy, delivery and change so work</p>.post-8568 > .elementor-post__text > .elementor-post__excerpt > pFailure 4:
<a class="elementor-post__read-more" href="https://nexxt.com.au/it-consultant-brisbane-sme-guide/" aria-label="Read more about IT Consultant Brisbane for SMEs: Services, Pricing Signals & When to Engage" tabindex="-1"> Read More » </a>.post-8568 > .elementor-post__text > .elementor-post__read-moreFailure 5:
<a href="https://nexxt.com.au/office-365-consulting-services-australia/"> Office 365 Consulting Services (Australia) </a>.post-8559 > .elementor-post__text > .elementor-post__title > a… and 27 more failures for this rule
Impact: moderate
Failure 1:
<h6 class="section-subtitle">CASE STUDIES</h6>.case-studio-header > h6Failure 2:
<h4>Accelerating Delivery, Inspiring Change</h4>#development > .case-studio-body.d-flex > .right > .case-studio-contents.service-card.card-h > h4Failure 3:
<h6 class="section-subtitle">Contact</h6>.contact-form-body > h6Failure 4:
<h4>Contact Info</h4>.contact-info:nth-child(1) > h4Failure 5:
<h4>Services</h4>.footer-links:nth-child(1) > h4Impact: critical
Failure 1:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/10/NEXXT-22-scaled.jpg">#development > .case-studio-body.d-flex > .flex-1.left.d-flex > .case-studio-img-card.simple-shadow > img[decoding="async"]Failure 2:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/11/fast-delivery3.png">#development > .case-studio-body.d-flex > .right > .case-studio-contents.service-card.card-h > img[decoding="async"]Failure 3:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/11/support2.png">.contact-info:nth-child(1) > img[decoding="async"]Failure 4:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/11/map1.png">.contact-info:nth-child(2) > img[decoding="async"]Impact: moderate
Failure 1:
<header class="header-area">.header-areaImpact: moderate
Failure 1:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: serious
Failure 1:
<a href="/contact" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>#development > .case-studio-body.d-flex > .right > .case-studio-contents.service-card.card-h > .theme-btn[href$="contact"]Failure 2:
<a href="https://www.linkedin.com/company/nexxtgroup/"> <i class="iconoir-linkedin"></i> </a>.social-links > li > aImpact: serious
Failure 1:
<ul>.footer-links:nth-child(1) > ulFailure 2:
<ul>.footer-links:nth-child(2) > ulFailure 3:
<ul>.footer-links:nth-child(3) > ulFailure 4:
<ul>.footer-links:nth-child(4) > ulImpact: moderate
Failure 1:
<html lang="en-US" en-us""="">htmlFailure 2:
<html>#hs-form-iframe-0Impact: serious
Failure 1:
<a href="/contact" class="theme-btn">Contact Us</a>.header-left-right > .theme-btn[href$="contact"]Failure 2:
<h6 class="section-subtitle badge-radius">Our Studies</h6>.badge-radiusFailure 3:
<span class="elementor-button-text">Speak with a Brisbane Consultant</span>.elementor-element-63025cf > .elementor-widget-container > .elementor-button-wrapper > .elementor-button.elementor-button-link.elementor-size-sm > .elementor-button-content-wrapper > .elementor-button-textFailure 4:
<div class="e-n-accordion-item-title-text"> Do you work on-site? </div>summary[data-accordion-index="2"] > .e-n-accordion-item-title-header > .e-n-accordion-item-title-textFailure 5:
<div class="e-n-accordion-item-title-text"> Can you help hire or augment tech roles? </div>summary[data-accordion-index="3"] > .e-n-accordion-item-title-header > .e-n-accordion-item-title-text… and 8 more failures for this rule
Impact: moderate
Failure 1:
<h6 class="section-subtitle">INSIGHTS</h6>.left > h6Failure 2:
<h6 class="section-subtitle section-subtitle1">Op Ed</h6>.section-subtitle1Failure 3:
<h6 class="section-subtitle">Tips</h6>.news-item.card-h:nth-child(1) > .news-item-body > h6Failure 4:
<h6 class="section-subtitle">Lean</h6>.news-item.card-h:nth-child(2) > .news-item-body > h6Failure 5:
<h6 class="section-subtitle">Contact</h6>.contact-form-body > h6… and 2 more failures for this rule
Impact: critical
Failure 1:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/NEXXT-250-scaled.jpg">.sticky-news > .news-img-box > imgFailure 2:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/64b7ce72cc736c81beadb984_IMG_1582-2-p-800.jpg">.news-item.card-h:nth-child(1) > .news-img-box > imgFailure 3:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/61ac2b0bd942768a049f941a_58-COMPRESSED-p-800.jpeg">.news-item.card-h:nth-child(2) > .news-img-box > imgFailure 4:
<img src="https://nexxt.com.au/wp-content/uploads/2024/11/support2.png">.contact-info:nth-child(1) > imgFailure 5:
<img src="https://nexxt.com.au/wp-content/uploads/2024/11/map1.png">.contact-info:nth-child(2) > imgImpact: moderate
Failure 1:
<header class="header-area">.header-areaImpact: moderate
Failure 1:
<footer class="footer-area">.footer-areaImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: moderate
Failure 1:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: moderate
Failure 1:
<html lang="en-US">htmlFailure 2:
<html>#hs-form-iframe-0Impact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadFailure 2:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: serious
Failure 1:
<a href="/agile-20-years-on" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.theme-btn[href$="agile-20-years-on"]Failure 2:
<a href="/running-a-workshop-part-2-the-art-of-skillful-facilitation" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(1) > .news-item-body > .theme-btnFailure 3:
<a href="/the-seven-deadly-wastes-of-lean" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(2) > .news-item-body > .theme-btnFailure 4:
<a href="https://www.linkedin.com/company/nexxtgroup/"> <i class="iconoir-linkedin"></i> </a>.social-links > li > aImpact: serious
Failure 1:
<ul>.footer-links:nth-child(1) > ulFailure 2:
<ul>.footer-links:nth-child(2) > ulFailure 3:
<ul>.footer-links:nth-child(3) > ulFailure 4:
<ul>.footer-links:nth-child(4) > ulImpact: moderate
Failure 1:
<div class="elementor-element elementor-element-e499878 e-flex e-con-boxed e-con e-parent" data-id="e499878" data-element_type="container" data-e-type="container" data-settings="{"background_background":"gradient"}">.elementor-element-e499878Failure 2:
<div class="elementor-element elementor-element-8ca229b elementor-widget elementor-widget-heading" data-id="8ca229b" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">.elementor-element-8ca229bFailure 3:
<div class="elementor-element elementor-element-9dc8bea blog-section e-flex e-con-boxed e-con e-parent" data-id="9dc8bea" data-element_type="container" data-e-type="container">.elementor-element-9dc8beaFailure 4:
<div class="elementor-element elementor-element-421dda1 e-flex e-con-boxed e-con e-parent" data-id="421dda1" data-element_type="container" data-e-type="container">.elementor-element-421dda1Failure 5:
<div class="elementor-element elementor-element-50ed840 e-con-full e-flex e-con e-parent" data-id="50ed840" data-element_type="container" data-e-type="container">.elementor-element-50ed840… and 6 more failures for this rule
Impact: serious
Failure 1:
<a href="/contact" class="theme-btn">Contact Us</a>.header-left-right > .theme-btn[href$="contact"]Failure 2:
<h6 class="section-subtitle badge-radius">Our Studies</h6>.badge-radiusFailure 3:
<strong>central nervous system</strong>p:nth-child(7) > strongFailure 4:
<strong>Microsoft Partner</strong>li:nth-child(1) > strongFailure 5:
<strong>real-world ways of working</strong>li:nth-child(2) > strong… and 11 more failures for this rule
Impact: moderate
Failure 1:
<h6 class="section-subtitle">INSIGHTS</h6>.left > h6Failure 2:
<h6 class="section-subtitle section-subtitle1">Op Ed</h6>.section-subtitle1Failure 3:
<h6 class="section-subtitle">Tips</h6>.news-item.card-h:nth-child(1) > .news-item-body > h6Failure 4:
<h6 class="section-subtitle">Lean</h6>.news-item.card-h:nth-child(2) > .news-item-body > h6Failure 5:
<h6 class="section-subtitle">Contact</h6>.contact-form-body > h6… and 2 more failures for this rule
Impact: critical
Failure 1:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/NEXXT-250-scaled.jpg">.sticky-news > .news-img-box > imgFailure 2:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/64b7ce72cc736c81beadb984_IMG_1582-2-p-800.jpg">.news-item.card-h:nth-child(1) > .news-img-box > imgFailure 3:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/61ac2b0bd942768a049f941a_58-COMPRESSED-p-800.jpeg">.news-item.card-h:nth-child(2) > .news-img-box > imgFailure 4:
<img src="https://nexxt.com.au/wp-content/uploads/2024/11/support2.png">.contact-info:nth-child(1) > imgFailure 5:
<img src="https://nexxt.com.au/wp-content/uploads/2024/11/map1.png">.contact-info:nth-child(2) > imgImpact: moderate
Failure 1:
<header class="header-area">.header-areaImpact: moderate
Failure 1:
<footer class="footer-area">.footer-areaImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: moderate
Failure 1:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: moderate
Failure 1:
<html lang="en-US">htmlFailure 2:
<html>#hs-form-iframe-0Impact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadFailure 2:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: serious
Failure 1:
<a href="/agile-20-years-on" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.theme-btn[href$="agile-20-years-on"]Failure 2:
<a href="/running-a-workshop-part-2-the-art-of-skillful-facilitation" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(1) > .news-item-body > .theme-btnFailure 3:
<a href="/the-seven-deadly-wastes-of-lean" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(2) > .news-item-body > .theme-btnFailure 4:
<a href="https://www.linkedin.com/company/nexxtgroup/"> <i class="iconoir-linkedin"></i> </a>.social-links > li > aImpact: serious
Failure 1:
<ul>.footer-links:nth-child(1) > ulFailure 2:
<ul>.footer-links:nth-child(2) > ulFailure 3:
<ul>.footer-links:nth-child(3) > ulFailure 4:
<ul>.footer-links:nth-child(4) > ulImpact: moderate
Failure 1:
<div class="elementor-element elementor-element-e499878 e-flex e-con-boxed e-con e-parent" data-id="e499878" data-element_type="container" data-e-type="container" data-settings="{"background_background":"gradient"}">.elementor-element-e499878Failure 2:
<div class="elementor-element elementor-element-8ca229b elementor-widget elementor-widget-heading" data-id="8ca229b" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">.elementor-element-8ca229bFailure 3:
<div class="elementor-element elementor-element-ba9fce7 blog-section e-flex e-con-boxed e-con e-parent" data-id="ba9fce7" data-element_type="container" data-e-type="container">.elementor-element-ba9fce7Failure 4:
<div class="elementor-element elementor-element-50ed840 e-con-full e-flex e-con e-parent" data-id="50ed840" data-element_type="container" data-e-type="container">.elementor-element-50ed840Failure 5:
<h6 class="section-subtitle">Contact</h6>.contact-form-body > h6… and 5 more failures for this rule
Impact: serious
Failure 1:
<a href="/contact" class="theme-btn">Contact Us</a>.header-left-right > .theme-btn[href$="contact"]Impact: moderate
Failure 1:
<h4>Services</h4>.footer-links:nth-child(1) > h4Impact: moderate
Failure 1:
<header class="header-area">.header-areaImpact: moderate
Failure 1:
<footer class="footer-area">.footer-areaImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: moderate
Failure 1:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: moderate
Failure 1:
<html lang="en-US">htmlImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadFailure 2:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: serious
Failure 1:
<a href="https://www.linkedin.com/company/nexxtgroup/"> <i class="iconoir-linkedin"></i> </a>.social-links > li > aImpact: serious
Failure 1:
<ul>.footer-links:nth-child(1) > ulFailure 2:
<ul>.footer-links:nth-child(2) > ulFailure 3:
<ul>.footer-links:nth-child(3) > ulFailure 4:
<ul>.footer-links:nth-child(4) > ulImpact: moderate
Failure 1:
<div data-elementor-type="wp-page" data-elementor-id="3" class="elementor elementor-3" data-elementor-post-type="page">.elementor-3Impact: serious
Failure 1:
<a href="/contact" class="theme-btn">Contact Us</a>.header-left-right > .theme-btn[href$="contact"]Failure 2:
<h6 class="section-subtitle badge-radius">Our Studies</h6>.badge-radiusFailure 3:
<span class="elementor-button-text">Book a Delivery Assurance Audit</span>.elementor-element-52b2028 > .elementor-widget-container > .elementor-button-wrapper > .elementor-button.elementor-button-link.elementor-size-sm > .elementor-button-content-wrapper > .elementor-button-textFailure 4:
<div class="e-n-accordion-item-title-text"> Will it slow the team down? </div>summary[data-accordion-index="2"] > .e-n-accordion-item-title-header > .e-n-accordion-item-title-textFailure 5:
<div class="e-n-accordion-item-title-text"> What if the root cause is staffing? </div>summary[data-accordion-index="3"] > .e-n-accordion-item-title-header > .e-n-accordion-item-title-text… and 8 more failures for this rule
Impact: moderate
Failure 1:
<h6 class="section-subtitle">INSIGHTS</h6>.left > h6Failure 2:
<h6 class="section-subtitle section-subtitle1">Op Ed</h6>.section-subtitle1Failure 3:
<h6 class="section-subtitle">Tips</h6>.news-item.card-h:nth-child(1) > .news-item-body > h6Failure 4:
<h6 class="section-subtitle">Lean</h6>.news-item.card-h:nth-child(2) > .news-item-body > h6Failure 5:
<h6 class="section-subtitle">Contact</h6>.contact-form-body > h6… and 2 more failures for this rule
Impact: critical
Failure 1:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/NEXXT-250-scaled.jpg">.sticky-news > .news-img-box > imgFailure 2:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/64b7ce72cc736c81beadb984_IMG_1582-2-p-800.jpg">.news-item.card-h:nth-child(1) > .news-img-box > imgFailure 3:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/61ac2b0bd942768a049f941a_58-COMPRESSED-p-800.jpeg">.news-item.card-h:nth-child(2) > .news-img-box > imgFailure 4:
<img src="https://nexxt.com.au/wp-content/uploads/2024/11/support2.png">.contact-info:nth-child(1) > imgFailure 5:
<img src="https://nexxt.com.au/wp-content/uploads/2024/11/map1.png">.contact-info:nth-child(2) > imgImpact: moderate
Failure 1:
<header class="header-area">.header-areaImpact: moderate
Failure 1:
<footer class="footer-area">.footer-areaImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: moderate
Failure 1:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: moderate
Failure 1:
<html lang="en-US">htmlFailure 2:
<html>#hs-form-iframe-0Impact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadFailure 2:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: serious
Failure 1:
<a href="/agile-20-years-on" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.theme-btn[href$="agile-20-years-on"]Failure 2:
<a href="/running-a-workshop-part-2-the-art-of-skillful-facilitation" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(1) > .news-item-body > .theme-btnFailure 3:
<a href="/the-seven-deadly-wastes-of-lean" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(2) > .news-item-body > .theme-btnFailure 4:
<a href="https://www.linkedin.com/company/nexxtgroup/"> <i class="iconoir-linkedin"></i> </a>.social-links > li > aImpact: serious
Failure 1:
<ul>.footer-links:nth-child(1) > ulFailure 2:
<ul>.footer-links:nth-child(2) > ulFailure 3:
<ul>.footer-links:nth-child(3) > ulFailure 4:
<ul>.footer-links:nth-child(4) > ulImpact: moderate
Failure 1:
<div class="elementor-element elementor-element-e499878 e-flex e-con-boxed e-con e-parent" data-id="e499878" data-element_type="container" data-e-type="container" data-settings="{"background_background":"gradient"}">.elementor-element-e499878Failure 2:
<div class="elementor-element elementor-element-8ca229b elementor-widget elementor-widget-heading" data-id="8ca229b" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">.elementor-element-8ca229bFailure 3:
<div class="elementor-element elementor-element-bf73a42 blog-section e-flex e-con-boxed e-con e-parent" data-id="bf73a42" data-element_type="container" data-e-type="container">.elementor-element-bf73a42Failure 4:
<div class="elementor-element elementor-element-3a5a136 e-flex e-con-boxed e-con e-parent" data-id="3a5a136" data-element_type="container" data-e-type="container">.elementor-element-3a5a136Failure 5:
<div class="elementor-element elementor-element-50ed840 e-con-full e-flex e-con e-parent" data-id="50ed840" data-element_type="container" data-e-type="container">.elementor-element-50ed840… and 6 more failures for this rule
Impact: serious
Failure 1:
<a href="/contact" class="theme-btn">Contact Us</a>.header-left-right > .theme-btn[href$="contact"]Failure 2:
<h6 class="section-subtitle">Benefits</h6>.about-service7-content > .section-header > h6Failure 3:
<h6 class="section-subtitle">FEATURES</h6>.feature3-body > .section-header > h6Failure 4:
<h6 class="section-subtitle">CASE STUDIES</h6>.case-studio-header > h6Failure 5:
<h6 class="section-subtitle section-subtitle1">Op Ed</h6>.section-subtitle1… and 7 more failures for this rule
Impact: minor
Failure 1:
<h6 class="section-subtitle"> </h6>.section-header.w-full.justify-content-between > .left > h6Failure 2:
<h2 class="section-title"> </h2>.section-header.w-full.justify-content-between > .left > .section-titleImpact: moderate
Failure 1:
<h4>Projects Delivered Successfully</h4>.hero-company-box.simple-shadow:nth-child(1) > h4Failure 2:
<h4>Tailored Workshops Delivered</h4>.hero-company-box.simple-shadow:nth-child(2) > h4Failure 3:
<h4>Professionals Coached</h4>.hero-company-box.simple-shadow:nth-child(3) > h4Failure 4:
<h4>Established</h4>.hero-company-box.simple-shadow:nth-child(4) > h4Failure 5:
<h6 class="section-subtitle"> </h6>.section-header.w-full.justify-content-between > .left > h6… and 12 more failures for this rule
Impact: critical
Failure 1:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/11/NEXXT-138-scaled.jpg">.hero-service-about > img[decoding="async"]Failure 2:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/11/NEXXT-22-1-scaled.jpg">.about-service7-img-box > img[decoding="async"]:nth-child(1)Failure 3:
<img decoding="async" src="">img[src=""][decoding="async"]Failure 4:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/10/NEXXT-22-scaled.jpg">#development > .case-studio-body.d-flex > .flex-1.left.d-flex > .case-studio-img-card.simple-shadow > img[decoding="async"]Failure 5:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/11/fast-delivery3.png">#development > .case-studio-body.d-flex > .right > .case-studio-contents.service-card.card-h > img[decoding="async"]… and 5 more failures for this rule
Impact: moderate
Failure 1:
<header class="header-area">.header-areaImpact: moderate
Failure 1:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: serious
Failure 1:
<a href="/contact" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>#development > .case-studio-body.d-flex > .right > .case-studio-contents.service-card.card-h > .theme-btn[href$="contact"]Failure 2:
<a href="/agile-20-years-on" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.theme-btn[href$="agile-20-years-on"]Failure 3:
<a href="" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(1) > .news-item-body > .theme-btn[href=""]Failure 4:
<a href="" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(2) > .news-item-body > .theme-btn[href=""]Failure 5:
<a href="https://www.linkedin.com/company/nexxtgroup/"> <i class="iconoir-linkedin"></i> </a>.social-links > li > aImpact: serious
Failure 1:
<ul>.footer-links:nth-child(1) > ulFailure 2:
<ul>.footer-links:nth-child(2) > ulFailure 3:
<ul>.footer-links:nth-child(3) > ulFailure 4:
<ul>.footer-links:nth-child(4) > ulImpact: serious
Failure 1:
<a href="/contact" class="theme-btn">Contact Us</a>.header-left-right > .theme-btn[href$="contact"]Failure 2:
<h6 class="section-subtitle badge-radius">Our Studies</h6>.badge-radiusFailure 3:
<em>info@nexxt.com</em>a[href$="mailto:info@nexxt.com.au"] > emFailure 4:
<em>1300 031 931</em>a[href="tel:1300031931"] > emFailure 5:
<h6 class="section-subtitle section-subtitle1">Op Ed</h6>.section-subtitle1… and 7 more failures for this rule
Impact: moderate
Failure 1:
<h6 class="section-subtitle">INSIGHTS</h6>.left > h6Failure 2:
<h6 class="section-subtitle section-subtitle1">Op Ed</h6>.section-subtitle1Failure 3:
<h6 class="section-subtitle">Tips</h6>.news-item.card-h:nth-child(1) > .news-item-body > h6Failure 4:
<h6 class="section-subtitle">Lean</h6>.news-item.card-h:nth-child(2) > .news-item-body > h6Failure 5:
<h6 class="section-subtitle">Contact</h6>.contact-form-body > h6… and 2 more failures for this rule
Impact: critical
Failure 1:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/NEXXT-250-scaled.jpg">.sticky-news > .news-img-box > imgFailure 2:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/64b7ce72cc736c81beadb984_IMG_1582-2-p-800.jpg">.news-item.card-h:nth-child(1) > .news-img-box > imgFailure 3:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/61ac2b0bd942768a049f941a_58-COMPRESSED-p-800.jpeg">.news-item.card-h:nth-child(2) > .news-img-box > imgFailure 4:
<img src="https://nexxt.com.au/wp-content/uploads/2024/11/support2.png">.contact-info:nth-child(1) > imgFailure 5:
<img src="https://nexxt.com.au/wp-content/uploads/2024/11/map1.png">.contact-info:nth-child(2) > imgImpact: moderate
Failure 1:
<header class="header-area">.header-areaImpact: moderate
Failure 1:
<footer class="footer-area">.footer-areaImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: moderate
Failure 1:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: moderate
Failure 1:
<html lang="en-US">htmlFailure 2:
<html>#hs-form-iframe-0Impact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadFailure 2:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: serious
Failure 1:
<a href="/agile-20-years-on" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.theme-btn[href$="agile-20-years-on"]Failure 2:
<a href="/running-a-workshop-part-2-the-art-of-skillful-facilitation" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(1) > .news-item-body > .theme-btnFailure 3:
<a href="/the-seven-deadly-wastes-of-lean" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(2) > .news-item-body > .theme-btnFailure 4:
<a href="https://www.linkedin.com/company/nexxtgroup/"> <i class="iconoir-linkedin"></i> </a>.social-links > li > aImpact: serious
Failure 1:
<ul>.footer-links:nth-child(1) > ulFailure 2:
<ul>.footer-links:nth-child(2) > ulFailure 3:
<ul>.footer-links:nth-child(3) > ulFailure 4:
<ul>.footer-links:nth-child(4) > ulImpact: moderate
Failure 1:
<div class="elementor-element elementor-element-e499878 e-flex e-con-boxed e-con e-parent" data-id="e499878" data-element_type="container" data-e-type="container" data-settings="{"background_background":"gradient"}">.elementor-element-e499878Failure 2:
<div class="elementor-element elementor-element-8ca229b elementor-widget elementor-widget-heading" data-id="8ca229b" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">.elementor-element-8ca229bFailure 3:
<div class="elementor-element elementor-element-a87d340 e-flex e-con-boxed e-con e-parent" data-id="a87d340" data-element_type="container" data-e-type="container">.elementor-element-a87d340Failure 4:
<div class="elementor-element elementor-element-50ed840 e-con-full e-flex e-con e-parent" data-id="50ed840" data-element_type="container" data-e-type="container">.elementor-element-50ed840Failure 5:
<h6 class="section-subtitle">Contact</h6>.contact-form-body > h6… and 5 more failures for this rule
Impact: serious
Failure 1:
<a href="/contact" class="theme-btn">Contact Us</a>.header-left-right > .theme-btn[href$="contact"]Failure 2:
<h6 class="section-subtitle badge-radius">Our Studies</h6>.badge-radiusFailure 3:
<span class="elementor-button-text">Speak with a Nexxt Group consultant today → </span>.elementor-element-bd1e71e > .elementor-widget-container > .elementor-button-wrapper > .elementor-button.elementor-button-link.elementor-size-sm > .elementor-button-content-wrapper > .elementor-button-textFailure 4:
<h6 class="section-subtitle section-subtitle1">Op Ed</h6>.section-subtitle1Failure 5:
<span class="elementor-button-text">VIEW ALL</span>a[href$="insights-inner"] > .elementor-button-content-wrapper > .elementor-button-text… and 6 more failures for this rule
Impact: minor
Failure 1:
<h2><span style="font-size: 2rem;"><br></span></h2>h2:nth-child(15)Impact: moderate
Failure 1:
<h6 class="section-subtitle">INSIGHTS</h6>.left > h6Failure 2:
<h6 class="section-subtitle section-subtitle1">Op Ed</h6>.section-subtitle1Failure 3:
<h6 class="section-subtitle">Tips</h6>.news-item.card-h:nth-child(1) > .news-item-body > h6Failure 4:
<h6 class="section-subtitle">Lean</h6>.news-item.card-h:nth-child(2) > .news-item-body > h6Failure 5:
<h6 class="section-subtitle">Contact</h6>.contact-form-body > h6… and 2 more failures for this rule
Impact: critical
Failure 1:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/NEXXT-250-scaled.jpg">.sticky-news > .news-img-box > imgFailure 2:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/64b7ce72cc736c81beadb984_IMG_1582-2-p-800.jpg">.news-item.card-h:nth-child(1) > .news-img-box > imgFailure 3:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/61ac2b0bd942768a049f941a_58-COMPRESSED-p-800.jpeg">.news-item.card-h:nth-child(2) > .news-img-box > imgFailure 4:
<img src="https://nexxt.com.au/wp-content/uploads/2024/11/support2.png">.contact-info:nth-child(1) > imgFailure 5:
<img src="https://nexxt.com.au/wp-content/uploads/2024/11/map1.png">.contact-info:nth-child(2) > imgImpact: moderate
Failure 1:
<header class="header-area">.header-areaImpact: moderate
Failure 1:
<footer class="footer-area">.footer-areaImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: moderate
Failure 1:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: moderate
Failure 1:
<html lang="en-US">htmlFailure 2:
<html>#hs-form-iframe-0Impact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadFailure 2:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: serious
Failure 1:
<a href="/agile-20-years-on" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.theme-btn[href$="agile-20-years-on"]Failure 2:
<a href="/running-a-workshop-part-2-the-art-of-skillful-facilitation" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(1) > .news-item-body > .theme-btnFailure 3:
<a href="/the-seven-deadly-wastes-of-lean" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(2) > .news-item-body > .theme-btnFailure 4:
<a href="https://www.linkedin.com/company/nexxtgroup/"> <i class="iconoir-linkedin"></i> </a>.social-links > li > aImpact: serious
Failure 1:
<ul>.footer-links:nth-child(1) > ulFailure 2:
<ul>.footer-links:nth-child(2) > ulFailure 3:
<ul>.footer-links:nth-child(3) > ulFailure 4:
<ul>.footer-links:nth-child(4) > ulImpact: moderate
Failure 1:
<div class="elementor-element elementor-element-e499878 e-flex e-con-boxed e-con e-parent" data-id="e499878" data-element_type="container" data-e-type="container" data-settings="{"background_background":"gradient"}">.elementor-element-e499878Failure 2:
<div class="elementor-element elementor-element-8ca229b elementor-widget elementor-widget-heading" data-id="8ca229b" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">.elementor-element-8ca229bFailure 3:
<div class="elementor-element elementor-element-5ffb17d blog-section e-flex e-con-boxed e-con e-parent" data-id="5ffb17d" data-element_type="container" data-e-type="container">.elementor-element-5ffb17dFailure 4:
<div class="elementor-element elementor-element-50ed840 e-con-full e-flex e-con e-parent" data-id="50ed840" data-element_type="container" data-e-type="container">.elementor-element-50ed840Failure 5:
<h6 class="section-subtitle">Contact</h6>.contact-form-body > h6… and 5 more failures for this rule
Impact: serious
Failure 1:
<a href="/contact" class="theme-btn">Contact Us</a>.header-left-right > .theme-btn[href$="contact"]Failure 2:
<h6 class="section-subtitle badge-radius">Our Studies</h6>.badge-radiusFailure 3:
<a href="/sharepoint-consultation-brisbane">SharePoint consultation</a>strong > aFailure 4:
<span class="elementor-button-text">Talk to a SharePoint Consultant</span>.elementor-element-7b90a91 > .elementor-widget-container > .elementor-button-wrapper > .elementor-button.elementor-button-link.elementor-size-sm > .elementor-button-content-wrapper > .elementor-button-textFailure 5:
<div class="e-n-accordion-item-title-text"> Do you build Power Automate workflows? </div>summary[data-accordion-index="2"] > .e-n-accordion-item-title-header > .e-n-accordion-item-title-text… and 9 more failures for this rule
Impact: moderate
Failure 1:
<h6 class="section-subtitle">INSIGHTS</h6>.left > h6Failure 2:
<h6 class="section-subtitle section-subtitle1">Op Ed</h6>.section-subtitle1Failure 3:
<h6 class="section-subtitle">Tips</h6>.news-item.card-h:nth-child(1) > .news-item-body > h6Failure 4:
<h6 class="section-subtitle">Lean</h6>.news-item.card-h:nth-child(2) > .news-item-body > h6Failure 5:
<h6 class="section-subtitle">Contact</h6>.contact-form-body > h6… and 2 more failures for this rule
Impact: critical
Failure 1:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/NEXXT-250-scaled.jpg">.sticky-news > .news-img-box > imgFailure 2:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/64b7ce72cc736c81beadb984_IMG_1582-2-p-800.jpg">.news-item.card-h:nth-child(1) > .news-img-box > imgFailure 3:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/61ac2b0bd942768a049f941a_58-COMPRESSED-p-800.jpeg">.news-item.card-h:nth-child(2) > .news-img-box > imgFailure 4:
<img src="https://nexxt.com.au/wp-content/uploads/2024/11/support2.png">.contact-info:nth-child(1) > imgFailure 5:
<img src="https://nexxt.com.au/wp-content/uploads/2024/11/map1.png">.contact-info:nth-child(2) > imgImpact: moderate
Failure 1:
<header class="header-area">.header-areaImpact: moderate
Failure 1:
<footer class="footer-area">.footer-areaImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: moderate
Failure 1:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: moderate
Failure 1:
<html lang="en-US">htmlFailure 2:
<html>#hs-form-iframe-0Impact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadFailure 2:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: serious
Failure 1:
<a href="/agile-20-years-on" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.theme-btn[href$="agile-20-years-on"]Failure 2:
<a href="/running-a-workshop-part-2-the-art-of-skillful-facilitation" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(1) > .news-item-body > .theme-btnFailure 3:
<a href="/the-seven-deadly-wastes-of-lean" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(2) > .news-item-body > .theme-btnFailure 4:
<a href="https://www.linkedin.com/company/nexxtgroup/"> <i class="iconoir-linkedin"></i> </a>.social-links > li > aImpact: serious
Failure 1:
<ul>.footer-links:nth-child(1) > ulFailure 2:
<ul>.footer-links:nth-child(2) > ulFailure 3:
<ul>.footer-links:nth-child(3) > ulFailure 4:
<ul>.footer-links:nth-child(4) > ulImpact: moderate
Failure 1:
<div class="elementor-element elementor-element-e499878 e-flex e-con-boxed e-con e-parent" data-id="e499878" data-element_type="container" data-e-type="container" data-settings="{"background_background":"gradient"}">.elementor-element-e499878Failure 2:
<div class="elementor-element elementor-element-8ca229b elementor-widget elementor-widget-heading" data-id="8ca229b" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">.elementor-element-8ca229bFailure 3:
<div class="elementor-element elementor-element-f8ad00b blog-section e-flex e-con-boxed e-con e-parent" data-id="f8ad00b" data-element_type="container" data-e-type="container">.elementor-element-f8ad00bFailure 4:
<div class="elementor-element elementor-element-7d03f12 e-flex e-con-boxed e-con e-parent" data-id="7d03f12" data-element_type="container" data-e-type="container">.elementor-element-7d03f12Failure 5:
<div class="elementor-element elementor-element-50ed840 e-con-full e-flex e-con e-parent" data-id="50ed840" data-element_type="container" data-e-type="container">.elementor-element-50ed840… and 6 more failures for this rule
Impact: serious
Failure 1:
<a href="/contact" class="theme-btn">Contact Us</a>.header-left-right > .theme-btn[href$="contact"]Impact: moderate
Failure 1:
<h4>Services</h4>.footer-links:nth-child(1) > h4Impact: moderate
Failure 1:
<header class="header-area">.header-areaImpact: moderate
Failure 1:
<footer class="footer-area">.footer-areaImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: moderate
Failure 1:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: moderate
Failure 1:
<html lang="en-US">htmlImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadFailure 2:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: serious
Failure 1:
<a href="https://www.linkedin.com/company/nexxtgroup/"> <i class="iconoir-linkedin"></i> </a>.social-links > li > aImpact: serious
Failure 1:
<ul>.footer-links:nth-child(1) > ulFailure 2:
<ul>.footer-links:nth-child(2) > ulFailure 3:
<ul>.footer-links:nth-child(3) > ulFailure 4:
<ul>.footer-links:nth-child(4) > ulImpact: moderate
Failure 1:
<html lang="en-US">htmlImpact: moderate
Failure 1:
<div data-elementor-type="wp-page" data-elementor-id="7884" class="elementor elementor-7884" data-elementor-post-type="page">.elementor-7884Impact: serious
Failure 1:
<a href="/contact" class="theme-btn">Contact Us</a>.header-left-right > .theme-btn[href$="contact"]Failure 2:
<h6 class="section-subtitle badge-radius">Our Studies</h6>.badge-radiusFailure 3:
<span class="elementor-button-text">Book a 15-minute resource-scoping call</span>.elementor-element-a2c3d24 > .elementor-widget-container > .elementor-button-wrapper > .elementor-button.elementor-button-link.elementor-size-sm > .elementor-button-content-wrapper > .elementor-button-textFailure 4:
<h6 class="section-subtitle section-subtitle1">Op Ed</h6>.section-subtitle1Failure 5:
<span class="elementor-button-text">VIEW ALL</span>a[href$="insights-inner"] > .elementor-button-content-wrapper > .elementor-button-text… and 6 more failures for this rule
Impact: minor
Failure 1:
<h2><br></h2>h2:nth-child(14)Impact: moderate
Failure 1:
<h6 class="section-subtitle">INSIGHTS</h6>.left > h6Failure 2:
<h6 class="section-subtitle section-subtitle1">Op Ed</h6>.section-subtitle1Failure 3:
<h6 class="section-subtitle">Tips</h6>.news-item.card-h:nth-child(1) > .news-item-body > h6Failure 4:
<h6 class="section-subtitle">Lean</h6>.news-item.card-h:nth-child(2) > .news-item-body > h6Failure 5:
<h6 class="section-subtitle">Contact</h6>.contact-form-body > h6… and 2 more failures for this rule
Impact: critical
Failure 1:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/NEXXT-250-scaled.jpg">.sticky-news > .news-img-box > imgFailure 2:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/64b7ce72cc736c81beadb984_IMG_1582-2-p-800.jpg">.news-item.card-h:nth-child(1) > .news-img-box > imgFailure 3:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/61ac2b0bd942768a049f941a_58-COMPRESSED-p-800.jpeg">.news-item.card-h:nth-child(2) > .news-img-box > imgFailure 4:
<img src="https://nexxt.com.au/wp-content/uploads/2024/11/support2.png">.contact-info:nth-child(1) > imgFailure 5:
<img src="https://nexxt.com.au/wp-content/uploads/2024/11/map1.png">.contact-info:nth-child(2) > imgImpact: moderate
Failure 1:
<header class="header-area">.header-areaImpact: moderate
Failure 1:
<footer class="footer-area">.footer-areaImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: moderate
Failure 1:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: moderate
Failure 1:
<html lang="en-US">htmlFailure 2:
<html>#hs-form-iframe-0Impact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadFailure 2:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: serious
Failure 1:
<a href="/agile-20-years-on" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.theme-btn[href$="agile-20-years-on"]Failure 2:
<a href="/running-a-workshop-part-2-the-art-of-skillful-facilitation" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(1) > .news-item-body > .theme-btnFailure 3:
<a href="/the-seven-deadly-wastes-of-lean" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(2) > .news-item-body > .theme-btnFailure 4:
<a href="https://www.linkedin.com/company/nexxtgroup/"> <i class="iconoir-linkedin"></i> </a>.social-links > li > aImpact: serious
Failure 1:
<ul>.footer-links:nth-child(1) > ulFailure 2:
<ul>.footer-links:nth-child(2) > ulFailure 3:
<ul>.footer-links:nth-child(3) > ulFailure 4:
<ul>.footer-links:nth-child(4) > ulImpact: moderate
Failure 1:
<div class="elementor-element elementor-element-e499878 e-flex e-con-boxed e-con e-parent" data-id="e499878" data-element_type="container" data-e-type="container" data-settings="{"background_background":"gradient"}">.elementor-element-e499878Failure 2:
<div class="elementor-element elementor-element-8ca229b elementor-widget elementor-widget-heading" data-id="8ca229b" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">.elementor-element-8ca229bFailure 3:
<div class="elementor-element elementor-element-2c9004d blog-section e-flex e-con-boxed e-con e-parent" data-id="2c9004d" data-element_type="container" data-e-type="container">.elementor-element-2c9004dFailure 4:
<div class="elementor-element elementor-element-50ed840 e-con-full e-flex e-con e-parent" data-id="50ed840" data-element_type="container" data-e-type="container">.elementor-element-50ed840Failure 5:
<h6 class="section-subtitle">Contact</h6>.contact-form-body > h6… and 5 more failures for this rule
Impact: serious
Failure 1:
<a href="/contact" class="theme-btn">Contact Us</a>.header-left-right > .theme-btn[href$="contact"]Impact: moderate
Failure 1:
<h4>1. Acceptance of Terms</h4>li:nth-child(1) > h4Failure 2:
<h4>Services</h4>.footer-links:nth-child(1) > h4Impact: moderate
Failure 1:
<header class="header-area">.header-areaImpact: moderate
Failure 1:
<footer class="footer-area">.footer-areaImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: moderate
Failure 1:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: moderate
Failure 1:
<html lang="en-US">htmlImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadFailure 2:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: serious
Failure 1:
<a href="https://www.linkedin.com/company/nexxtgroup/"> <i class="iconoir-linkedin"></i> </a>.social-links > li > aImpact: serious
Failure 1:
<ol start="1" data-spread="true">olFailure 2:
<ul>.footer-links:nth-child(1) > ulFailure 3:
<ul>.footer-links:nth-child(2) > ulFailure 4:
<ul>.footer-links:nth-child(3) > ulFailure 5:
<ul>.footer-links:nth-child(4) > ulImpact: moderate
Failure 1:
<div data-elementor-type="wp-page" data-elementor-id="7560" class="elementor elementor-7560" data-elementor-post-type="page">.elementor-7560Impact: serious
Failure 1:
<a href="/contact" class="theme-btn">Contact Us</a>.header-left-right > .theme-btn[href$="contact"]Impact: minor
Failure 1:
<h1>h1:nth-child(2)Impact: moderate
Failure 1:
<h3>Let’s get started on something great</h3>h3Failure 2:
<h4>Services</h4>.footer-links:nth-child(1) > h4Impact: moderate
Failure 1:
<header class="header-area">.header-areaImpact: moderate
Failure 1:
<footer class="footer-area">.footer-areaImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: moderate
Failure 1:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: moderate
Failure 1:
<html lang="en-US">htmlImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadFailure 2:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: serious
Failure 1:
<a href="https://www.linkedin.com/company/nexxtgroup/"> <i class="iconoir-linkedin"></i> </a>.social-links > li > aImpact: serious
Failure 1:
<ul>.footer-links:nth-child(1) > ulFailure 2:
<ul>.footer-links:nth-child(2) > ulFailure 3:
<ul>.footer-links:nth-child(3) > ulFailure 4:
<ul>.footer-links:nth-child(4) > ulImpact: moderate
Failure 1:
<div class="hero-section-content text-center">.hero-section-contentImpact: serious
Failure 1:
<a href="/contact" class="theme-btn">Contact Us</a>.header-left-right > .theme-btn[href$="contact"]Failure 2:
<h6 class="section-subtitle badge-radius">Our Studies</h6>.badge-radiusFailure 3:
<h6 class="section-subtitle section-subtitle1">Op Ed</h6>.section-subtitle1Failure 4:
<span class="elementor-button-text">VIEW ALL</span>.elementor-button-textFailure 5:
<h6 class="section-subtitle">Contact</h6>.contact-form-body > h6… and 5 more failures for this rule
Impact: moderate
Failure 1:
<h6 class="section-subtitle">INSIGHTS</h6>.left > h6Failure 2:
<h6 class="section-subtitle section-subtitle1">Op Ed</h6>.section-subtitle1Failure 3:
<h6 class="section-subtitle">Tips</h6>.news-item.card-h:nth-child(1) > .news-item-body > h6Failure 4:
<h6 class="section-subtitle">Lean</h6>.news-item.card-h:nth-child(2) > .news-item-body > h6Failure 5:
<h6 class="section-subtitle">Contact</h6>.contact-form-body > h6… and 2 more failures for this rule
Impact: critical
Failure 1:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/NEXXT-250-scaled.jpg">.sticky-news > .news-img-box > imgFailure 2:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/64b7ce72cc736c81beadb984_IMG_1582-2-p-800.jpg">.news-item.card-h:nth-child(1) > .news-img-box > imgFailure 3:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/61ac2b0bd942768a049f941a_58-COMPRESSED-p-800.jpeg">.news-item.card-h:nth-child(2) > .news-img-box > imgFailure 4:
<img src="https://nexxt.com.au/wp-content/uploads/2024/11/support2.png">.contact-info:nth-child(1) > imgFailure 5:
<img src="https://nexxt.com.au/wp-content/uploads/2024/11/map1.png">.contact-info:nth-child(2) > imgImpact: moderate
Failure 1:
<header class="header-area">.header-areaImpact: moderate
Failure 1:
<footer class="footer-area">.footer-areaImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: moderate
Failure 1:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: moderate
Failure 1:
<html lang="en-US">htmlFailure 2:
<html>#hs-form-iframe-0Impact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadFailure 2:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: serious
Failure 1:
<a href="/agile-20-years-on" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.theme-btn[href$="agile-20-years-on"]Failure 2:
<a href="/running-a-workshop-part-2-the-art-of-skillful-facilitation" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(1) > .news-item-body > .theme-btnFailure 3:
<a href="/the-seven-deadly-wastes-of-lean" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(2) > .news-item-body > .theme-btnFailure 4:
<a href="https://www.linkedin.com/company/nexxtgroup/"> <i class="iconoir-linkedin"></i> </a>.social-links > li > aImpact: serious
Failure 1:
<ul>.footer-links:nth-child(1) > ulFailure 2:
<ul>.footer-links:nth-child(2) > ulFailure 3:
<ul>.footer-links:nth-child(3) > ulFailure 4:
<ul>.footer-links:nth-child(4) > ulImpact: moderate
Failure 1:
<div class="elementor-element elementor-element-e499878 e-flex e-con-boxed e-con e-parent" data-id="e499878" data-element_type="container" data-e-type="container" data-settings="{"background_background":"gradient"}">.elementor-element-e499878Failure 2:
<div class="elementor-element elementor-element-8ca229b elementor-widget elementor-widget-heading" data-id="8ca229b" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">.elementor-element-8ca229bFailure 3:
<div class="elementor-element elementor-element-48f4e592 e-flex e-con-boxed e-con e-parent" data-id="48f4e592" data-element_type="container" data-e-type="container">.elementor-element-48f4e592Failure 4:
<div class="elementor-element elementor-element-50ed840 e-con-full e-flex e-con e-parent" data-id="50ed840" data-element_type="container" data-e-type="container">.elementor-element-50ed840Failure 5:
<h6 class="section-subtitle">Contact</h6>.contact-form-body > h6… and 5 more failures for this rule
Impact: serious
Failure 1:
<a href="/contact" class="theme-btn">Contact Us</a>.header-left-right > .theme-btn[href$="contact"]Failure 2:
<h6 class="section-subtitle">Benefits</h6>.about-service7-content > .section-header > h6Failure 3:
<h6 class="section-subtitle">FEATURES</h6>.feature3-body > .section-header > h6Failure 4:
<h6 class="section-subtitle">CASE STUDIES</h6>.case-studio-header > h6Failure 5:
<h6 class="section-subtitle section-subtitle1">Op Ed</h6>.section-subtitle1… and 7 more failures for this rule
Impact: minor
Failure 1:
<h6 class="section-subtitle"> </h6>.section-header.w-full.justify-content-between > .left > h6Failure 2:
<h2 class="section-title"> </h2>.section-header.w-full.justify-content-between > .left > .section-titleImpact: moderate
Failure 1:
<h4>Projects Delivered Successfully</h4>.hero-company-box.simple-shadow:nth-child(1) > h4Failure 2:
<h4>Tailored Workshops Delivered</h4>.hero-company-box.simple-shadow:nth-child(2) > h4Failure 3:
<h4>Professionals Coached</h4>.hero-company-box.simple-shadow:nth-child(3) > h4Failure 4:
<h4>Established</h4>.hero-company-box.simple-shadow:nth-child(4) > h4Failure 5:
<h6 class="section-subtitle"> </h6>.section-header.w-full.justify-content-between > .left > h6… and 12 more failures for this rule
Impact: critical
Failure 1:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/11/NEXXT-138-scaled.jpg">.hero-service-about > img[decoding="async"]Failure 2:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/11/NEXXT-226-1-scaled.jpg">.about-service7-img-box > img[decoding="async"]:nth-child(1)Failure 3:
<img decoding="async" src="">img[src=""][decoding="async"]Failure 4:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/10/NEXXT-22-scaled.jpg">#development > .case-studio-body.d-flex > .flex-1.left.d-flex > .case-studio-img-card.simple-shadow > img[decoding="async"]Failure 5:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/11/fast-delivery3.png">#development > .case-studio-body.d-flex > .right > .case-studio-contents.service-card.card-h > img[decoding="async"]… and 5 more failures for this rule
Impact: moderate
Failure 1:
<header class="header-area">.header-areaImpact: moderate
Failure 1:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: serious
Failure 1:
<a href="/contact" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>#development > .case-studio-body.d-flex > .right > .case-studio-contents.service-card.card-h > .theme-btn[href$="contact"]Failure 2:
<a href="/agile-20-years-on" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.theme-btn[href$="agile-20-years-on"]Failure 3:
<a href="/running-a-workshop-part-2-the-art-of-skillful-facilitation" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(1) > .news-item-body > .theme-btnFailure 4:
<a href="/the-seven-deadly-wastes-of-lean" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(2) > .news-item-body > .theme-btnFailure 5:
<a href="https://www.linkedin.com/company/nexxtgroup/"> <i class="iconoir-linkedin"></i> </a>.social-links > li > aImpact: serious
Failure 1:
<ul>.footer-links:nth-child(1) > ulFailure 2:
<ul>.footer-links:nth-child(2) > ulFailure 3:
<ul>.footer-links:nth-child(3) > ulFailure 4:
<ul>.footer-links:nth-child(4) > ulImpact: serious
Failure 1:
<a href="/contact" class="theme-btn">Contact Us</a>.header-left-right > .theme-btn[href$="contact"]Failure 2:
<h6 class="section-subtitle badge-radius">Our Studies</h6>.badge-radiusFailure 3:
<strong>Manual Bottlenecks:</strong>.mb-4:nth-child(11) > li:nth-child(1) > strongFailure 4:
<strong>Lack of Process Visibility:</strong>.mb-4:nth-child(11) > li:nth-child(2) > strongFailure 5:
<strong>Compliance and Risk Exposure:</strong>.mb-4:nth-child(11) > li:nth-child(3) > strong… and 24 more failures for this rule
Impact: moderate
Failure 1:
<h6 class="section-subtitle">INSIGHTS</h6>.left > h6Failure 2:
<h6 class="section-subtitle section-subtitle1">Op Ed</h6>.section-subtitle1Failure 3:
<h6 class="section-subtitle">Tips</h6>.news-item.card-h:nth-child(1) > .news-item-body > h6Failure 4:
<h6 class="section-subtitle">Lean</h6>.news-item.card-h:nth-child(2) > .news-item-body > h6Failure 5:
<h6 class="section-subtitle">Contact</h6>.contact-form-body > h6… and 2 more failures for this rule
Impact: critical
Failure 1:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/NEXXT-250-scaled.jpg">.sticky-news > .news-img-box > imgFailure 2:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/64b7ce72cc736c81beadb984_IMG_1582-2-p-800.jpg">.news-item.card-h:nth-child(1) > .news-img-box > imgFailure 3:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/61ac2b0bd942768a049f941a_58-COMPRESSED-p-800.jpeg">.news-item.card-h:nth-child(2) > .news-img-box > imgFailure 4:
<img src="https://nexxt.com.au/wp-content/uploads/2024/11/support2.png">.contact-info:nth-child(1) > imgFailure 5:
<img src="https://nexxt.com.au/wp-content/uploads/2024/11/map1.png">.contact-info:nth-child(2) > imgImpact: moderate
Failure 1:
<header class="header-area">.header-areaImpact: moderate
Failure 1:
<footer class="footer-area">.footer-areaImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: moderate
Failure 1:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: moderate
Failure 1:
<html lang="en-US">htmlFailure 2:
<html>#hs-form-iframe-0Impact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadFailure 2:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: serious
Failure 1:
<a href="/agile-20-years-on" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.theme-btn[href$="agile-20-years-on"]Failure 2:
<a href="/running-a-workshop-part-2-the-art-of-skillful-facilitation" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(1) > .news-item-body > .theme-btnFailure 3:
<a href="/the-seven-deadly-wastes-of-lean" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(2) > .news-item-body > .theme-btnFailure 4:
<a href="https://www.linkedin.com/company/nexxtgroup/"> <i class="iconoir-linkedin"></i> </a>.social-links > li > aImpact: serious
Failure 1:
<ul>.footer-links:nth-child(1) > ulFailure 2:
<ul>.footer-links:nth-child(2) > ulFailure 3:
<ul>.footer-links:nth-child(3) > ulFailure 4:
<ul>.footer-links:nth-child(4) > ulImpact: moderate
Failure 1:
<div class="elementor-element elementor-element-e499878 e-flex e-con-boxed e-con e-parent" data-id="e499878" data-element_type="container" data-e-type="container" data-settings="{"background_background":"gradient"}">.elementor-element-e499878Failure 2:
<div class="elementor-element elementor-element-8ca229b elementor-widget elementor-widget-heading" data-id="8ca229b" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">.elementor-element-8ca229bFailure 3:
<div class="elementor-element elementor-element-eb08a69 blog-section e-flex e-con-boxed e-con e-parent" data-id="eb08a69" data-element_type="container" data-e-type="container">.elementor-element-eb08a69Failure 4:
<div class="elementor-element elementor-element-50ed840 e-con-full e-flex e-con e-parent" data-id="50ed840" data-element_type="container" data-e-type="container">.elementor-element-50ed840Failure 5:
<h6 class="section-subtitle">Contact</h6>.contact-form-body > h6… and 5 more failures for this rule
Impact: serious
Failure 1:
<a href="/contact" class="theme-btn">Contact Us</a>.header-left-right > .theme-btn[href$="contact"]Failure 2:
<p class="meta">November 3, 2025 - <a href="https://nexxt.com.au/category/blog/">Blog</a></p>#post-8568 > .blog-2-item-box > .metaFailure 3:
<a href="https://nexxt.com.au/it-consultant-brisbane-sme-guide/" class="theme-btn">Read More</a>#post-8568 > .blog-2-item-box > .theme-btnFailure 4:
<p class="meta">November 3, 2025 - <a href="https://nexxt.com.au/category/blog/">Blog</a></p>#post-8559 > .blog-2-item-box > .metaFailure 5:
<a href="https://nexxt.com.au/office-365-consulting-services-australia/" class="theme-btn">Read More</a>#post-8559 > .blog-2-item-box > .theme-btn… and 16 more failures for this rule
Impact: moderate
Failure 1:
<h4>Services</h4>.footer-links:nth-child(1) > h4Impact: moderate
Failure 1:
<header class="header-area">.header-areaImpact: moderate
Failure 1:
<footer class="footer-area">.footer-areaImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: moderate
Failure 1:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: moderate
Failure 1:
<html lang="en-US">htmlImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadFailure 2:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: serious
Failure 1:
<a href="https://nexxt.com.au/category/blog/">Blog</a>#post-8568 > .blog-2-item-box > .meta > aFailure 2:
<a href="https://nexxt.com.au/category/blog/">Blog</a>#post-8559 > .blog-2-item-box > .meta > aFailure 3:
<a href="https://nexxt.com.au/category/blog/">Blog</a>#post-8551 > .blog-2-item-box > .meta > aFailure 4:
<a href="https://nexxt.com.au/category/blog/">Blog</a>#post-8533 > .blog-2-item-box > .meta > aFailure 5:
<a href="https://nexxt.com.au/category/blog/">Blog</a>#post-8525 > .blog-2-item-box > .meta > a… and 5 more failures for this rule
Impact: serious
Failure 1:
<a class="next page-numbers" href="https://nexxt.com.au/author/mnitish0gmail-com/page/2/"><i class="iconoir-arrow-right"></i></a>.nextFailure 2:
<a href="https://www.linkedin.com/company/nexxtgroup/"> <i class="iconoir-linkedin"></i> </a>.social-links > li > aImpact: serious
Failure 1:
<ul>.footer-links:nth-child(1) > ulFailure 2:
<ul>.footer-links:nth-child(2) > ulFailure 3:
<ul>.footer-links:nth-child(3) > ulFailure 4:
<ul>.footer-links:nth-child(4) > ulImpact: moderate
Failure 1:
<html lang="en-US">htmlImpact: moderate
Failure 1:
<section class="blog-breadcrumb-area">sectionFailure 2:
<div id="post-8568" class="post-8568 post type-post status-publish format-standard has-post-thumbnail hentry category-blog">#post-8568Failure 3:
<div id="post-8559" class="post-8559 post type-post status-publish format-standard has-post-thumbnail hentry category-blog">#post-8559Failure 4:
<div id="post-8551" class="post-8551 post type-post status-publish format-standard has-post-thumbnail hentry category-blog">#post-8551Failure 5:
<div id="post-8533" class="post-8533 post type-post status-publish format-standard has-post-thumbnail hentry category-blog">#post-8533… and 6 more failures for this rule
Impact: minor
Failure 1:
<article class="elementor-post elementor-grid-item post-8568 post type-post status-publish format-standard has-post-thumbnail hentry category-blog" role="listitem">.e-loop-item-8568 > .elementor-element-b8fbc95.e-con-boxed[data-id="b8fbc95"] > .e-con-inner > .elementor-element-7c68f1c.elementor-posts--thumbnail-top.elementor-widget-posts > .elementor-widget-container > .elementor-posts-container.elementor-posts.elementor-posts--skin-classic > .post-8568Failure 2:
<article class="elementor-post elementor-grid-item post-8559 post type-post status-publish format-standard has-post-thumbnail hentry category-blog" role="listitem">.e-loop-item-8568 > .elementor-element-b8fbc95.e-con-boxed[data-id="b8fbc95"] > .e-con-inner > .elementor-element-7c68f1c.elementor-posts--thumbnail-top.elementor-widget-posts > .elementor-widget-container > .elementor-posts-container.elementor-posts.elementor-posts--skin-classic > .post-8559Failure 3:
<article class="elementor-post elementor-grid-item post-8551 post type-post status-publish format-standard has-post-thumbnail hentry category-blog" role="listitem">.e-loop-item-8568 > .elementor-element-b8fbc95.e-con-boxed[data-id="b8fbc95"] > .e-con-inner > .elementor-element-7c68f1c.elementor-posts--thumbnail-top.elementor-widget-posts > .elementor-widget-container > .elementor-posts-container.elementor-posts.elementor-posts--skin-classic > .post-8551Failure 4:
<article class="elementor-post elementor-grid-item post-8533 post type-post status-publish format-standard has-post-thumbnail hentry category-blog" role="listitem">.e-loop-item-8568 > .elementor-element-b8fbc95.e-con-boxed[data-id="b8fbc95"] > .e-con-inner > .elementor-element-7c68f1c.elementor-posts--thumbnail-top.elementor-widget-posts > .elementor-widget-container > .elementor-posts-container.elementor-posts.elementor-posts--skin-classic > .post-8533Failure 5:
<article class="elementor-post elementor-grid-item post-8525 post type-post status-publish format-standard has-post-thumbnail hentry category-blog" role="listitem">.e-loop-item-8568 > .elementor-element-b8fbc95.e-con-boxed[data-id="b8fbc95"] > .e-con-inner > .elementor-element-7c68f1c.elementor-posts--thumbnail-top.elementor-widget-posts > .elementor-widget-container > .elementor-posts-container.elementor-posts.elementor-posts--skin-classic > .post-8525… and 31 more failures for this rule
Impact: critical
Failure 1:
<div class="elementor-loop-container elementor-grid" role="list">.elementor-loop-containerImpact: serious
Failure 1:
<a href="/contact" class="theme-btn">Contact Us</a>.header-left-right > .theme-btn[href$="contact"]Failure 2:
<a href="https://nexxt.com.au/it-consultant-brisbane-sme-guide/"> IT Consultant Brisbane for SMEs: Services, Pricing Signals & When to Engage </a>.e-loop-item-8568 > .elementor-element-b8fbc95.e-con-boxed[data-id="b8fbc95"] > .e-con-inner > .elementor-element-7c68f1c.elementor-posts--thumbnail-top.elementor-widget-posts > .elementor-widget-container > .elementor-posts-container.elementor-posts.elementor-posts--skin-classic > .post-8568 > .elementor-post__text > .elementor-post__title > aFailure 3:
<p>If you’re spinning up initiatives without clear outcomes or fighting</p>.e-loop-item-8568 > .elementor-element-b8fbc95.e-con-boxed[data-id="b8fbc95"] > .e-con-inner > .elementor-element-7c68f1c.elementor-posts--thumbnail-top.elementor-widget-posts > .elementor-widget-container > .elementor-posts-container.elementor-posts.elementor-posts--skin-classic > .post-8568 > .elementor-post__text > .elementor-post__excerpt > pFailure 4:
<a class="elementor-post__read-more" href="https://nexxt.com.au/it-consultant-brisbane-sme-guide/" aria-label="Read more about IT Consultant Brisbane for SMEs: Services, Pricing Signals & When to Engage" tabindex="-1"> Read More » </a>.e-loop-item-8568 > .elementor-element-b8fbc95.e-con-boxed[data-id="b8fbc95"] > .e-con-inner > .elementor-element-7c68f1c.elementor-posts--thumbnail-top.elementor-widget-posts > .elementor-widget-container > .elementor-posts-container.elementor-posts.elementor-posts--skin-classic > .post-8568 > .elementor-post__text > .elementor-post__read-moreFailure 5:
<a href="https://nexxt.com.au/office-365-consulting-services-australia/"> Office 365 Consulting Services (Australia) </a>.e-loop-item-8568 > .elementor-element-b8fbc95.e-con-boxed[data-id="b8fbc95"] > .e-con-inner > .elementor-element-7c68f1c.elementor-posts--thumbnail-top.elementor-widget-posts > .elementor-widget-container > .elementor-posts-container.elementor-posts.elementor-posts--skin-classic > .post-8559 > .elementor-post__text > .elementor-post__title > a… and 104 more failures for this rule
Impact: moderate
Failure 1:
<h4>Services</h4>.footer-links:nth-child(1) > h4Impact: moderate
Failure 1:
<header class="header-area">.header-areaImpact: moderate
Failure 1:
<footer class="footer-area">.footer-areaImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: moderate
Failure 1:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: moderate
Failure 1:
<html lang="en-US">htmlImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadFailure 2:
<nav class="elementor-pagination" aria-label="Pagination">.e-loop-item-8568 > .elementor-element-b8fbc95.e-con-boxed[data-id="b8fbc95"] > .e-con-inner > .elementor-element-7c68f1c.elementor-posts--thumbnail-top.elementor-widget-posts > .elementor-widget-container > .elementor-pagination[aria-label="Pagination"]Failure 3:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: serious
Failure 1:
<a href="https://www.linkedin.com/company/nexxtgroup/"> <i class="iconoir-linkedin"></i> </a>.social-links > li > aImpact: serious
Failure 1:
<ul>.footer-links:nth-child(1) > ulFailure 2:
<ul>.footer-links:nth-child(2) > ulFailure 3:
<ul>.footer-links:nth-child(3) > ulFailure 4:
<ul>.footer-links:nth-child(4) > ulImpact: moderate
Failure 1:
<html lang="en-US">htmlImpact: moderate
Failure 1:
<div class="elementor-element elementor-element-87f2c60 e-flex e-con-boxed e-con e-parent" data-id="87f2c60" data-element_type="container" data-e-type="container">.elementor-element-87f2c60Failure 2:
<div class="elementor-posts-container elementor-posts elementor-posts--skin-classic elementor-grid elementor-has-item-ratio" role="list">.e-loop-item-8568 > .elementor-element-b8fbc95.e-con-boxed[data-id="b8fbc95"] > .e-con-inner > .elementor-element-7c68f1c.elementor-posts--thumbnail-top.elementor-widget-posts > .elementor-widget-container > .elementor-posts-container.elementor-posts.elementor-posts--skin-classicFailure 3:
<div class="elementor-posts-container elementor-posts elementor-posts--skin-classic elementor-grid elementor-has-item-ratio" role="list">.e-loop-item-8559 > .elementor-element-b8fbc95.e-con-boxed[data-id="b8fbc95"] > .e-con-inner > .elementor-element-7c68f1c.elementor-posts--thumbnail-top.elementor-widget-posts > .elementor-widget-container > .elementor-posts-container.elementor-posts.elementor-posts--skin-classicFailure 4:
<div class="elementor-posts-container elementor-posts elementor-posts--skin-classic elementor-grid elementor-has-item-ratio" role="list">.e-loop-item-8551 > .elementor-element-b8fbc95.e-con-boxed[data-id="b8fbc95"] > .e-con-inner > .elementor-element-7c68f1c.elementor-posts--thumbnail-top.elementor-widget-posts > .elementor-widget-container > .elementor-posts-container.elementor-posts.elementor-posts--skin-classicFailure 5:
<div class="elementor-posts-container elementor-posts elementor-posts--skin-classic elementor-grid elementor-has-item-ratio" role="list">.e-loop-item-8533 > .elementor-element-b8fbc95.e-con-boxed[data-id="b8fbc95"] > .e-con-inner > .elementor-element-7c68f1c.elementor-posts--thumbnail-top.elementor-widget-posts > .elementor-widget-container > .elementor-posts-container.elementor-posts.elementor-posts--skin-classic… and 2 more failures for this rule
Impact: minor
Failure 1:
<article class="elementor-post elementor-grid-item post-8568 post type-post status-publish format-standard has-post-thumbnail hentry category-blog" role="listitem">.e-loop-item-8568 > .elementor-element-b8fbc95.e-con-boxed[data-id="b8fbc95"] > .e-con-inner > .elementor-element-7c68f1c.elementor-posts--thumbnail-top.elementor-widget-posts > .elementor-widget-container > .elementor-posts-container.elementor-posts.elementor-posts--skin-classic > .post-8568Failure 2:
<article class="elementor-post elementor-grid-item post-8559 post type-post status-publish format-standard has-post-thumbnail hentry category-blog" role="listitem">.e-loop-item-8568 > .elementor-element-b8fbc95.e-con-boxed[data-id="b8fbc95"] > .e-con-inner > .elementor-element-7c68f1c.elementor-posts--thumbnail-top.elementor-widget-posts > .elementor-widget-container > .elementor-posts-container.elementor-posts.elementor-posts--skin-classic > .post-8559Failure 3:
<article class="elementor-post elementor-grid-item post-8551 post type-post status-publish format-standard has-post-thumbnail hentry category-blog" role="listitem">.e-loop-item-8568 > .elementor-element-b8fbc95.e-con-boxed[data-id="b8fbc95"] > .e-con-inner > .elementor-element-7c68f1c.elementor-posts--thumbnail-top.elementor-widget-posts > .elementor-widget-container > .elementor-posts-container.elementor-posts.elementor-posts--skin-classic > .post-8551Failure 4:
<article class="elementor-post elementor-grid-item post-8533 post type-post status-publish format-standard has-post-thumbnail hentry category-blog" role="listitem">.e-loop-item-8568 > .elementor-element-b8fbc95.e-con-boxed[data-id="b8fbc95"] > .e-con-inner > .elementor-element-7c68f1c.elementor-posts--thumbnail-top.elementor-widget-posts > .elementor-widget-container > .elementor-posts-container.elementor-posts.elementor-posts--skin-classic > .post-8533Failure 5:
<article class="elementor-post elementor-grid-item post-8525 post type-post status-publish format-standard has-post-thumbnail hentry category-blog" role="listitem">.e-loop-item-8568 > .elementor-element-b8fbc95.e-con-boxed[data-id="b8fbc95"] > .e-con-inner > .elementor-element-7c68f1c.elementor-posts--thumbnail-top.elementor-widget-posts > .elementor-widget-container > .elementor-posts-container.elementor-posts.elementor-posts--skin-classic > .post-8525… and 31 more failures for this rule
Impact: critical
Failure 1:
<div class="elementor-loop-container elementor-grid" role="list">.elementor-loop-containerImpact: serious
Failure 1:
<a href="/contact" class="theme-btn">Contact Us</a>.header-left-right > .theme-btn[href$="contact"]Failure 2:
<a href="https://nexxt.com.au/it-consultant-brisbane-sme-guide/"> IT Consultant Brisbane for SMEs: Services, Pricing Signals & When to Engage </a>.e-loop-item-8568 > .elementor-element-b8fbc95.e-con-boxed[data-id="b8fbc95"] > .e-con-inner > .elementor-element-7c68f1c.elementor-posts--thumbnail-top.elementor-widget-posts > .elementor-widget-container > .elementor-posts-container.elementor-posts.elementor-posts--skin-classic > .post-8568 > .elementor-post__text > .elementor-post__title > aFailure 3:
<p>If you’re spinning up initiatives without clear outcomes or fighting</p>.e-loop-item-8568 > .elementor-element-b8fbc95.e-con-boxed[data-id="b8fbc95"] > .e-con-inner > .elementor-element-7c68f1c.elementor-posts--thumbnail-top.elementor-widget-posts > .elementor-widget-container > .elementor-posts-container.elementor-posts.elementor-posts--skin-classic > .post-8568 > .elementor-post__text > .elementor-post__excerpt > pFailure 4:
<a class="elementor-post__read-more" href="https://nexxt.com.au/it-consultant-brisbane-sme-guide/" aria-label="Read more about IT Consultant Brisbane for SMEs: Services, Pricing Signals & When to Engage" tabindex="-1"> Read More » </a>.e-loop-item-8568 > .elementor-element-b8fbc95.e-con-boxed[data-id="b8fbc95"] > .e-con-inner > .elementor-element-7c68f1c.elementor-posts--thumbnail-top.elementor-widget-posts > .elementor-widget-container > .elementor-posts-container.elementor-posts.elementor-posts--skin-classic > .post-8568 > .elementor-post__text > .elementor-post__read-moreFailure 5:
<a href="https://nexxt.com.au/office-365-consulting-services-australia/"> Office 365 Consulting Services (Australia) </a>.e-loop-item-8568 > .elementor-element-b8fbc95.e-con-boxed[data-id="b8fbc95"] > .e-con-inner > .elementor-element-7c68f1c.elementor-posts--thumbnail-top.elementor-widget-posts > .elementor-widget-container > .elementor-posts-container.elementor-posts.elementor-posts--skin-classic > .post-8559 > .elementor-post__text > .elementor-post__title > a… and 104 more failures for this rule
Impact: moderate
Failure 1:
<h4>Services</h4>.footer-links:nth-child(1) > h4Impact: moderate
Failure 1:
<header class="header-area">.header-areaImpact: moderate
Failure 1:
<footer class="footer-area">.footer-areaImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: moderate
Failure 1:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: moderate
Failure 1:
<html lang="en-US">htmlImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadFailure 2:
<nav class="elementor-pagination" aria-label="Pagination">.e-loop-item-8568 > .elementor-element-b8fbc95.e-con-boxed[data-id="b8fbc95"] > .e-con-inner > .elementor-element-7c68f1c.elementor-posts--thumbnail-top.elementor-widget-posts > .elementor-widget-container > .elementor-pagination[aria-label="Pagination"]Failure 3:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: serious
Failure 1:
<a href="https://www.linkedin.com/company/nexxtgroup/"> <i class="iconoir-linkedin"></i> </a>.social-links > li > aImpact: serious
Failure 1:
<ul>.footer-links:nth-child(1) > ulFailure 2:
<ul>.footer-links:nth-child(2) > ulFailure 3:
<ul>.footer-links:nth-child(3) > ulFailure 4:
<ul>.footer-links:nth-child(4) > ulImpact: moderate
Failure 1:
<html lang="en-US">htmlImpact: moderate
Failure 1:
<div class="elementor-element elementor-element-87f2c60 e-flex e-con-boxed e-con e-parent" data-id="87f2c60" data-element_type="container" data-e-type="container">.elementor-element-87f2c60Failure 2:
<div class="elementor-posts-container elementor-posts elementor-posts--skin-classic elementor-grid elementor-has-item-ratio" role="list">.e-loop-item-8568 > .elementor-element-b8fbc95.e-con-boxed[data-id="b8fbc95"] > .e-con-inner > .elementor-element-7c68f1c.elementor-posts--thumbnail-top.elementor-widget-posts > .elementor-widget-container > .elementor-posts-container.elementor-posts.elementor-posts--skin-classicFailure 3:
<div class="elementor-posts-container elementor-posts elementor-posts--skin-classic elementor-grid elementor-has-item-ratio" role="list">.e-loop-item-8559 > .elementor-element-b8fbc95.e-con-boxed[data-id="b8fbc95"] > .e-con-inner > .elementor-element-7c68f1c.elementor-posts--thumbnail-top.elementor-widget-posts > .elementor-widget-container > .elementor-posts-container.elementor-posts.elementor-posts--skin-classicFailure 4:
<div class="elementor-posts-container elementor-posts elementor-posts--skin-classic elementor-grid elementor-has-item-ratio" role="list">.e-loop-item-8551 > .elementor-element-b8fbc95.e-con-boxed[data-id="b8fbc95"] > .e-con-inner > .elementor-element-7c68f1c.elementor-posts--thumbnail-top.elementor-widget-posts > .elementor-widget-container > .elementor-posts-container.elementor-posts.elementor-posts--skin-classicFailure 5:
<div class="elementor-posts-container elementor-posts elementor-posts--skin-classic elementor-grid elementor-has-item-ratio" role="list">.e-loop-item-8533 > .elementor-element-b8fbc95.e-con-boxed[data-id="b8fbc95"] > .e-con-inner > .elementor-element-7c68f1c.elementor-posts--thumbnail-top.elementor-widget-posts > .elementor-widget-container > .elementor-posts-container.elementor-posts.elementor-posts--skin-classic… and 2 more failures for this rule
Impact: serious
Failure 1:
<a href="/contact" class="theme-btn">Contact Us</a>.header-left-right > .theme-btn[href$="contact"]Failure 2:
<a href="/about-us" class="theme-btn">Learn More</a>.theme-btn[href$="about-us"]Failure 3:
<p> Years <span>of Customer <br>Success</span> </p>.experience-content > pFailure 4:
<p> 50+ <span>Years of combined business and digital expertise</span> </p>.our-expert-team-box-inner > pFailure 5:
<span class="section-subtitle">CASE STUDIES</span>.case-studio-header > p > .section-subtitle… and 11 more failures for this rule
Impact: moderate
Failure 1:
<h4><a href="/transformation-and-change">Transformation & Change</a></h4>.service-card.simple-shadow:nth-child(1) > h4Failure 2:
<h4>Accelerating Delivery, Inspiring Change</h4>#development > .case-studio-body.d-flex > .right > .case-studio-contents.service-card.card-h > h4Failure 3:
<h4>Assess</h4>.about-timeline-item:nth-child(1) > .about-timeline-item-inner > h4Failure 4:
<h6 class="section-subtitle section-subtitle1">Op Ed</h6>.section-subtitle1Failure 5:
<h6 class="section-subtitle">Tips</h6>.news-item.card-h:nth-child(1) > .news-item-body > h6… and 4 more failures for this rule
Impact: critical
Failure 1:
<img decoding="async" class="desktop fade-in" src="https://nexxt.com.au/wp-content/uploads/2024/11/NEXXT-226-1-scaled.jpg">.desktopFailure 2:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/11/success2.png">.experience-body > img[decoding="async"]Failure 3:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/11/experts2.png">.imgs > img[decoding="async"]Failure 4:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/11/Badge.jpeg" style="touch-action: pan-y;">.client-logo.simple-shadow:nth-child(1) > img[decoding="async"]Failure 5:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/11/linfox.png" style="touch-action: pan-y;">.client-logo.simple-shadow:nth-child(2) > img[decoding="async"]… and 20 more failures for this rule
Impact: moderate
Failure 1:
<header class="header-area">.header-areaImpact: moderate
Failure 1:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: serious
Failure 1:
<a href="/contact" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>#development > .case-studio-body.d-flex > .right > .case-studio-contents.service-card.card-h > .theme-btn[href$="contact"]Failure 2:
<a href="/agile-20-years-on" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.theme-btn[href$="agile-20-years-on"]Failure 3:
<a href="/running-a-workshop-part-2-the-art-of-skillful-facilitation" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(1) > .news-item-body > .theme-btnFailure 4:
<a href="/the-seven-deadly-wastes-of-lean" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(2) > .news-item-body > .theme-btnFailure 5:
<a href="https://www.linkedin.com/company/nexxtgroup/"> <i class="iconoir-linkedin"></i> </a>.social-links > li > aImpact: serious
Failure 1:
<ul>.footer-links:nth-child(1) > ulFailure 2:
<ul>.footer-links:nth-child(2) > ulFailure 3:
<ul>.footer-links:nth-child(3) > ulFailure 4:
<ul>.footer-links:nth-child(4) > ulImpact: serious
Failure 1:
<a href="/contact" class="theme-btn">Contact Us</a>.header-left-right > .theme-btn[href$="contact"]Failure 2:
<a href="/about-us" class="theme-btn">Learn More</a>.theme-btn[href$="about-us"]Failure 3:
<p> Years <span>of Customer <br>Success</span> </p>.experience-content > pFailure 4:
<p> 50+ <span>Years of combined business and digital expertise</span> </p>.our-expert-team-box-inner > pFailure 5:
<p> Trusted by over <span>50 clients across business and government</span> </p>.google-reviews-box > .right > p… and 12 more failures for this rule
Impact: moderate
Failure 1:
<h4><a href="/transformation-and-change">Transformation & Change</a></h4>.service-card.simple-shadow:nth-child(1) > h4Failure 2:
<h4>Accelerating Delivery, Inspiring Change</h4>#development > .case-studio-body.d-flex > .right > .case-studio-contents.service-card.card-h > h4Failure 3:
<h4>Assess</h4>.about-timeline-item:nth-child(1) > .about-timeline-item-inner > h4Failure 4:
<h6 class="section-subtitle section-subtitle1">Op Ed</h6>.section-subtitle1Failure 5:
<h6 class="section-subtitle">Tips</h6>.news-item.card-h:nth-child(1) > .news-item-body > h6… and 4 more failures for this rule
Impact: critical
Failure 1:
<img decoding="async" class="desktop fade-in" src="https://nexxt.com.au/wp-content/uploads/2024/11/NEXXT-226-1-scaled.jpg">.desktopFailure 2:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/11/success2.png">.experience-body > img[decoding="async"]Failure 3:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/11/experts2.png">.imgs > img[decoding="async"]Failure 4:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/11/handshake.png">.left > img[decoding="async"]Failure 5:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/11/Badge.jpeg" style="touch-action: pan-y;">.client-logo.simple-shadow:nth-child(1) > img[decoding="async"]… and 21 more failures for this rule
Impact: moderate
Failure 1:
<header class="header-area">.header-areaImpact: moderate
Failure 1:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: serious
Failure 1:
<a href="/contact" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>#development > .case-studio-body.d-flex > .right > .case-studio-contents.service-card.card-h > .theme-btn[href$="contact"]Failure 2:
<a href="/agile-20-years-on" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.theme-btn[href$="agile-20-years-on"]Failure 3:
<a href="/running-a-workshop-part-2-the-art-of-skillful-facilitation" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(1) > .news-item-body > .theme-btnFailure 4:
<a href="/the-seven-deadly-wastes-of-lean" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(2) > .news-item-body > .theme-btnFailure 5:
<a href="https://www.linkedin.com/company/nexxtgroup/"> <i class="iconoir-linkedin"></i> </a>.social-links > li > aImpact: serious
Failure 1:
<ul>.footer-links:nth-child(1) > ulFailure 2:
<ul>.footer-links:nth-child(2) > ulFailure 3:
<ul>.footer-links:nth-child(3) > ulFailure 4:
<ul>.footer-links:nth-child(4) > ulImpact: serious
Failure 1:
<a href="/contact" class="theme-btn">Contact Us</a>.header-left-right > .theme-btn[href$="contact"]Failure 2:
<a href="/about-us" class="theme-btn">Learn More</a>.theme-btn[href$="about-us"]Failure 3:
<p> Years <span>of Customer <br>Success</span> </p>.experience-content > pFailure 4:
<p> 50+ <span>Years of combined business and digital expertise</span> </p>.our-expert-team-box-inner > pFailure 5:
<span class="section-subtitle">CASE STUDIES</span>.case-studio-header > p > .section-subtitle… and 11 more failures for this rule
Impact: moderate
Failure 1:
<h4><a href="/transformation-and-change">Transformation & Change</a></h4>.service-card.simple-shadow:nth-child(1) > h4Failure 2:
<h4>Accelerating Delivery, Inspiring Change</h4>#development > .case-studio-body.d-flex > .right > .case-studio-contents.service-card.card-h > h4Failure 3:
<h4>Assess</h4>.about-timeline-item:nth-child(1) > .about-timeline-item-inner > h4Failure 4:
<h6 class="section-subtitle section-subtitle1">Op Ed</h6>.section-subtitle1Failure 5:
<h6 class="section-subtitle">Tips</h6>.news-item.card-h:nth-child(1) > .news-item-body > h6… and 4 more failures for this rule
Impact: critical
Failure 1:
<img decoding="async" class="desktop fade-in" src="https://nexxt.com.au/wp-content/uploads/2024/11/NEXXT-226-1-scaled.jpg">.desktopFailure 2:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/11/success2.png">.experience-body > img[decoding="async"]Failure 3:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/11/experts2.png">.imgs > img[decoding="async"]Failure 4:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/11/handshake.png">.left > img[decoding="async"]Failure 5:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/11/Badge.jpeg" style="touch-action: pan-y;">.client-logo.simple-shadow:nth-child(1) > img[decoding="async"]… and 21 more failures for this rule
Impact: moderate
Failure 1:
<header class="header-area">.header-areaImpact: moderate
Failure 1:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: serious
Failure 1:
<a href="/contact" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>#development > .case-studio-body.d-flex > .right > .case-studio-contents.service-card.card-h > .theme-btn[href$="contact"]Failure 2:
<a href="/agile-20-years-on" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.theme-btn[href$="agile-20-years-on"]Failure 3:
<a href="/running-a-workshop-part-2-the-art-of-skillful-facilitation" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(1) > .news-item-body > .theme-btnFailure 4:
<a href="/the-seven-deadly-wastes-of-lean" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(2) > .news-item-body > .theme-btnFailure 5:
<a href="https://www.linkedin.com/company/nexxtgroup/"> <i class="iconoir-linkedin"></i> </a>.social-links > li > aImpact: serious
Failure 1:
<ul>.footer-links:nth-child(1) > ulFailure 2:
<ul>.footer-links:nth-child(2) > ulFailure 3:
<ul>.footer-links:nth-child(3) > ulFailure 4:
<ul>.footer-links:nth-child(4) > ulImpact: serious
Failure 1:
<a href="/contact" class="theme-btn">Contact Us</a>.header-left-right > .theme-btn[href$="contact"]Failure 2:
<h6 class="section-subtitle badge-radius">Our Studies</h6>.badge-radiusFailure 3:
<h6 class="section-subtitle section-subtitle1">Op Ed</h6>.section-subtitle1Failure 4:
<span class="elementor-button-text">VIEW ALL</span>.elementor-button-textFailure 5:
<h6 class="section-subtitle">Contact</h6>.contact-form-body > h6… and 5 more failures for this rule
Impact: moderate
Failure 1:
<h6 class="section-subtitle">INSIGHTS</h6>.left > h6Failure 2:
<h6 class="section-subtitle section-subtitle1">Op Ed</h6>.section-subtitle1Failure 3:
<h6 class="section-subtitle">Tips</h6>.news-item.card-h:nth-child(1) > .news-item-body > h6Failure 4:
<h6 class="section-subtitle">Lean</h6>.news-item.card-h:nth-child(2) > .news-item-body > h6Failure 5:
<h6 class="section-subtitle">Contact</h6>.contact-form-body > h6… and 2 more failures for this rule
Impact: critical
Failure 1:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/NEXXT-250-scaled.jpg">.sticky-news > .news-img-box > imgFailure 2:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/64b7ce72cc736c81beadb984_IMG_1582-2-p-800.jpg">.news-item.card-h:nth-child(1) > .news-img-box > imgFailure 3:
<img src="https://nexxt.com.au/wp-content/uploads/2024/10/61ac2b0bd942768a049f941a_58-COMPRESSED-p-800.jpeg">.news-item.card-h:nth-child(2) > .news-img-box > imgFailure 4:
<img src="https://nexxt.com.au/wp-content/uploads/2024/11/support2.png">.contact-info:nth-child(1) > imgFailure 5:
<img src="https://nexxt.com.au/wp-content/uploads/2024/11/map1.png">.contact-info:nth-child(2) > imgImpact: moderate
Failure 1:
<header class="header-area">.header-areaImpact: moderate
Failure 1:
<footer class="footer-area">.footer-areaImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: moderate
Failure 1:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: moderate
Failure 1:
<html lang="en-US">htmlFailure 2:
<html>#hs-form-iframe-0Impact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadFailure 2:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: serious
Failure 1:
<a href="/agile-20-years-on" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.theme-btn[href$="agile-20-years-on"]Failure 2:
<a href="/running-a-workshop-part-2-the-art-of-skillful-facilitation" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(1) > .news-item-body > .theme-btnFailure 3:
<a href="/the-seven-deadly-wastes-of-lean" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>.news-item.card-h:nth-child(2) > .news-item-body > .theme-btnFailure 4:
<a href="https://www.linkedin.com/company/nexxtgroup/"> <i class="iconoir-linkedin"></i> </a>.social-links > li > aImpact: serious
Failure 1:
<ul>.footer-links:nth-child(1) > ulFailure 2:
<ul>.footer-links:nth-child(2) > ulFailure 3:
<ul>.footer-links:nth-child(3) > ulFailure 4:
<ul>.footer-links:nth-child(4) > ulImpact: moderate
Failure 1:
<div class="elementor-element elementor-element-e499878 e-flex e-con-boxed e-con e-parent" data-id="e499878" data-element_type="container" data-e-type="container" data-settings="{"background_background":"gradient"}">.elementor-element-e499878Failure 2:
<div class="elementor-element elementor-element-8ca229b elementor-widget elementor-widget-heading" data-id="8ca229b" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">.elementor-element-8ca229bFailure 3:
<div class="c-ih-insights-header t-section"><p>On the 20th anniversary of the Agile Manifesto, we ask whether the adoption of agile thinking and practices has improved business operations?</p></div>.c-ih-insights-headerFailure 4:
<p>2021 marked the 20th anniversary of the Agile Manifesto, created when 17 software experts met in Snowbird, Utah, to discuss how to radically improve the delivery of software products.</p>.c-ic__rich-text > p:nth-child(1)Failure 5:
<p>Since that time, the Agile movement has grown to be a global phenomenon, not only in the software field, but across all aspects of business and government. And understandably so – what business or government agency would not want to be seen as being agile?</p>.c-ic__rich-text > p:nth-child(2)… and 28 more failures for this rule
Impact: minor
Failure 1:
<article class="elementor-post elementor-grid-item post-8130 post type-post status-publish format-standard has-post-thumbnail hentry category-blog" role="listitem">.post-8130Failure 2:
<article class="elementor-post elementor-grid-item post-8098 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized" role="listitem">.post-8098Failure 3:
<article class="elementor-post elementor-grid-item post-8072 post type-post status-publish format-standard has-post-thumbnail hentry category-blog" role="listitem">.post-8072Failure 4:
<article class="elementor-post elementor-grid-item post-7952 post type-post status-publish format-standard has-post-thumbnail hentry category-blog" role="listitem">.post-7952Failure 5:
<article class="elementor-post elementor-grid-item post-7943 post type-post status-publish format-standard has-post-thumbnail hentry category-blog" role="listitem">.post-7943… and 3 more failures for this rule
Impact: serious
Failure 1:
<a href="/contact" class="theme-btn">Contact Us</a>.header-left-right > .theme-btn[href$="contact"]Failure 2:
<a href="https://nexxt.com.au/workflow-automation/"> Workflow Automation Services </a>.post-8130 > .elementor-post__text > .elementor-post__title > aFailure 3:
<p>Unlock Efficiency with Workflow Automation At Nexxt.com.au, we believe workflow automation is not just a tool, it’s a catalyst for confident, strategic change. Workflow automation</p>.post-8130 > .elementor-post__text > .elementor-post__excerpt > pFailure 4:
<a class="elementor-post__read-more" href="https://nexxt.com.au/workflow-automation/" aria-label="Read more about Workflow Automation Services" tabindex="-1"> Read More » </a>.post-8130 > .elementor-post__text > .elementor-post__read-moreFailure 5:
<a href="https://nexxt.com.au/microsoft-teams-training/"> Microsoft Teams Training </a>.post-8098 > .elementor-post__text > .elementor-post__title > a… and 27 more failures for this rule
Impact: moderate
Failure 1:
<h6 class="section-subtitle">CASE STUDIES</h6>.case-studio-header > h6Failure 2:
<h4>Accelerating Delivery, Inspiring Change</h4>#development > .case-studio-body.d-flex > .right > .case-studio-contents.service-card.card-h > h4Failure 3:
<h6 class="section-subtitle">Contact</h6>.contact-form-body > h6Failure 4:
<h4>Contact Info</h4>.contact-info:nth-child(1) > h4Failure 5:
<h4>Services</h4>.footer-links:nth-child(1) > h4Impact: critical
Failure 1:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/10/NEXXT-22-scaled.jpg">#development > .case-studio-body.d-flex > .flex-1.left.d-flex > .case-studio-img-card.simple-shadow > img[decoding="async"]Failure 2:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/11/fast-delivery3.png">#development > .case-studio-body.d-flex > .right > .case-studio-contents.service-card.card-h > img[decoding="async"]Failure 3:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/11/support2.png">.contact-info:nth-child(1) > img[decoding="async"]Failure 4:
<img decoding="async" src="https://nexxt.com.au/wp-content/uploads/2024/11/map1.png">.contact-info:nth-child(2) > img[decoding="async"]Impact: moderate
Failure 1:
<header class="header-area">.header-areaImpact: moderate
Failure 1:
<footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo">#colophonImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: moderate
Failure 1:
<header id="masthead" itemscope="itemscope" itemtype="https://schema.org/WPHeader">#mastheadImpact: serious
Failure 1:
<a href="/contact" class="theme-btn"> <i class="iconoir-arrow-up-right"></i> </a>#development > .case-studio-body.d-flex > .right > .case-studio-contents.service-card.card-h > .theme-btn[href$="contact"]Failure 2:
<a href="https://www.linkedin.com/company/nexxtgroup/"> <i class="iconoir-linkedin"></i> </a>.social-links > li > aImpact: serious
Failure 1:
<ul>.footer-links:nth-child(1) > ulFailure 2:
<ul>.footer-links:nth-child(2) > ulFailure 3:
<ul>.footer-links:nth-child(3) > ulFailure 4:
<ul>.footer-links:nth-child(4) > ulImpact: moderate
Failure 1:
<html lang="en-US" en-us""="">htmlFailure 2:
<html>#hs-form-iframe-0