EVOLIZE Run a free assessment

Accessibility assessment of delta-cleaning.com

Automated technical assessment of 5 publicly accessible pages · Scanned 2 Sep 2026. Inspected 5 of 5 selected pages.

27findings detected
13critical + high
5pages inspected

What to fix first

  1. Critical Dropdown menus have no accessible name
  2. Critical Links lack accessible text
  3. High Hidden elements can still receive keyboard focus
  4. High Hidden elements can still receive keyboard focus
  5. High Hidden elements can still receive keyboard focus

Findings

Critical

Dropdown menus have no accessible name

Select menus expose no programmatic name, so assistive technology cannot announce what the choice is for.

Component 3 affected pages 6 instances WCAG WCAG 2.1 SC 4.1.2 Name, Role, Value (Level A) Ref 6MLBXC
Affected pagehttps://delta-cleaning.com/%CE%BA%CE%B1%CF%84%CE%B7%CE%B3%CE%BF%CF%81%CE%AF%CE%B1-%CF%80%CF%81%CE%BF%CF%8A%CF%8C%CE%BD%CF%84%CE%BF%CF%82/%ce%b5%cf%81%ce%b3%ce%b1%ce%bb%ce%b5%ce%af%ce%b1-cleaning-tools/%ce%ba%ce%b1%cf%81%cf%8c%cf%84%cf%83%ce%b9%ce%b1-%ce%ac%cf%80%ce%bb%cf%85%cf%84%cf%89%ce%bd-laundry-carts
Elementselect
Accessible nameΤαξινόμηση ανά δημοφιλία Ταξινόμηση ανά νεότητα Ταξινόμηση ανά τιμή: χαμηλή προς υψηλή Ταξινόμηση ανά τιμή: υψηλή προς χαμηλή
Markup
<select name="orderby" class="orderby">
How to fixAdd an accessible name to the select element using the aria-label attribute, e.g., <select name="orderby" class="orderby" aria-label="Sort by">
Critical

Links lack accessible text

Links expose no accessible name, so screen-reader users cannot determine their destination.

Component 1 affected page 2 instances WCAG WCAG 2.1 SC 2.4.4 Link Purpose (In Context) (Level A) Ref G79MMQ
Affected pagehttps://delta-cleaning.com/en/%CE%BA%CE%B1%CF%84%CE%B7%CE%B3%CE%BF%CF%81%CE%AF%CE%B1-%CF%80%CF%81%CE%BF%CF%8A%CF%8C%CE%BD%CF%84%CE%BF%CF%82/%ce%b5%cf%81%ce%b3%ce%b1%ce%bb%ce%b5%ce%af%ce%b1-cleaning-tools/%ce%ba%ce%b1%cf%81%cf%8c%cf%84%cf%83%ce%b9%ce%b1-%ce%ac%cf%80%ce%bb%cf%85%cf%84%cf%89%ce%bd-laundry-carts
Element#media_image-8 > a
Markup
<a href="https://delta-cleaning.com/en/catalogs-2"><img class="image " src="https://delta-cleaning.com/DELTA-CLEANING_Cat-2026_RCol_EN1.jpg" alt="" width="750" height="750" decoding="async" loading="lazy"></a>
How to fixAdd alternative text to the image inside the link or provide a text description of the link destination near the image.
High

Hidden elements can still receive keyboard focus

An element is not visible but remains in the tab order, so a sighted keyboard user loses track of focus when it lands there.

Component 5 affected pages 15 instances WCAG WCAG 2.1 SC 2.4.3 Focus Order (Level A) Ref 1EU5DR
Affected pagehttps://delta-cleaning.com/
Elementdiv#mega-toggle-block-1
Accessible nameMENUMENU
Markup
<div class="mega-toggle-block mega-menu-toggle-block mega-toggle-block-1" id="mega-toggle-block-1" tabindex="0"><span class="mega-toggle-label" role="button" aria-expanded="false"><span class="mega-toggle-label-closed">MENU</span><span class="mega-toggle-label-open">MENU</span></span></div>
How to fixKeep this element out of the tab order while its containing region is hidden — remove it from focus (for example tabindex="-1"), or apply the inert attribute to the hidden container where supported. Restore normal focusability when the region becomes visible.
High

Hidden elements can still receive keyboard focus

An element is not visible but remains in the tab order, so a sighted keyboard user loses track of focus when it lands there.

