Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.DLandmark StructureAction29 landmarksFIX
Screen reader users cannot quickly navigate to the primary content. Wrap your main content in <main>.
Without a <main> landmark, screen-reader users can't skip past the navigation to the page content — every page starts with re-reading the menu.
Learn more ▾ ▴
The <main> element marks the page's primary content area. Assistive tech offers a 'jump to main' shortcut — but only if <main> exists. Without it, every page navigation forces re-reading the header. Wrap your primary content in a single <main>.
Source: WAI-ARIA / WCAG 2.4.1
Multiple navigations need aria-label to distinguish them for screen readers.
Some <nav> elements lack aria-label — screen-reader users hear 'navigation' multiple times with no way to distinguish them.
Learn more ▾ ▴
When a page has multiple <nav> regions (primary, footer, breadcrumb), each needs aria-label or aria-labelledby. AT users navigate by landmark; identical 'navigation' announcements force them to enter each one to discover purpose.
Source: WAI-ARIA Authoring Practices
Add a skip link as the first focusable element so keyboard users can bypass repeated navigation.
Without a skip-nav link, keyboard users tab through every nav item before reaching content — every page, every visit.
Learn more ▾ ▴
WCAG 2.4.1 (Bypass Blocks) requires a mechanism to skip past repeated content. The standard implementation is a 'Skip to main content' link that's the first focusable element, visually hidden until focused. Three lines of HTML + four of CSS.
Source: WCAG 2.1 SC 2.4.1
FHeading HierarchyAction132 headings, 5 skip(s)FIX
- H4 Birthday Sale: Up to 40% off everything🎁
- H6 my account skipped
- H2 Search Suggestions
- H2 Up to 40% off EVERYTHINGOddBalls 12th Birthday Sale
- H2 Best of Men's Sale
- H6 Men's Underwear & Socks skipped
- H2 Best of Women's Sale
- H6 Women's Underwear & Socks skipped
- H3 SHOP OUR BEST SELLING COLLECTIONS
- H2 Mens Boxers
- H2 Socks
- H2 Bamboo Boxers
- H2 Women's Boxers
- H2 Pyjamas
- H2 Bralettes
- H3 FOLLOW US ON INSTAGRAM @MYODDBALLS
- H6 Tap.Build.Match. skipped
- H2 We make jointly branded underwear for some of the world's biggest brands
- H4 They feel so comfy... skipped
- H4 Love Them
- H4 Good products and delivered...
- H4 Amazing quality
- H4 Oddballs nothing Odd at...
- H4 Star Trek pants what...
- H4 Dangle free boxers loose...
- H4 Great boxers
- H4 Easy to order and...
- H4 good product and great...
- H4 Fantastic jammies
- H4 Great experience
- H4 I first came across...
- H4 Excellent.
- H4 Good night wear
- H4 Nice comfortable briefs
- H4 Quality fab.
- H4 I bought a pack...
- H4 Great products
- H4 Quick
- H4 Great order follow up
- H4 Excellent as always
- H4 I always love ❤️...
- H4 Oddballs Re-ordered
- H4 My granddaughter loved them...
- H4 Easy to order
- H4 Such a good pair...
- H4 Another successful purchase of...
- H4 They are very comfortable...
- H4 Order arrived quickly
- H4 Highly recommended…
- H4 Quality products delivered on...
- H4 Great quality product.
- H4 ODDBALLS is BigTime
- H4 Amazing product
- H4 Great designs
- H4 Lovely product
- H4 Great product and designs...
- H4 England Cricket pants
- H4 I love oddballs products...
- H4 Amazing 👏 great quality
- H4 Fantastic product.
- H4 Great quality products,arrived on...
- H4 Good choice of designs...
- H4 Awesome boxers!
- H4 Great value deals when...
- H4 I love everything about...
- H4 Absolutely loved the product
- H4 The best fitting
- H4 Great service
- H4 Sent out quickly
- H4 Great service
- H4 Arrived exactly as stated
- H4 Great design thay fit...
- H4 Great product and service
- H4 Very good quality and...
- H4 Fab!
- H4 ordered new undies for...
- H4 Great quality and quick...
- H4 Improved the packaging
- H4 I love oddballs ladies...
- H4 Quick
- H4 Quick delivery
- H4 Ladies boxer shortsI
- H4 No going back 😊
- H4 Most comfortable pants I've...
- H4 Brilliant
- H4 Great products and easy...
- H4 Service was 10/10
- H4 7Pack Bundle
- H4 Excellent quick service
- H4 Great quality
- H4 Love the different designs...
- H4 Great choice of vibrant...
- H4 Good value for money
- H4 Very happy customer
- H4 Very quick delivery
- H4 Great shreadies..
- H4 Not my first purchase
- H4 Comfy and great to...
- H4 Great vibrant colours and...
- H4 Great quality, fabulous designs.
- H4 I love my bralettes...
- H4 Super comfy underwear
- H4 Great product
- H4 suuper amazing
- H4 Fantastic pants
- H4 Love socks prefer evri...
- H4 Great product
- H4 Great as always.
- H4 Always great quality and...
- H4 Excellent service from clicking...
- H4 Bought for the boys...
- H4 Bright colours bring a...
- H4 Absolutely love the fun...
- H3 Popular
- H3 Support
- H3 Info
- H2 ExclusiveDiscounts
- H2 FreeSocks
- H2 Fun NewDesigns
- H2 Free ShippingOn All Orders
- H2 Exclusive AccessTo Sale Events
- H2 Free GiftsVip Offers
- H2 Fun NewDesigns
- H2 FreeSocks
- H2 ExclusiveDiscounts
- H2 Free ShippingOn All Orders
- H2 Exclusive AccessTo Sale Events
- H2 Free GiftsVip Offers
- H2 Product title
- H3 Product type
- H3 Congratulations you qualify for
- H2 Select your location
Every page should have one H1 that describes the page content.
No H1 means screen-reader users can't identify the page's primary topic, and Google's content-extraction degrades.
Learn more ▾ ▴
The H1 is the document title for assistive tech and a strong signal to search engines about page topic. Pages without one force screen readers to fall back to the <title> attribute or page chrome. Add a single H1 that names the page's primary subject.
Source: WCAG 2.4.6 / Google Search Central
Skipping heading levels breaks the document outline. Screen readers may interpret missing levels as structural errors.
Skipping heading levels breaks the document outline — screen-reader users lose track of section nesting.
Learn more ▾ ▴
Screen reader users navigate by jumping between headings (H1 → H2 → H3). Skipping (H1 → H3) breaks the sense of hierarchy. Use sequential levels even if you don't like the default styling — restyle with CSS instead. WCAG 1.3.1 (Info and Relationships) treats this as an A failure.
Source: WCAG 2.1 SC 1.3.1 / W3C WAI
Skipping heading levels breaks the document outline. Screen readers may interpret missing levels as structural errors.
Skipping heading levels breaks the document outline — screen-reader users lose track of section nesting.
Learn more ▾ ▴
Screen reader users navigate by jumping between headings (H1 → H2 → H3). Skipping (H1 → H3) breaks the sense of hierarchy. Use sequential levels even if you don't like the default styling — restyle with CSS instead. WCAG 1.3.1 (Info and Relationships) treats this as an A failure.
Source: WCAG 2.1 SC 1.3.1 / W3C WAI
Skipping heading levels breaks the document outline. Screen readers may interpret missing levels as structural errors.
Skipping heading levels breaks the document outline — screen-reader users lose track of section nesting.
Learn more ▾ ▴
Screen reader users navigate by jumping between headings (H1 → H2 → H3). Skipping (H1 → H3) breaks the sense of hierarchy. Use sequential levels even if you don't like the default styling — restyle with CSS instead. WCAG 1.3.1 (Info and Relationships) treats this as an A failure.
Source: WCAG 2.1 SC 1.3.1 / W3C WAI
Skipping heading levels breaks the document outline. Screen readers may interpret missing levels as structural errors.
Skipping heading levels breaks the document outline — screen-reader users lose track of section nesting.
Learn more ▾ ▴
Screen reader users navigate by jumping between headings (H1 → H2 → H3). Skipping (H1 → H3) breaks the sense of hierarchy. Use sequential levels even if you don't like the default styling — restyle with CSS instead. WCAG 1.3.1 (Info and Relationships) treats this as an A failure.
Source: WCAG 2.1 SC 1.3.1 / W3C WAI
Skipping heading levels breaks the document outline. Screen readers may interpret missing levels as structural errors.
Skipping heading levels breaks the document outline — screen-reader users lose track of section nesting.
Learn more ▾ ▴
Screen reader users navigate by jumping between headings (H1 → H2 → H3). Skipping (H1 → H3) breaks the sense of hierarchy. Use sequential levels even if you don't like the default styling — restyle with CSS instead. WCAG 1.3.1 (Info and Relationships) treats this as an A failure.
Source: WCAG 2.1 SC 1.3.1 / W3C WAI
FAlt Text QualityAction68 of 579 images have issuesFIX
| Issue | Count |
|---|---|
| missing | 68 image(s) |
Images without alt text are invisible to screen readers.
Each image without alt text is a WCAG 1.1.1 failure — invisible to screen-reader users, lost from Google Image Search.
Learn more ▾ ▴
WCAG 2.1 Level A requires text alternatives for non-decorative images. Empty alt='' is fine for decorative; meaningful images need descriptive text. Common fixes: CMS audit + bulk add, build-time linter (alt-text-required ESLint rule), CI gate on Lighthouse a11y score.
Source: WCAG 2.1 SC 1.1.1 / WebAIM Million Report
An image inside a link with no alt creates an empty link.
Image-only links with no alt create empty links — screen-reader users hear 'link' with no destination context.
Learn more ▾ ▴
An <a><img></a> with no img alt is the worst-case for accessibility: AT announces the link but can't describe where it goes. Either add alt to the image OR add aria-label to the link.
Source: WCAG 2.1 SC 2.4.4
FForm AccessibilityAction13 of 31 controls have issuesFIX
| Control | Type | Label | Method |
|---|---|---|---|
| #show-notifications-input | checkbox | 4 | for/id |
| #Wilderness-input | checkbox | none | |
| #PuzzleonSubscription-input | checkbox | none | |
| #BirthdaySale-input | checkbox | none | |
| #Upto30%OFFMensBriefs-input | checkbox | none | |
| #searchInput_1 | input | Search | aria-label |
| #searchInput_2 | input | Search | aria-label |
| #search-products | input | Search products | aria-label |
| #searchInput_3 | input | Search | aria-label |
| wishlist-type | radio | none | |
| wishlist-type | radio | none | |
| test-size | radio | none | |
| test-size | radio | none | |
| test-size | radio | none | |
| test-size | radio | none | |
| test-size | radio | none | |
| test-size | radio | none | |
| #country-filter-input | search | Search | for/id |
| #customer_password | password | (Password) | placeholder only |
| #first_name | text | (First name) | placeholder only |
| #last_name | text | (Last name) | placeholder only |
| #signup-email | (E-mail) | placeholder only | |
| #signup-password | password | (Password) | placeholder only |
| #customer_email | (E-mail) | placeholder only | |
| input | submit | (none) | none |
| #back-in-stock-input | (none) | none | |
| input | text | (none) | none |
| quantity | text | (none) | none |
| quantity | text | (none) | none |
| quantity | text | (none) | none |
| input | submit | (none) | none |
Form controls need a <label>, aria-label, or aria-labelledby for screen readers.
<input type="submit">; <input type="submit">; <input type="email" id="back-in-stock-input">; <input type="text">; <input type="text" name="quantity">; <input type="text" name="quantity">; <input type="text" name="quantity">
Form controls without labels — assistive tech announces 'edit text' with no context; users can't complete forms.
Source: WCAG 2.1 SC 3.3.2
Placeholder text disappears on focus and is not a reliable label.
<input type="email" name="customer[email]" id="customer_email">; <input type="password" name="customer[password]" id="customer_password">; <input type="text" name="customer[first_name]" id="first_name">; <input type="text" name="customer[last_name]" id="last_name">; <input type="email" name="customer[email]" id="signup-email">; <input type="password" name="customer[password]" id="signup-password">
Placeholder-only labels disappear when the user starts typing — they must remember what the field was for.
Learn more ▾ ▴
Placeholders are NOT labels. They vanish on input, fail color contrast checks (most are gray), and don't satisfy WCAG SC 3.3.2. Always use a real <label> alongside (or aria-labelledby).
Source: WCAG 2.1 SC 3.3.2 / Nielsen Norman
FLink & Button QualityAction51 issue(s) across 825 links and 119 buttonsFIX
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| / | (empty) | empty | Add link text or aria-label |
| / | (empty) | empty | Add link text or aria-label |
| / | (empty) | empty | Add link text or aria-label |
| /pages/sale | (empty) | empty | Add link text or aria-label |
| /pages/sale | (empty) | empty | Add link text or aria-label |
| /products/best-of-winter-sale-bundle-men… | (empty) | empty | Add link text or aria-label |
| /products/orbit-mens-boxer-shorts?countr… | (empty) | empty | Add link text or aria-label |
| /products/mr-men-b-bundle-mens-boxer-sho… | (empty) | empty | Add link text or aria-label |
| /products/fantasy-mens-boxer-shorts?coun… | (empty) | empty | Add link text or aria-label |
| /products/mr-men-mr-grumpy-mens-bamboo-b… | (empty) | empty | Add link text or aria-label |
| /products/mr-bean-bundle-mens-boxer-shor… | (empty) | empty | Add link text or aria-label |
| /products/mens-boxer-shorts-socks-monthl… | (empty) | empty | Add link text or aria-label |
| /products/here-comes-the-sun-bundle-mens… | (empty) | empty | Add link text or aria-label |
| /products/mr-men-bundle-mens-bamboo-boxe… | (empty) | empty | Add link text or aria-label |
| /products/doddie-m-pyjamas-shorts?countr… | (empty) | empty | Add link text or aria-label |
| /products/stealth-bundle-mens-bamboo-box… | (empty) | empty | Add link text or aria-label |
| /products/tidal-wave-bundle-mens-boxer-s… | (empty) | empty | Add link text or aria-label |
| /products/ice-breaker-bundle-mens-boxer-… | (empty) | empty | Add link text or aria-label |
| /products/mr-men-mr-bump-mens-boxer-shor… | (empty) | empty | Add link text or aria-label |
| /products/mens-bamboo-boxer-shorts-free-… | (empty) | empty | Add link text or aria-label |
| /pages/mens-underwear | (empty) | empty | Add link text or aria-label |
| /products/here-comes-the-sun-bundle-ladi… | (empty) | empty | Add link text or aria-label |
| /products/orbit-ladies-boxers?country=US | (empty) | empty | Add link text or aria-label |
| /products/fantasy-ladies-bralette?countr… | (empty) | empty | Add link text or aria-label |
| /products/mr-bean-bundle-ladies-boxer-sh… | (empty) | empty | Add link text or aria-label |
| /products/orbit-bundle-womens-bralette-b… | (empty) | empty | Add link text or aria-label |
| /products/ladies-boxer-shorts-socks-mont… | (empty) | empty | Add link text or aria-label |
| /products/brighter-days-bundle-ladies-se… | (empty) | empty | Add link text or aria-label |
| /products/sun-chaser-bundle-ladies-brale… | (empty) | empty | Add link text or aria-label |
| /products/fantasy-ladies-boxers?country=… | (empty) | empty | Add link text or aria-label |
| /products/hello-sunshine-bundle-ladies-s… | (empty) | empty | Add link text or aria-label |
| /products/mr-bean-car-ladies-briefs?coun… | (empty) | empty | Add link text or aria-label |
| /products/tidal-rave-ladies-boxers?count… | (empty) | empty | Add link text or aria-label |
| /products/brrr-bundle-ladies-boxer-short… | (empty) | empty | Add link text or aria-label |
| /products/mr-bean-comic-ladies-bralette?… | (empty) | empty | Add link text or aria-label |
| /products/classic-black-bundle-ladies-se… | (empty) | empty | Add link text or aria-label |
| /pages/womens-underwear | (empty) | empty | Add link text or aria-label |
| /pages/perfect-pair | (empty) | empty | Add link text or aria-label |
| /collections/teenage-mutant-ninja-turtle… | go to Teenage Mutant Ninja Tur… | img no alt | Add alt attribute to the image |
| /collections/rocky-horror | go to Rocky Horror Show collec… | img no alt | Add alt attribute to the image |
| /collections/star-trek | go to Star Trek collection | img no alt | Add alt attribute to the image |
| /collections/alzheimers-research | go to Alzheimer's Research UK … | img no alt | Add alt attribute to the image |
| /collections/pringles | go to Pringles collection | img no alt | Add alt attribute to the image |
| /collections/design-england-fa | go to Official England FA coll… | img no alt | Add alt attribute to the image |
| /collections/kelloggs | go to Kelloggs® collection | img no alt | Add alt attribute to the image |
| /collections/mr-men-little-miss | go to Mr. Men Little Miss coll… | img no alt | Add alt attribute to the image |
| /collections/design-england-rugby | go to Official England Rugby L… | img no alt | Add alt attribute to the image |
| /collections/design-cymru | go to Welsh FA collection | img no alt | Add alt attribute to the image |
| /collections/emoji | go to Emoji ® collection | img no alt | Add alt attribute to the image |
| /collections/the-rolling-stones | go to The Rolling Stones colle… | img no alt | Add alt attribute to the image |
| /collections/beano | go to Beano collection | img no alt | Add alt attribute to the image |
| /collections/team-gb | go to Team GB collection | img no alt | Add alt attribute to the image |
| /collections/england-cricket | go to Official England Cricket… | img no alt | Add alt attribute to the image |
| /collections/acdc | go to AC/DC collection | img no alt | Add alt attribute to the image |
| /collections/dogs-trust | go to Dogs Trust collection | img no alt | Add alt attribute to the image |
| /collections/doddie-weir | go to Doddie Weir collection | img no alt | Add alt attribute to the image |
| /collections/prostate-cancer-uk | go to Prostate Cancer UK colle… | img no alt | Add alt attribute to the image |
| /collections/gas-monkey | go to Gas Monkey collection | img no alt | Add alt attribute to the image |
| /collections/teenage-mutant-ninja-turtle… | go to Teenage Mutant Ninja Tur… | img no alt | Add alt attribute to the image |
| /collections/rocky-horror | go to Rocky Horror Show collec… | img no alt | Add alt attribute to the image |
| /collections/star-trek | go to Star Trek collection | img no alt | Add alt attribute to the image |
| /collections/alzheimers-research | go to Alzheimer's Research UK … | img no alt | Add alt attribute to the image |
| /collections/pringles | go to Pringles collection | img no alt | Add alt attribute to the image |
| /collections/design-england-fa | go to Official England FA coll… | img no alt | Add alt attribute to the image |
| /collections/kelloggs | go to Kelloggs® collection | img no alt | Add alt attribute to the image |
| /collections/mr-men-little-miss | go to Mr. Men Little Miss coll… | img no alt | Add alt attribute to the image |
| /collections/design-england-rugby | go to Official England Rugby L… | img no alt | Add alt attribute to the image |
| /collections/design-cymru | go to Welsh FA collection | img no alt | Add alt attribute to the image |
| /collections/emoji | go to Emoji ® collection | img no alt | Add alt attribute to the image |
| /collections/the-rolling-stones | go to The Rolling Stones colle… | img no alt | Add alt attribute to the image |
| /collections/beano | go to Beano collection | img no alt | Add alt attribute to the image |
| /collections/team-gb | go to Team GB collection | img no alt | Add alt attribute to the image |
| /collections/england-cricket | go to Official England Cricket… | img no alt | Add alt attribute to the image |
| /collections/acdc | go to AC/DC collection | img no alt | Add alt attribute to the image |
| /collections/dogs-trust | go to Dogs Trust collection | img no alt | Add alt attribute to the image |
| /collections/doddie-weir | go to Doddie Weir collection | img no alt | Add alt attribute to the image |
| /collections/prostate-cancer-uk | go to Prostate Cancer UK colle… | img no alt | Add alt attribute to the image |
| /collections/gas-monkey | go to Gas Monkey collection | img no alt | Add alt attribute to the image |
| /collections/teenage-mutant-ninja-turtle… | go to Teenage Mutant Ninja Tur… | img no alt | Add alt attribute to the image |
| /collections/rocky-horror | go to Rocky Horror Show collec… | img no alt | Add alt attribute to the image |
| /collections/star-trek | go to Star Trek collection | img no alt | Add alt attribute to the image |
| /collections/alzheimers-research | go to Alzheimer's Research UK … | img no alt | Add alt attribute to the image |
| /collections/pringles | go to Pringles collection | img no alt | Add alt attribute to the image |
| /collections/design-england-fa | go to Official England FA coll… | img no alt | Add alt attribute to the image |
| /collections/kelloggs | go to Kelloggs® collection | img no alt | Add alt attribute to the image |
| /collections/mr-men-little-miss | go to Mr. Men Little Miss coll… | img no alt | Add alt attribute to the image |
| /collections/design-england-rugby | go to Official England Rugby L… | img no alt | Add alt attribute to the image |
| /collections/design-cymru | go to Welsh FA collection | img no alt | Add alt attribute to the image |
| /collections/emoji | go to Emoji ® collection | img no alt | Add alt attribute to the image |
| /collections/the-rolling-stones | go to The Rolling Stones colle… | img no alt | Add alt attribute to the image |
| /collections/beano | go to Beano collection | img no alt | Add alt attribute to the image |
| /collections/team-gb | go to Team GB collection | img no alt | Add alt attribute to the image |
| /collections/england-cricket | go to Official England Cricket… | img no alt | Add alt attribute to the image |
| /collections/acdc | go to AC/DC collection | img no alt | Add alt attribute to the image |
| /collections/dogs-trust | go to Dogs Trust collection | img no alt | Add alt attribute to the image |
| /collections/doddie-weir | go to Doddie Weir collection | img no alt | Add alt attribute to the image |
| /collections/prostate-cancer-uk | go to Prostate Cancer UK colle… | img no alt | Add alt attribute to the image |
| /collections/gas-monkey | go to Gas Monkey collection | img no alt | Add alt attribute to the image |
| https://www.instagram.com/myoddballs | Instagram link | new tab | Add '(opens in new tab)' to text |
| https://www.facebook.com/myoddballs | Facebook link | new tab | Add '(opens in new tab)' to text |
| https://www.twitter.com/myoddballs | Twitter link | new tab | Add '(opens in new tab)' to text |
| https://www.tiktok.com/@myoddballs | tiktok link | new tab | Add '(opens in new tab)' to text |
| https://www.youtube.com/channel/UCWcbICw… | Youtube link | new tab | Add '(opens in new tab)' to text |
| # | Click here | generic text | Replace with descriptive text |
Before: Click here Suggested: # | |||
| # | (empty) | empty | Add link text or aria-label |
| # | (empty) | empty | Add link text or aria-label |
| # | (empty) | empty | Add link text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
Links without text are announced as raw URLs by screen readers.
/; /; /; /pages/sale; /pages/sale; /products/best-of-winter-sale-bundle-mens-boxer-shorts-7-pack?country=US; /products/orbit-mens-boxer-shorts?country=US; /products/mr-men-b-bundle-mens-boxer-shorts-5-pack-bundle?country=US; /products/fantasy-mens-boxer-shorts?country=US; /products/mr-men-mr-grumpy-mens-bamboo-boxer-shorts?country=US (+31 more)
Links with no accessible text (empty <a></a>, image-only no alt, icon-only no aria-label) are unidentifiable to screen readers.
Source: WCAG 2.1 SC 2.4.4
Generic link text like 'click here' doesn't describe the destination.
# ("Click here")
Generic anchor text ('click here', 'read more', 'learn more') tells screen readers and search engines nothing about the destination.
Learn more ▾ ▴
Out-of-context lists of links read by AT (one navigation pattern) become useless when every link says 'click here'. Use the destination's title or topic as anchor text. Doubles as SEO win — Google passes anchor-text relevance to the destination.
Source: WCAG 2.4.4 / Google Search Central
Add '(opens in new tab)' to link text or aria-label.
https://www.instagram.com/myoddballs; https://www.facebook.com/myoddballs; https://www.twitter.com/myoddballs; https://www.tiktok.com/@myoddballs; https://www.youtube.com/channel/UCWcbICw9wOhOXdGvyeO_gUA
Links with target="_blank" without rel="noopener" leak the originating page's window context — security and UX issue.
Learn more ▾ ▴
Without rel="noopener", the new tab can navigate the original tab via window.opener (tab-nabbing attack). Modern browsers default to noopener for target=_blank but only since recent versions. Always set rel="noopener noreferrer" explicitly.
Source: MDN target / OWASP
FFavicon & BrandingAction1 icon(s) detectedFIX
DWeb ManifestActionNot foundFIX
No web manifest found.
DDark Mode SupportActionNo dark mode signalsFIX
Detection limited to meta tags and inline styles.
DPrint StylesheetActionNo print stylesFIX
C404 Error PageActionHTTP 404, custom pageREVIEW
BColor Contrast (Screenshot)20 text elements analyzed, 0 fail WCAG AAREVIEW
Analyzes text contrast against the actual rendered page, including background images, gradients, and overlays that CSS-based tools cannot detect.
Show all checked elements (20)
| Element | Ratio | Required | FG | BG | Result |
|---|---|---|---|---|---|
| h2 Search Suggestions | 4.11:1 | 3.0:1 | #000000 | #6D6E6E | Pass |
| h2 Best of Men's Sale | 4.11:1 | 3.0:1 | #000000 | #6D6E6E | Pass |
| h2 Best of Women's Sale | 4.11:1 | 3.0:1 | #000000 | #6D6E6E | Pass |
| h2 Mens Boxers | 4.11:1 | 3.0:1 | #000000 | #6D6E6E | Pass |
| h2 Socks | 4.11:1 | 3.0:1 | #000000 | #6D6E6E | Pass |
| h2 Bamboo Boxers | 4.11:1 | 3.0:1 | #000000 | #6D6E6E | Pass |
| h2 Women's Boxers | 4.11:1 | 3.0:1 | #000000 | #6D6E6E | Pass |
| h2 Pyjamas | 4.11:1 | 3.0:1 | #000000 | #6D6E6E | Pass |
| h2 Bralettes | 4.11:1 | 3.0:1 | #000000 | #6D6E6E | Pass |
| h2 We make jointly bran… | 4.11:1 | 3.0:1 | #000000 | #6D6E6E | Pass |
| h2 Exclusive | 4.11:1 | 3.0:1 | #000000 | #6D6E6E | Pass |
| h2 Discounts | 4.11:1 | 3.0:1 | #000000 | #6D6E6E | Pass |
| h2 Free | 4.11:1 | 3.0:1 | #000000 | #6D6E6E | Pass |
| h2 Socks | 4.11:1 | 3.0:1 | #000000 | #6D6E6E | Pass |
| h2 Fun New | 4.11:1 | 3.0:1 | #000000 | #6D6E6E | Pass |
| h2 Designs | 4.11:1 | 3.0:1 | #000000 | #6D6E6E | Pass |
| h2 Free Shipping | 4.11:1 | 3.0:1 | #000000 | #6D6E6E | Pass |
| h2 On All Orders | 4.11:1 | 3.0:1 | #000000 | #6D6E6E | Pass |
| h2 Exclusive Access | 4.11:1 | 3.0:1 | #000000 | #6D6E6E | Pass |
| h2 To Sale Events | 4.11:1 | 3.0:1 | #000000 | #6D6E6E | Pass |
Methodology: The top 20 text elements by font size were checked. Background color was sampled from the desktop screenshot using a 5-point pattern. WCAG 2.1 AA requires 4.5:1 for normal text and 3:1 for large text.
CLighthouse Accessibility AuditsActionScore 77/100 — 8 failing, 22 passedREVIEW
Accessibility
These checks highlight opportunities to improve the accessibility of your web app. Automatic detection can only detect a subset of issues and does not guarantee the accessibility of your web app, so manual testing is also encouraged.
Contrast
Low-contrast text is difficult or impossible for many users to read. Learn how to provide sufficient color contrast.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
OddBalls 12th Birthday Sale div.w-full > h2.text-white > div.metafield-rich_text_field > p |
30% OFF SALE div.nosto-controlled-carousel-card > div.product-card > div.label-loc > span.absolute |
$91.14$130.2 div.product-card__details > a#collection-product-title-1 > div > p.product-card__details__price |
$130.2 a#collection-product-title-1 > div > p.product-card__details__price > del.ml-1 |
15% OFF SALE div.nosto-controlled-carousel-card > div.product-card > div.label-loc > span.absolute |
$17.13$20.15 div.product-card__details > a#collection-product-title-2 > div > p.product-card__details__price |
$20.15 a#collection-product-title-2 > div > p.product-card__details__price > del.ml-1 |
30% OFF SALE div.nosto-controlled-carousel-card > div.product-card > div.label-loc > span.absolute |
$91.14$130.2 div.product-card__details > a#collection-product-title-1 > div > p.product-card__details__price |
$130.2 a#collection-product-title-1 > div > p.product-card__details__price > del.ml-1 |
10% OFF SALE div.nosto-controlled-carousel-card > div.product-card > div.label-loc > span.absolute |
$18.14$20.15 div.product-card__details > a#collection-product-title-2 > div > p.product-card__details__price |
$20.15 a#collection-product-title-2 > div > p.product-card__details__price > del.ml-1 |
SHOP NOW div.bg-gray-100 > div.flex > div.button-group > a.oddballs-button |
By submitting your email address, you consent to receive marketing emails from … div.needsclick > div#rich-text-01KHV55GD2C9530E42C5YVG4MF > p > span |
Privacy Policy p > a > span > u |
Terms Of Service. p > a > span > u |
men’s div.bg-white > div.col-span-1 > div > a.text-magenta-500 |
women’s boxers div.bg-white > div.col-span-1 > div > a.text-magenta-500 |
USA Rugby underwear div.bg-white > div.col-span-1 > div > a.text-magenta-500 |
charities div.bg-white > div.col-span-1 > div > a.text-magenta-500 |
These are opportunities to improve the legibility of your content.
Navigation
Properly ordered headings that do not skip levels convey the semantic structure of the page, making it easier to navigate and understand when using assistive technologies. Learn more about heading order.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Men's Underwear & Socks div.w-full > h2.text-white > div.metafield-rich_text_field > h6 |
Women's Underwear & Socks div.w-full > h2.text-white > div.metafield-rich_text_field > h6 |
Tap.Build.Match. div.w-full > h2.text-white > div.metafield-rich_text_field > h6 |
They feel so comfy... div.ob-slides-wrappers > div.ob-slide > a.w-full > h4.w-full |
These are opportunities to improve keyboard navigation in your application.
Names and labels
Informative elements should aim for short, descriptive alternate text. Decorative elements can be ignored with an empty alt attribute. Learn more about the `alt` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.flex > div.flex > button.button > img.w-full div.flex > div.flex > button.button > img.w-full |
div.flex > div.flex > button.button > img.h-full div.flex > div.flex > button.button > img.h-full |
div.flex > div.flex > div.button > img.h-full div.flex > div.flex > div.button > img.h-full |
div.prod-container > a#collection-product-link-1 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-1 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-1 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-1 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-2 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-2 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-2 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-2 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-3 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-3 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-3 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-3 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-4 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-4 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-4 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-4 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-5 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-5 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-5 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-5 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-6 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-6 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-6 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-6 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-7 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-7 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-7 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-7 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-8 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-8 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-8 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-8 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-9 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-9 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-9 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-9 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-10 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-10 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-10 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-10 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-11 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-11 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-11 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-11 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-12 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-12 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-12 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-12 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-13 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-13 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-13 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-13 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-14 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-14 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-14 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-14 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-15 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-15 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-15 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-15 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-1 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-1 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-1 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-1 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-2 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-2 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-2 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-2 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-3 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-3 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-3 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-3 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-4 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-4 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-4 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-4 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-5 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-5 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-5 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-5 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-6 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-6 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-6 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-6 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-7 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-7 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-7 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-7 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-8 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-8 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-8 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-8 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-9 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-9 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-9 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-9 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-10 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-10 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-10 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-10 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-11 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-11 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-11 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-11 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-12 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-12 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-12 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-12 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-13 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-13 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-13 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-13 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-14 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-14 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-14 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-14 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-15 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-15 > div.grid-image-wrapper > img |
div.prod-container > a#collection-product-link-15 > div.grid-image-wrapper > img div.prod-container > a#collection-product-link-15 > div.grid-image-wrapper > img |
div#shopify-section-template--18263677501501__ob_conditional_banner_3UByqh > div.js-conditional-banner-wrapper > div.collection-banner > img#himg div#shopify-section-template--18263677501501__ob_conditional_banner_3UByqh > div.js-conditional-banner-wrapper > div.collection-banner > img#himg |
Link text (and alternate text for images, when used as links) that is discernible, unique, and focusable improves the navigation experience for screen reader users. Learn how to make links accessible.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.flex > div.flex > div > a div.flex > div.flex > div > a |
div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-1 div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-1 |
div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-2 div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-2 |
div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-3 div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-3 |
div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-4 div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-4 |
div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-5 div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-5 |
div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-6 div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-6 |
div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-7 div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-7 |
div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-8 div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-8 |
div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-9 div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-9 |
div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-10 div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-10 |
div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-11 div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-11 |
div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-12 div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-12 |
div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-13 div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-13 |
div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-14 div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-14 |
div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-15 div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-15 |
div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-1 div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-1 |
div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-2 div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-2 |
div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-3 div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-3 |
div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-4 div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-4 |
div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-5 div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-5 |
div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-6 div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-6 |
div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-7 div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-7 |
div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-8 div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-8 |
div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-9 div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-9 |
div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-10 div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-10 |
div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-11 div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-11 |
div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-12 div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-12 |
div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-13 div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-13 |
div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-14 div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-14 |
div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-15 div.product-card > div.product-card__image-wrapper > div.prod-container > a#collection-product-link-15 |
These are opportunities to improve the semantics of the controls in your application. This may enhance the experience for users of assistive technology, like a screen reader.
Best practices
Disabling zooming is problematic for users with low vision who rely on screen magnification to properly see the contents of a web page. Learn more about the viewport meta tag.
Informational: a Permissions-Policy directive showing feature -> allowed origins.
Source: MDN Permissions-Policy
| Failing Elements |
|---|
head > meta head > meta |
Touch targets with sufficient size and spacing help users who may have difficulty targeting small controls to activate the targets. Learn more about touch targets.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Slide 1 of 15 div.blend-divide > div#template--18263677501501__nosto_controlled_carousel_pCWeBV > div.relative > button.ob-dot |
Slide 3 of 15 div.blend-divide > div#template--18263677501501__nosto_controlled_carousel_pCWeBV > div.relative > button.ob-dot |
Slide 5 of 15 div.blend-divide > div#template--18263677501501__nosto_controlled_carousel_pCWeBV > div.relative > button.ob-dot |
Slide 7 of 15 div.blend-divide > div#template--18263677501501__nosto_controlled_carousel_pCWeBV > div.relative > button.ob-dot |
Slide 9 of 15 div.blend-divide > div#template--18263677501501__nosto_controlled_carousel_pCWeBV > div.relative > button.ob-dot |
Slide 11 of 15 div.blend-divide > div#template--18263677501501__nosto_controlled_carousel_pCWeBV > div.relative > button.ob-dot |
Slide 13 of 15 div.blend-divide > div#template--18263677501501__nosto_controlled_carousel_pCWeBV > div.relative > button.ob-dot |
Slide 15 of 15 div.blend-divide > div#template--18263677501501__nosto_controlled_carousel_pCWeBV > div.relative > button.ob-dot |
Slide 1 of 15 div.blend-divide > div#template--18263677501501__nosto_controlled_carousel_qEHjRX > div.relative > button.ob-dot |
Slide 3 of 15 div.blend-divide > div#template--18263677501501__nosto_controlled_carousel_qEHjRX > div.relative > button.ob-dot |
Slide 5 of 15 div.blend-divide > div#template--18263677501501__nosto_controlled_carousel_qEHjRX > div.relative > button.ob-dot |
Slide 7 of 15 div.blend-divide > div#template--18263677501501__nosto_controlled_carousel_qEHjRX > div.relative > button.ob-dot |
Slide 9 of 15 div.blend-divide > div#template--18263677501501__nosto_controlled_carousel_qEHjRX > div.relative > button.ob-dot |
Slide 11 of 15 div.blend-divide > div#template--18263677501501__nosto_controlled_carousel_qEHjRX > div.relative > button.ob-dot |
Slide 13 of 15 div.blend-divide > div#template--18263677501501__nosto_controlled_carousel_qEHjRX > div.relative > button.ob-dot |
Slide 15 of 15 div.blend-divide > div#template--18263677501501__nosto_controlled_carousel_qEHjRX > div.relative > button.ob-dot |
Slide 1 of 2 div#shopify-section-template--18263677501501__ob_text_video_slider_f9LpW7 > div#hero-slider-template--18263677501501__ob_text_video_slider_f9LpW7 > div.ob-dots > button.ob-dot |
Slide 2 of 2 div#shopify-section-template--18263677501501__ob_text_video_slider_f9LpW7 > div#hero-slider-template--18263677501501__ob_text_video_slider_f9LpW7 > div.ob-dots > button.ob-dot |
One main landmark helps screen reader users navigate a web page. Learn more about landmarks.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
html html |
These items highlight common accessibility best practices.
Visible text labels that do not match the accessible name can result in a confusing experience for screen reader users. Learn more about accessible names.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
SHOP NOW div.p-4 > div > span.cursor-pointer > a |
SHOP NOW div.p-4 > div > span.cursor-pointer > a |
SHOP NOW div.p-4 > div.uppercase > span.cursor-pointer > a |
SHOP NOW div.p-4 > div > span.cursor-pointer > a |
SHOP NOW div.p-4 > div > span.cursor-pointer > a |
SHOP NOW div.p-4 > div > span.cursor-pointer > a |