Skip to content
Home
Services
Close Services
Open Services
All Services
Local SEO
Google Business Profile
Free SEO Audit
Link Building
On-Page SEO
Content Writing
Locations
Close Locations
Open Locations
New York City
Los Angeles
Chicago
Houston
Phoenix
Dallas
Miami
Seattle
Denver
Austin
Nashville
Charlotte
San Diego
Philadelphia
San Antonio
Columbus
Indianapolis
Fort Worth
Jacksonville
San Jose
Blog
Results
About
Contact
Free SEO Audit
Home
Services
All Services
Local SEO
Google Business Profile
Free SEO Audit
Link Building
On-Page SEO
SEO Content Writing
Locations
New York City
Los Angeles
Chicago
Houston
Phoenix
Dallas
Miami
Seattle
Denver
Austin
Nashville
Charlotte
Diego
Philadelphia
San Antonio
Columbus
Indianapolis
Fort Worth
Jacksonville
San Jose
Blog
Results
About
Contact
Free SEO Audit
Category:
Uncategorized
Hello world!
Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
document.addEventListener('DOMContentLoaded', () => { const header = document.querySelector('.smart-header'); if (!header) return; const setHeaderHeight = () => { document.documentElement.style.setProperty('--smartHeaderH', header.offsetHeight + 'px'); }; setHeaderHeight(); window.addEventListener('resize', setHeaderHeight); let last = window.pageYOffset || 0; const delta = 8; window.addEventListener('scroll', () => { const cur = window.pageYOffset || 0; if (Math.abs(cur - last) <= delta) return; if (cur > last && cur > header.offsetHeight) { document.body.classList.add('header-hidden'); // scroll down => hide + remove gap } else { document.body.classList.remove('header-hidden'); // scroll up => show + add spacing } last = cur <= 0 ? 0 : cur; }, { passive: true }); });