Component 5 affected pages 5 instances WCAG WCAG 2.1 SC 2.4.3 Focus Order (Level A) Ref YEPRQH
Affected pagehttps://delta-cleaning.com/
Elementdiv#mega-menu-wrap-primary > ul:nth-of-type(2) > li > a
Accessible name0 items - 0,00 €
Markup
<a class="woomenucart-menu-item" href="" title="Start shopping"><i class="fa fa-shopping-cart"></i> 0 items - <span class="woocommerce-Price-amount amount">0,00&nbsp;<span class="woocommerce-Price-currencySymbol">€</span></span></a>
How to fixTo fix this issue, ensure that the element is removed from the tab order when it is not visible. This can be achieved by setting the 'tabindex' attribute to '-1' or by using JavaScript to remove the element from the DOM when it is not needed. Alternatively, make the element visible when it receives focus, so sighted keyboard users can track the focus.
High

Hidden elements can still receive keyboard focus

An element is not visible but remains in the tab order, so a sighted keyboard user loses track of focus when it lands there.

Component 5 affected pages 50 instances WCAG WCAG 2.1 SC 2.4.3 Focus Order (Level A) Ref XGI0VQ
Affected pagehttps://delta-cleaning.com/
Elementli#mega-menu-item-1268 > a
Accessible nameΠαρουσίαση
Markup
<a class="mega-menu-link" href="https://delta-cleaning.com/company">Παρουσίαση</a>
How to fixTo fix this issue, ensure that the element is either removed from the tab order or made visible when it receives focus. This can be achieved by adding the 'tabindex=-1' attribute to the element or by making it visible using CSS. For example, add 'display: block;' or 'visibility: visible;' to the element's styles when it is focused.
High

Interactive controls are not keyboard-accessible

A control that responds to clicks (a clickable element or an ARIA widget) cannot receive keyboard focus, so keyboard and switch users cannot operate it.

Component 5 affected pages 20 instances WCAG WCAG 2.1 SC 2.1.1 Keyboard (Level A) Ref 0ZCCAA
Affected pagehttps://delta-cleaning.com/
Elementdiv#mega-toggle-block-1 > span
Accessible nameMENUMENU
Rolebutton
Markup
<span class="mega-toggle-label" role="button" aria-expanded="false"><span class="mega-toggle-label-closed">MENU</span><span class="mega-toggle-label-open">MENU</span></span>
How to fixTo make this control accessible, ensure it can receive keyboard focus by adding a tabindex attribute with a value of 0 or greater, or by using a native HTML element with built-in keyboard focus support, such as a button element.
High

Text has insufficient colour contrast

Text and background colours do not meet the minimum contrast ratio, reducing legibility.

Component 5 affected pages 5 instances WCAG WCAG 2.1 SC 1.4.3 Contrast (Minimum) (Level AA) Ref O9URBF
Affected pagehttps://delta-cleaning.com/
Element#mega-menu-wrap-footer-links > .mega-menu-toggle > .mega-toggle-blocks-right > .mega-toggle-block.mega-menu-toggle-block.mega-toggle-block-1 > .mega-toggle-label[role="button"] > .mega-toggle-label-closed
Accessible nameMENU
Markup
<span class="mega-toggle-label-closed">MENU</span>
How to fixTo improve readability, consider increasing the contrast between the text color and background color of the MENU element. You can achieve this by adjusting the CSS styles for the .mega-toggle-label-closed class to use a color combination with a sufficient contrast ratio, as recommended by the Web Content Accessibility Guidelines (WCAG 2.1).
High

Text has insufficient colour contrast

Text and background colours do not meet the minimum contrast ratio, reducing legibility.

Component 4 affected pages 8 instances WCAG WCAG 2.1 SC 1.4.3 Contrast (Minimum) (Level AA) Ref SNE89V
Affected pagehttps://delta-cleaning.com/%CE%BA%CE%B1%CF%84%CE%B7%CE%B3%CE%BF%CF%81%CE%AF%CE%B1-%CF%80%CF%81%CE%BF%CF%8A%CF%8C%CE%BD%CF%84%CE%BF%CF%82/%ce%b5%cf%81%ce%b3%ce%b1%ce%bb%ce%b5%ce%af%ce%b1-cleaning-tools/%ce%ba%ce%b1%cf%81%cf%8c%cf%84%cf%83%ce%b9%ce%b1-%ce%ac%cf%80%ce%bb%cf%85%cf%84%cf%89%ce%bd-laundry-carts
Element.textwidget
Accessible nameΒΙ.ΠΕ.Θ. Ο.Τ. 19/33 ΣΙΝΔΟΣ, Τ.Κ. 57 022 ΘΕΣΣΑΛΟΝΙΚΗ ΤΗΛ.: 2310 797 897, ΚΙΝ.: 6945 803 480, FAX: 2310 570 109, Ε-mail: [email removed]
Markup
<div class="textwidget">ΒΙ.ΠΕ.Θ. Ο.Τ. 19/33 ΣΙΝΔΟΣ, Τ.Κ. 57 022 ΘΕΣΣΑΛΟΝΙΚΗ

