function hideH1(){ // Select all h1 elements with the class 'elementor-heading-title' const elements = document.querySelectorAll('h1.elementor-heading-title');
// Loop through each element and set its display style to 'none' elements.forEach(function(element) { element.style.display = 'none'; });
hideH12(); }
function hideH12(){ // Select all h1 elements with the class 'elementor-heading-title' const elements = document.querySelectorAll('section.elementor-element-8e7ac51');
// Loop through each element and set its display style to 'none' elements.forEach(function(element) { element.style.display = 'none'; }); }
document.addEventListener('DOMContentLoaded', function() { hideH1(); });