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

SureCart Product Template CSS

/* Author: Sumaiya, Clickup Doc: https://app.clickup.com/36636088/v/dc/12y1dr-22555/12y1dr-25055 */ /* Description: This CSS is added to optimize the surecart products single page */ /* Des: This CSS is added to ensures constrained elements have no margins and full width. */ .is-layout-constrained >…Continue reading

Hide Blog Post Titles

add_action(‘wp’, function() { if (is_single() && !is_admin()) { remove_action(‘virtue_page_title_container’, ‘virtue_page_title’, 20); } });Continue reading