ΤΗΛ.: 2310 797 897, ΚΙΝ.: 6945 803 480, FAX: 2310 570 109,
Ε-mail: [email removed]</div>
How to fixTo improve readability, consider adjusting the text color or background color to meet the minimum contrast ratio of 4.5:1 for normal text. You can use online tools to help select accessible color combinations.
High

Text has insufficient colour contrast

Text and background colours do not meet the minimum contrast ratio, reducing legibility.

Component 4 affected pages 8 instances WCAG WCAG 2.1 SC 1.4.3 Contrast (Minimum) (Level AA) Ref 9GY119
Affected pagehttps://delta-cleaning.com/%CE%BA%CE%B1%CF%84%CE%B7%CE%B3%CE%BF%CF%81%CE%AF%CE%B1-%CF%80%CF%81%CE%BF%CF%8A%CF%8C%CE%BD%CF%84%CE%BF%CF%82/%ce%b5%cf%81%ce%b3%ce%b1%ce%bb%ce%b5%ce%af%ce%b1-cleaning-tools/%ce%ba%ce%b1%cf%81%cf%8c%cf%84%cf%83%ce%b9%ce%b1-%ce%ac%cf%80%ce%bb%cf%85%cf%84%cf%89%ce%bd-laundry-carts
Elementinput[type="submit"]
Markup
<input type="submit" value="Αναζήτηση">
How to fixTo fix this issue, increase the contrast between the text color and background color of the submit button. You can do this by changing the CSS styles for the input type="submit" element. For example, you could change the background color or the text color to have a higher contrast ratio. The WCAG 2.1 guidelines recommend a contrast ratio of at least 4.5:1 for normal text.
High

Text has insufficient colour contrast

Text and background colours do not meet the minimum contrast ratio, reducing legibility.

Component 3 affected pages 6 instances WCAG WCAG 2.1 SC 1.4.3 Contrast (Minimum) (Level AA) Ref 7I9B48
Affected pagehttps://delta-cleaning.com/%CE%BA%CE%B1%CF%84%CE%B7%CE%B3%CE%BF%CF%81%CE%AF%CE%B1-%CF%80%CF%81%CE%BF%CF%8A%CF%8C%CE%BD%CF%84%CE%BF%CF%82/%ce%b5%cf%81%ce%b3%ce%b1%ce%bb%ce%b5%ce%af%ce%b1-cleaning-tools/%ce%ba%ce%b1%cf%81%cf%8c%cf%84%cf%83%ce%b9%ce%b1-%ce%ac%cf%80%ce%bb%cf%85%cf%84%cf%89%ce%bd-laundry-carts
Elementa[href$="delta-cleaning.com"]
Accessible nameΑρχική
Markup
<a href="https://delta-cleaning.com">Αρχική</a>
How to fixTo improve readability, increase the contrast between the text color and background color of the navigation links. Consider using a color contrast analyzer tool to determine a suitable color combination that meets the WCAG 2.1 minimum contrast ratio thresholds.
High

Text has insufficient colour contrast

Text and background colours do not meet the minimum contrast ratio, reducing legibility.

Component 3 affected pages 6 instances WCAG WCAG 2.1 SC 1.4.3 Contrast (Minimum) (Level AA) Ref 7NRF5C
Affected pagehttps://delta-cleaning.com/%CE%BA%CE%B1%CF%84%CE%B7%CE%B3%CE%BF%CF%81%CE%AF%CE%B1-%CF%80%CF%81%CE%BF%CF%8A%CF%8C%CE%BD%CF%84%CE%BF%CF%82/%ce%b5%cf%81%ce%b3%ce%b1%ce%bb%ce%b5%ce%af%ce%b1-cleaning-tools/%ce%ba%ce%b1%cf%81%cf%8c%cf%84%cf%83%ce%b9%ce%b1-%ce%ac%cf%80%ce%bb%cf%85%cf%84%cf%89%ce%bd-laundry-carts
Elementselect
Accessible nameΤαξινόμηση ανά δημοφιλία Ταξινόμηση ανά νεότητα Ταξινόμηση ανά τιμή: χαμηλή προς υψηλή Ταξινόμηση ανά τιμή: υψηλή προς χαμηλή
Markup
<select name="orderby" class="orderby">
How to fixTo fix this issue, ensure that the text and background colors of the select element have a sufficient contrast ratio. This can be achieved by changing the colors used in the CSS styles applied to the element or its parent elements. The WCAG 2.1 guidelines recommend a minimum contrast ratio of 4.5:1 for normal text and 7:1 for larger text (18pt or 14pt bold).
High

