CSS Fix for Small or Tight Click Targets in Divi

/* Ensure tap targets are at least 44x44px */ .et-pb-controllers a { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; padding: 10px; /* You can increase this if needed */ margin: 6px; /* Adds spacing between adjacent links…Continue reading

Marquee Animation

const off = 10; let l = off; const marqueeElements = Array.from(document.querySelectorAll(‘.marquee span’)); const speed = 1.5; const stack = []; let pause = false; marqueeElements.forEach(element => { const width = element.offsetWidth + off; element.style.left = `${l}px`; l += width;…Continue reading

Logotype Snippet

.header-html-inner .site-logotype a { display: block; width: 401px; /* Fixed width */ text-align: center; font-size: 48px; /* Adjust for readability */ font-weight: bold; font-family: ‘Arial’, sans-serif; text-decoration: none; color: #fff!important; /* Adjust as needed */ padding: 10px 0; border-radius: 5px;…Continue reading

Logotype Snippet

.header-html-inner .site-logotype a { display: block; width: 401px; /* Fixed width */ text-align: center; font-size: 48px; /* Adjust for readability */ font-weight: bold; font-family: ‘Arial’, sans-serif; text-decoration: none; color: #fff!important; /* Adjust as needed */ padding: 10px 0; border-radius: 5px;…Continue reading

Mobile Menu Toggle JS

document.addEventListener(“DOMContentLoaded”, function() { const toggles = document.querySelectorAll(“.submenu-toggle”); toggles.forEach(function(toggle) { toggle.addEventListener(“click”, function(e) { const parent = e.target.closest(“li”); parent.classList.toggle(“open”); }); }); });Continue reading

Schema Markup – Local Business (copy)

{ “@context”: “https://schema.org”, “@type”: “LocalBusiness”, “name”: “iCleaning Services California”, “image”: “https://tusitio.com/logo.png”, “url”: “https://icleaningsvc.com”, “telephone”: “+1-XXX-XXX-XXXX”, “address”: { “@type”: “PostalAddress”, “streetAddress”: “Tu Dirección”, “addressLocality”: “Anaheim”, “addressRegion”: “CA”, “postalCode”: “92801”, “addressCountry”: “US” }, “priceRange”: “$$”, “servesCuisine”: “N/A”, “geo”: { “@type”: “GeoCoordinates”, “latitude”:…Continue reading