Text has insufficient colour contrast

Text and background colours do not meet the minimum contrast ratio, reducing legibility.

Component 3 affected pages 6 instances WCAG WCAG 2.1 SC 1.4.3 Contrast (Minimum) (Level AA) Ref 7S82X8
Affected pagehttps://delta-cleaning.com/%CE%BA%CE%B1%CF%84%CE%B7%CE%B3%CE%BF%CF%81%CE%AF%CE%B1-%CF%80%CF%81%CE%BF%CF%8A%CF%8C%CE%BD%CF%84%CE%BF%CF%82/%ce%b5%cf%81%ce%b3%ce%b1%ce%bb%ce%b5%ce%af%ce%b1-cleaning-tools/%ce%ba%ce%b1%cf%81%cf%8c%cf%84%cf%83%ce%b9%ce%b1-%ce%ac%cf%80%ce%bb%cf%85%cf%84%cf%89%ce%bd-laundry-carts
Element.woocommerce-breadcrumb
Accessible nameΑρχική / Εργαλεία καθαρισμού / Καρότσια για άπλυτα
Markup
<nav class="woocommerce-breadcrumb"><a href="https://delta-cleaning.com">Αρχική</a>&nbsp;/&nbsp;<a href="https://delta-cleaning.com/κατηγορία-προϊόντος/%ce%b5%cf%81%ce%b3%ce%b1%ce%bb%ce%b5%ce%af%ce%b1-cleaning-tools">Εργαλεία καθαρισμού</a>&nbsp;/&nbsp;Καρότσια για άπλυτα</nav>
How to fixTo improve accessibility, consider adjusting the color scheme of the navigation text and background to meet the minimum contrast ratio thresholds. A contrast ratio of at least 4.5:1 for normal text and 7:1 for larger text (18pt or 14pt bold) is recommended.
High

Text has insufficient colour contrast

Text and background colours do not meet the minimum contrast ratio, reducing legibility.

Component 3 affected pages 6 instances WCAG WCAG 2.1 SC 1.4.3 Contrast (Minimum) (Level AA) Ref FCLHTD
Affected pagehttps://delta-cleaning.com/%CE%BA%CE%B1%CF%84%CE%B7%CE%B3%CE%BF%CF%81%CE%AF%CE%B1-%CF%80%CF%81%CE%BF%CF%8A%CF%8C%CE%BD%CF%84%CE%BF%CF%82/%ce%b5%cf%81%ce%b3%ce%b1%ce%bb%ce%b5%ce%af%ce%b1-cleaning-tools/%ce%ba%ce%b1%cf%81%cf%8c%cf%84%cf%83%ce%b9%ce%b1-%ce%ac%cf%80%ce%bb%cf%85%cf%84%cf%89%ce%bd-laundry-carts
Element.woocommerce-result-count
Accessible nameΕμφάνιση όλων των 2 αποτελεσμάτων
Markup
<p class="woocommerce-result-count">
	Εμφάνιση όλων των 2 αποτελεσμάτων</p>
How to fixTo improve accessibility, consider adjusting the text color or background color to meet the minimum contrast ratio of 4.5:1 for normal text. You can use online tools to determine the contrast ratio and select colors that meet the WCAG 2.1 guidelines.
Medium

Navigation regions are not distinguishable

The page has multiple navigation landmarks but they lack accessible names, so screen reader users cannot tell them apart.

Component 5 affected pages 16 instances WCAG WCAG 2.1 SC 1.3.1 Info and Relationships (Level A) Ref 45WJRG
Affected pagehttps://delta-cleaning.com/
Elementdiv#page > nav
Accessible nameToggle navigation MENUMENUΑρχικήΕταιρία ΠαρουσίασηΦωτόΒίντεοΠιστοποίησηΠολιτική απορρήτου Προϊόντα Συσκευές χώρων υγιεινής Συσκευές χειροπετσέταςΣυσκευές χάρτου υγείαςΣυσκευές κρεμοσάπουνου - αφρούΣυσκευές απολυμαντικούΣτεγνωτήρες χεριώνΣτεγνωτήρες μαλλιώνΒρύσες με φωτοκύτταροΦλουσόμετρο ουρητηρίουΣυσκευές αρωματισμούΑρωματικά - εντομοαπωθητικάΑναλώσιμα Κάδοι απορριμάτων Κάδοι απορριμάτων πλαστικοίΚάδοι απορριμάτων INOXΚάδοι εξωτερικού χώρου Εργαλεία καθαρισμού Ηλεκτρικά εργαλεία καθαρισμούΚαρότσια σφουγγαρίσματοςΚαρότσια εστιατορίουΚαρότσια για άπλυταΚαρότσια ορόφωνΕργαλεία καθαρισμού τζαμιώνΠαρκετέζες-ρακλέτεςΚοντάρια και κοντάρια πτυσσόμεναΣφουγγαρίστρες-ΠανέτεςΠανάκια καθαρισμούΣκούπεςΦαράσια Γάντια μιάς χρήσης Γάντια λάτεξ μιάς χρήσηςΓάντια νιτριλίουΓάντια βινυλίουΓάντια HDPE ζαχαροπλαστείου Ιματισμός μιάς χρήσης Κάλυμμα κεφαλής μιάς χρήσηςΜάσκες μιάς χρήσηςΠοδονάριαΕπιμανίκιαΠοδιές μιάς χρήσηςΠοδιές Νέα προϊόνταΚατάλογοι-Downloads Ενημερωτικά δελτία ΕπικοινωνίαEnglish 0 items - 0,00 €
Rolenavigation
Markup
<nav class="navbar navbar-default" role="navigation">
			<div class="container">
		        <div class="navbar-header">
		            <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
		                <span class="sr-only">Toggle navigation</span>
		                <span class="icon-bar"></span>
		                <span class="icon-bar"></span>
		                <span class="icon-bar"></span>
		            </button>

		        </div>

				<div id="mega-menu-wrap-primary" class="mega-menu-wrap"><div class="mega-menu-toggle"><div class="mega-to…
How to fixAdd an accessible name to the navigation landmark, for example by using the 'aria-label' attribute, to help screen reader users distinguish between multiple navigation regions.
Medium

Navigation regions are not distinguishable

The page has multiple navigation landmarks but they lack accessible names, so screen reader users cannot tell them apart.

Component 5 affected pages 10 instances WCAG WCAG 2.1 SC 1.3.1 Info and Relationships (Level A) Ref W5W8XD
Affected pagehttps://delta-cleaning.com/
Elementfooter#colophon > div > div > nav
Accessible nameMENUMENUΕταιρίαΠροϊόνταΝέα προϊόνταΚατάλογοι-DownloadsΕπικοινωνίαΠολιτική απορρήτου
Rolenavigation
Markup
<nav role="navigation" class="col-md-6">
					<div id="mega-menu-wrap-footer-links" class="mega-menu-wrap"><div class="mega-menu-toggle"><div class="mega-toggle-blocks-left"></div><div class="mega-toggle-blocks-center"></div><div class="mega-toggle-blocks-right"><div class="mega-toggle-block mega-menu-toggle-block mega-toggle-block-1" id="mega-toggle-block-1" tabindex="0"><span class="mega-toggle-label" role="button" aria-expanded="false"><span class="mega-toggle-label-closed">MENU</span><span class="mega-toggle-label-open">MENU</span></span></div></div></div><ul id="mega-menu-footer-links" cl…
How to fixProvide a unique and descriptive accessible name for each navigation landmark using the 'aria-label' attribute, e.g., <nav role="navigation" aria-label="Main Navigation">
Medium

Touch targets are too small on mobile

Interactive controls are smaller than the 24×24px minimum target size, making them hard to activate reliably by touch.

Component 5 affected pages 5 instances WCAG WCAG 2.2 SC 2.5.8 Target Size (Minimum) (Level AA) Ref 2V4LGC
Affected pagehttps://delta-cleaning.com/
Elementdiv#logo > a
Accessible nameDelta Cleaning Equipments
Markup
<a href="https://delta-cleaning.com/"><img src="https://delta-cleaning.com/wp-content/uploads/cropped-DELTA-CLEANING_Logo2024_HEADER.jpg" height="119" width="280" alt="Delta Cleaning Equipments"></a>
How to fixTo fix this issue, ensure that all interactive controls, such as buttons and links, have a minimum touch target size of 24x24 pixels. Consider increasing the size of the logo image or adding padding around it to meet this requirement.
Medium

Touch targets are too small on mobile

Interactive controls are smaller than the 24×24px minimum target size, making them hard to activate reliably by touch.

Component 5 affected pages 5 instances WCAG WCAG 2.2 SC 2.5.8 Target Size (Minimum) (Level AA) Ref UQY56V
Affected pagehttps://delta-cleaning.com/
Elementhtml > body > a:nth-of-type(2)
Accessible nameSkip to content
Markup
<a class="skip-link screen-reader-text" href="#content">Skip to content</a>
How to fixIncrease the size of the interactive element to a minimum of 24x24 pixels to ensure reliable touch activation on mobile devices.
Medium

Touch targets are too small on mobile

Interactive controls are smaller than the 24×24px minimum target size, making them hard to activate reliably by touch.

Component 4 affected pages 4 instances WCAG WCAG 2.2 SC 2.5.8 Target Size (Minimum) (Level AA) Ref DCK0SS
Affected pagehttps://delta-cleaning.com/%CE%BA%CE%B1%CF%84%CE%B7%CE%B3%CE%BF%CF%81%CE%AF%CE%B1-%CF%80%CF%81%CE%BF%CF%8A%CF%8C%CE%BD%CF%84%CE%BF%CF%82/%ce%b5%cf%81%ce%b3%ce%b1%ce%bb%ce%b5%ce%af%ce%b1-cleaning-tools/%ce%ba%ce%b1%cf%81%cf%8c%cf%84%cf%83%ce%b9%ce%b1-%ce%ac%cf%80%ce%bb%cf%85%cf%84%cf%89%ce%bd-laundry-carts
Elementaside#media_image-7 > a
Accessible nameQR-Code Delta Cleaning Catalog (GR) 2026
Markup
<a href="https://delta-cleaning.com/catalogs-2"><img class="image " src="https://delta-cleaning.com/DELTA-CLEANING_Cat-2026_RCol_EL.jpg" alt="QR-Code Delta Cleaning Catalog (GR) 2026" width="750" height="750" decoding="async" loading="lazy"></a>
How to fixIncrease the size of the touch target to at least 24x24px to make it easier for users to activate by touch. Consider adding padding or increasing the size of the image to meet the minimum target size requirement.
Medium

Touch targets are too small

Interactive controls are smaller than the 24×24px minimum target size, making them hard to activate reliably by touch.

Component 4 affected pages 46 instances WCAG WCAG 2.2 SC 2.5.8 Target Size (Minimum) (Level AA) Ref YKO30J
Affected pagehttps://delta-cleaning.com/%CE%BA%CE%B1%CF%84%CE%B7%CE%B3%CE%BF%CF%81%CE%AF%CE%B1-%CF%80%CF%81%CE%BF%CF%8A%CF%8C%CE%BD%CF%84%CE%BF%CF%82/%ce%b5%cf%81%ce%b3%ce%b1%ce%bb%ce%b5%ce%af%ce%b1-cleaning-tools/%ce%ba%ce%b1%cf%81%cf%8c%cf%84%cf%83%ce%b9%ce%b1-%ce%ac%cf%80%ce%bb%cf%85%cf%84%cf%89%ce%bd-laundry-carts
Element#menu-item-8930 > a
Accessible nameΣυσκευή κρεμοσάπουνου – αφρού 1200 ml
Markup
<a href="https://delta-cleaning.com/product/shower-gel-foam-dispenser-1200-ml">Συσκευή κρεμοσάπουνου – αφρού 1200 ml</a>
How to fixTo fix this issue, increase the size of the interactive controls to at least 24x24 pixels, or ensure that there is sufficient space around the controls so that they can be easily activated by touch.
Medium

Touch targets are too small on mobile

Interactive controls are smaller than the 24×24px minimum target size, making them hard to activate reliably by touch.

Component 4 affected pages 36 instances WCAG WCAG 2.2 SC 2.5.8 Target Size (Minimum) (Level AA) Ref 3KFCR9
Affected pagehttps://delta-cleaning.com/%CE%BA%CE%B1%CF%84%CE%B7%CE%B3%CE%BF%CF%81%CE%AF%CE%B1-%CF%80%CF%81%CE%BF%CF%8A%CF%8C%CE%BD%CF%84%CE%BF%CF%82/%ce%b5%cf%81%ce%b3%ce%b1%ce%bb%ce%b5%ce%af%ce%b1-cleaning-tools/%ce%ba%ce%b1%cf%81%cf%8c%cf%84%cf%83%ce%b9%ce%b1-%ce%ac%cf%80%ce%bb%cf%85%cf%84%cf%89%ce%bd-laundry-carts
Elementli#menu-item-8925 > a
Accessible nameΣυσκευή κρεμοσάπουνου – αφρού 500 ml
Markup
<a href="https://delta-cleaning.com/product/συσκευή-κρεμοσάπουνου-αφρού-500-ml">Συσκευή κρεμοσάπουνου – αφρού 500 ml</a>
How to fixTo fix this issue, increase the size of the interactive element to at least 24x24 pixels to make it easier for users to tap on mobile devices. Consider using CSS to set a minimum width and height for the element.
Medium

Touch targets are too small on mobile

Interactive controls are smaller than the 24×24px minimum target size, making them hard to activate reliably by touch.

Component 3 affected pages 5 instances WCAG WCAG 2.2 SC 2.5.8 Target Size (Minimum) (Level AA) Ref 9JXSDK
Affected pagehttps://delta-cleaning.com/%CE%BA%CE%B1%CF%84%CE%B7%CE%B3%CE%BF%CF%81%CE%AF%CE%B1-%CF%80%CF%81%CE%BF%CF%8A%CF%8C%CE%BD%CF%84%CE%BF%CF%82/%ce%b5%cf%81%ce%b3%ce%b1%ce%bb%ce%b5%ce%af%ce%b1-cleaning-tools/%ce%ba%ce%b1%cf%81%cf%8c%cf%84%cf%83%ce%b9%ce%b1-%ce%ac%cf%80%ce%bb%cf%85%cf%84%cf%89%ce%bd-laundry-carts
Elementdiv#primary > nav > a:nth-of-type(1)
Accessible nameΑρχική
Markup
<a href="https://delta-cleaning.com">Αρχική</a>
How to fixTo improve accessibility, consider increasing the size of the touch target to at least 24x24 pixels. This can be achieved by adding padding or increasing the font size of the interactive element.
Medium

Touch targets are too small on mobile

Interactive controls are smaller than the 24×24px minimum target size, making them hard to activate reliably by touch.

Component 3 affected pages 3 instances WCAG WCAG 2.2 SC 2.5.8 Target Size (Minimum) (Level AA) Ref W1HBDZ
Affected pagehttps://delta-cleaning.com/%CE%BA%CE%B1%CF%84%CE%B7%CE%B3%CE%BF%CF%81%CE%AF%CE%B1-%CF%80%CF%81%CE%BF%CF%8A%CF%8C%CE%BD%CF%84%CE%BF%CF%82/%ce%b5%cf%81%ce%b3%ce%b1%ce%bb%ce%b5%ce%af%ce%b1-cleaning-tools/%ce%ba%ce%b1%cf%81%cf%8c%cf%84%cf%83%ce%b9%ce%b1-%ce%ac%cf%80%ce%bb%cf%85%cf%84%cf%89%ce%bd-laundry-carts
Elementdiv#primary > form > select
Accessible nameΤαξινόμηση ανά δημοφιλία Ταξινόμηση ανά νεότητα Ταξινόμηση ανά τιμή: χαμηλή προς υψηλή Ταξινόμηση ανά τιμή: υψηλή προς χαμηλή
Markup
<select name="orderby" class="orderby">
					<option value="popularity">Ταξινόμηση ανά δημοφιλία</option>
					<option value="date" selected="selected">Ταξινόμηση ανά νεότητα</option>
					<option value="price">Ταξινόμηση ανά τιμή: χαμηλή προς υψηλή</option>
					<option value="price-desc">Ταξινόμηση ανά τιμή: υψηλή προς χαμηλή</option>
			</select>
How to fixIncrease the size of the touch target to at least 24x24px to make it easier for users to activate by touch on mobile devices. Consider adding padding or increasing the font size of the select element.
Medium

Text has insufficient colour contrast

Text and background colours do not meet the minimum contrast ratio, reducing legibility.

Component 2 affected pages 4 instances WCAG WCAG 2.1 SC 1.4.3 Contrast (Minimum) (Level AA) Ref 63WG1Z
Affected pagehttps://delta-cleaning.com/%CE%BA%CE%B1%CF%84%CE%B7%CE%B3%CE%BF%CF%81%CE%AF%CE%B1-%CF%80%CF%81%CE%BF%CF%8A%CF%8C%CE%BD%CF%84%CE%BF%CF%82/%ce%b5%cf%81%ce%b3%ce%b1%ce%bb%ce%b5%ce%af%ce%b1-cleaning-tools/%ce%ba%ce%b1%cf%81%cf%8c%cf%84%cf%83%ce%b9%ce%b1-%ce%ac%cf%80%ce%bb%cf%85%cf%84%cf%89%ce%bd-laundry-carts
Element.woocommerce-breadcrumb > a:nth-child(2)
Accessible nameΕργαλεία καθαρισμού
Markup
<a href="https://delta-cleaning.com/κατηγορία-προϊόντος/%ce%b5%cf%81%ce%b3%ce%b1%ce%bb%ce%b5%ce%af%ce%b1-cleaning-tools">Εργαλεία καθαρισμού</a>
How to fixTo improve text legibility, increase the contrast between the text color and background color. You can use online tools to determine the contrast ratio and adjust the colors accordingly. Consider using a color scheme with a higher contrast ratio, such as a darker background with lighter text or vice versa.
Low

Touch targets are too small on mobile

Interactive controls are smaller than the 24×24px minimum target size, making them hard to activate reliably by touch.

Component 1 affected page 3 instances WCAG WCAG 2.2 SC 2.5.8 Target Size (Minimum) (Level AA) Ref D9ALO0
Affected pagehttps://delta-cleaning.com/my-account
Elementinput#username
Markup
<input type="text" class="woocommerce-Input woocommerce-Input--text input-text" name="username" id="username" value="">
How to fixTo fix this issue, increase the size of the touch target to at least 24x24px. This can be achieved by adding padding or increasing the font size of the interactive element. For example, you can add CSS styles to increase the height and padding of the input field.
Low

Touch targets are too small on mobile

Interactive controls are smaller than the 24×24px minimum target size, making them hard to activate reliably by touch.

Component 1 affected page 8 instances WCAG WCAG 2.2 SC 2.5.8 Target Size (Minimum) (Level AA) Ref B5K4LL
Affected pagehttps://delta-cleaning.com/
Elementarticle#post-6999 > div > div:nth-of-type(1) > div:nth-of-type(2) > a:nth-of-type(1)
Accessible nameΠρόγραμμα για την ανταγωνιστικότητα 2021-2027, το οποίο συγχρηματοδοτείται από την ΕΕ
Markup
<a href="https://delta-cleaning.com/εταιρία/πιστοποίηση" rel="noopener"><img decoding="async" class="alignnone wp-image-8947 size-full" src="https://delta-cleaning.com/wp-content/uploads/e-banner_ESPA-2025_GR_300X150.jpg?ver=1788347490" alt="Πρόγραμμα για την ανταγωνιστικότητα 2021-2027, το οποίο συγχρηματοδοτείται από την ΕΕ" width="300" height="81" srcset="https://delta-cleaning.com/wp-content/uploads/e-banner_ESPA-2025_GR_300X150.jpg?ver=1788347490 300w, https://delta-cleaning.com/wp-content/uploads/e-banner_ESPA-2025_GR_300X150-180x49.jpg?ver=1788347490 180w" sizes="(max-width: 300px) 100v…
How to fixIncrease the size of the touch target to at least 24x24px to ensure users can reliably activate it by touch on mobile devices.
Low

Touch targets are too small on mobile

Interactive controls are smaller than the 24×24px minimum target size, making them hard to activate reliably by touch.

Component 1 affected page 2 instances WCAG WCAG 2.2 SC 2.5.8 Target Size (Minimum) (Level AA) Ref VUO5UP
Affected pagehttps://delta-cleaning.com/
Elementfooter#colophon > div > div > div > a:nth-of-type(1)
Accessible nameUnite Theme
Markup
<a href="https://colorlib.com/wp/unite" title="Unite Theme" target="_blank" rel="nofollow noopener">Unite Theme</a>
How to fixTo fix this issue, increase the size of the touch target to at least 24x24 pixels. This can be achieved by adding padding or increasing the font size of the interactive element.
Low

Touch targets are too small on mobile

Interactive controls are smaller than the 24×24px minimum target size, making them hard to activate reliably by touch.

Component 1 affected page 1 instance WCAG WCAG 2.2 SC 2.5.8 Target Size (Minimum) (Level AA) Ref SIQRL6
Affected pagehttps://delta-cleaning.com/my-account
Elementarticle#post-82 > div > div > form > p:nth-of-type(4) > a
Accessible nameΧάσατε τον κωδικό σας;
Markup
<a href="https://delta-cleaning.com/my-account/lost-password/">Χάσατε τον κωδικό σας;</a>
How to fixTo improve the accessibility of this element, consider increasing the size of the touch target to at least 24x24 pixels. This can be achieved by adding padding to the element or increasing the font size of the text within it.

Keep delta-cleaning.com monitored

This is a point-in-time assessment. Evolize monitoring re-scans the site on a schedule, flags new and recurring issues, tracks changes over time, and verifies fixes after you make them.

Start monitoring
About this assessment.
  • Automated technical analysis of publicly accessible website surfaces only — no credentials, private systems, or source-code access.
  • Findings apply to the pages and states successfully inspected; automated analysis may not detect every accessibility issue.
  • Results reflect the site at the scan date and may have changed since.
  • This is technical information, not legal advice.

Request a correction or removal · How Evolize scans