<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Reachpoint</title>
	<atom:link href="http://reachpointnow.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://reachpointnow.com/</link>
	<description>Your Website Should Look Good and DO Good</description>
	<lastBuildDate>Wed, 31 Dec 2025 00:01:46 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>

<image>
	<url>https://reachpointnow.com/wp-content/uploads/2024/08/cropped-favicon-rp-32x32.png</url>
	<title>Reachpoint</title>
	<link>https://reachpointnow.com/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How to Fix the WordPress &#8220;Critical Error&#8221; After a Database Update</title>
		<link>https://reachpointnow.com/how-to-fix-the-wordpress-critical-error-after-a-database-update/</link>
					<comments>https://reachpointnow.com/how-to-fix-the-wordpress-critical-error-after-a-database-update/#_comments</comments>
		
		<dc:creator><![CDATA[mswartz]]></dc:creator>
		<pubDate>Tue, 30 Dec 2025 23:57:50 +0000</pubDate>
				<category><![CDATA[WordPress]]></category>
		<guid isPermaLink="false">https://reachpointnow.com/?p=15793</guid>

					<description><![CDATA[<p>After a routine WordPress update, a client's site was locked by a "critical error" message. The cause wasn't a bad update, but a hidden PHP memory limit. Here's how it was diagnosed and fixed.</p>
<p>The post <a href="https://reachpointnow.com/how-to-fix-the-wordpress-critical-error-after-a-database-update/">How to Fix the WordPress &#8220;Critical Error&#8221; After a Database Update</a> appeared first on <a href="https://reachpointnow.com">Reachpoint</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2>WordPress “Critical Error” After a Database Update? Here’s What Actually Fixed It</h2>
<p>Recently, a client reached out after updating WordPress and being immediately locked out of their site.</p>
<p><img fetchpriority="high" decoding="async" class="alignnone size-full wp-image-15796" src="https://reachpointnow.com/wp-content/uploads/2025/12/database-update-required.png" alt="Updated Database Screenshot" width="774" height="268" srcset="https://reachpointnow.com/wp-content/uploads/2025/12/database-update-required.png 774w, https://reachpointnow.com/wp-content/uploads/2025/12/database-update-required-300x104.png 300w, https://reachpointnow.com/wp-content/uploads/2025/12/database-update-required-768x266.png 768w" sizes="(max-width: 774px) 100vw, 774px" /></p>
<p>The update itself appeared to complete successfully, but as soon as they clicked <strong>“Update WordPress Database”</strong>, the site returned the dreaded message:</p>
<p><img decoding="async" class="alignnone size-full wp-image-15795" src="https://reachpointnow.com/wp-content/uploads/2025/12/critical-error.png" alt="WordPress Critical Error Message" width="547" height="172" srcset="https://reachpointnow.com/wp-content/uploads/2025/12/critical-error.png 547w, https://reachpointnow.com/wp-content/uploads/2025/12/critical-error-300x94.png 300w" sizes="(max-width: 547px) 100vw, 547px" /></p>
<p>No admin access. No clear explanation. Just a broken site.</p>
<p>If you’ve run into this scenario, here’s what was really happening and how it was resolved.</p>
<hr />
<h3>The Symptoms</h3>
<ul>
<li>WordPress core update completed</li>
<li>Database update prompt appeared (normal after core updates)</li>
<li>Clicking “Update WordPress Database” caused a <strong>critical error</strong></li>
<li>Front-end and <code>/wp-admin</code> became inaccessible</li>
</ul>
<p>This is one of those issues where WordPress gives very little surface-level information, but the cause is usually hiding just below the surface.</p>
<hr />
<h3>Step 1: Check the Debug Log (Don&#8217;t Guess)</h3>
<p>Instead of troubleshooting randomly, I enabled WordPress debugging and checked the server’s error log.</p>
<p>That revealed the real issue:</p>
<p><strong>PHP fatal error: allowed memory size exhausted</strong></p>
<p>In plain terms: WordPress itself updated fine, but during the database update process, the site ran out of PHP memory.</p>
<p>The fatal error was being triggered by an object caching plugin during the update process, which pushed memory usage beyond the server’s configured limit.</p>
<hr />
<h3>Why This Happens After Updates</h3>
<p>Modern WordPress sites are heavier than they used to be:</p>
<ul>
<li>Core updates temporarily load more data into memory</li>
<li>Object caching plugins can amplify memory usage</li>
<li>Hosts often default PHP memory to <strong>128MB</strong>, which is no longer enough for many sites</li>
</ul>
<p>So while everything <em>worked before</em>, the update process itself was the tipping point.</p>
<hr />
<h3>The Fix: Increase PHP Memory</h3>
<p>The solution was straightforward once the cause was identified.</p>
<p>On the hosting server, I increased the PHP memory limit from:</p>
<ul>
<li><strong>128MB → 256MB</strong></li>
</ul>
<p>After that:</p>
<ul>
<li>The database update completed successfully</li>
<li>The critical error disappeared</li>
<li>WordPress admin access was restored immediately</li>
</ul>
<p>No rollback required. No data loss. No plugin removal.</p>
<hr />
<h3>Why This Matters</h3>
<p>This type of issue is easy to misdiagnose:</p>
<ul>
<li>It <em>looks</em> like a broken update</li>
<li>It <em>feels</em> like a plugin conflict</li>
<li>It’s tempting to panic and start disabling things blindly</li>
</ul>
<p>But in reality, this was a <strong>server configuration issue</strong>, not a WordPress failure.</p>
<p>Knowing where to look, and what <em>not</em> to touch, is what keeps a small problem from becoming a big one.</p>
<hr />
<h3>If You’re Seeing This Error</h3>
<p>If your WordPress site shows a critical error immediately after a database update:</p>
<ol>
<li>Check the debug or server error logs</li>
<li>Look specifically for <strong>memory exhaustion errors</strong></li>
<li>Verify your PHP memory limit with your host</li>
<li>Increase memory before undoing updates or deleting plugins</li>
</ol>
<p>In many cases, that’s all it takes.</p>
<hr />
<h3>Final Thought</h3>
<p>WordPress problems often look the same on the surface, but the causes can be very different.</p>
<p>This is why I always start with diagnostics instead of assumptions. It saves time, protects data, and gets sites back online quickly.</p>
<p>If you’re maintaining a WordPress site and want updates handled carefully (and recoverable when something goes sideways), this is exactly the kind of situation where experience matters.</p>
<p>The post <a href="https://reachpointnow.com/how-to-fix-the-wordpress-critical-error-after-a-database-update/">How to Fix the WordPress &#8220;Critical Error&#8221; After a Database Update</a> appeared first on <a href="https://reachpointnow.com">Reachpoint</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://reachpointnow.com/how-to-fix-the-wordpress-critical-error-after-a-database-update/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Announcing Our Small Business Website Design Packages</title>
		<link>https://reachpointnow.com/announcing-our-small-business-website-design-packages/</link>
					<comments>https://reachpointnow.com/announcing-our-small-business-website-design-packages/#_comments</comments>
		
		<dc:creator><![CDATA[mswartz]]></dc:creator>
		<pubDate>Tue, 30 Sep 2025 17:11:59 +0000</pubDate>
				<category><![CDATA[News]]></category>
		<guid isPermaLink="false">https://reachpointnow.com/?p=15698</guid>

					<description><![CDATA[<p>Discover affordable small business website design packages. Starter, Pro &#038; Platinum options help you get online fast with a professional, mobile-friendly site.</p>
<p>The post <a href="https://reachpointnow.com/announcing-our-small-business-website-design-packages/">Announcing Our Small Business Website Design Packages</a> appeared first on <a href="https://reachpointnow.com">Reachpoint</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2>Get Online Quickly with Affordable, Professional Web Design</h2>
<p>Running a small business is challenging enough. Your website shouldn’t be another hurdle. That’s why we created our <a href="https://reachpointnow.com/website-solutions/website-design-development/small-business-website-design-packages/">Small Business Website Design Packages</a>, built specifically for entrepreneurs, startups, and local companies that need a professional online presence without unnecessary complexity.</p>
<p>We offer three options to fit your goals and budget:</p>
<ol>
<li><strong>Starter Package ($1,750)</strong> – Perfect for getting your business online fast. Up to 5 pages, mobile-friendly, with your logo, branding, and a contact form.</li>
<li><strong>Professional Package ($3,500)</strong> – A step up, with more pages, additional revisions, content coaching, and a polished design tailored to your brand.</li>
<li><strong>Platinum Package ($5,500+)</strong> – A full custom build using our 4-phase design system. Ideal if you want more involvement in planning, design, and content development.</li>
</ol>
<p>All packages include:</p>
<ul>
<li>Mobile responsive design</li>
<li>Integration with your branding</li>
<li>Social media links</li>
<li>Basic SEO setup</li>
<li>Training so you can update your site with ease</li>
</ul>
<p>Whether you’re starting fresh or upgrading your current site, our packages are designed to give small businesses a professional, affordable solution that grows with you.</p>
<div class="vcex-spacing wpex-w-100 wpex-clear" style="height:20px;"></div>
<a href="/website-solutions/website-design-development/small-business-website-design-packages/" class="vcex-button theme-button flat small align-left inline" title="Explore Small Business Website Design Packages" rel="none"><span class="vcex-button-inner theme-button-inner wpex-flex wpex-flex-wrap wpex-items-center wpex-justify-center">Explore Small Business Website Design Packages</span></a> 
<p>The post <a href="https://reachpointnow.com/announcing-our-small-business-website-design-packages/">Announcing Our Small Business Website Design Packages</a> appeared first on <a href="https://reachpointnow.com">Reachpoint</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://reachpointnow.com/announcing-our-small-business-website-design-packages/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Redline Racing Sims Website is Live</title>
		<link>https://reachpointnow.com/redline-racing-sims-website-is-live/</link>
					<comments>https://reachpointnow.com/redline-racing-sims-website-is-live/#_comments</comments>
		
		<dc:creator><![CDATA[mswartz]]></dc:creator>
		<pubDate>Fri, 12 Sep 2025 18:58:14 +0000</pubDate>
				<category><![CDATA[News]]></category>
		<guid isPermaLink="false">https://reachpointnow.com/?p=15638</guid>

					<description><![CDATA[<p>Redline Racing Sims is shifting into gear with the launch of their new website, designed and built by Reachpoint. This first phase is all about creating buzz, showcasing the high-end racing experience coming to Fremont, CA, and giving future racers a chance to join the launch list. From motion-enabled simulators to pro-level hardware, they’re bringing&#8230;</p>
<p>The post <a href="https://reachpointnow.com/redline-racing-sims-website-is-live/">Redline Racing Sims Website is Live</a> appeared first on <a href="https://reachpointnow.com">Reachpoint</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Redline Racing Sims is shifting into gear with the launch of their <strong>new website, designed and built by Reachpoint</strong>. This first phase is all about creating buzz, showcasing the high-end racing experience coming to Fremont, CA, and giving future racers a chance to join the launch list.</p>
<p>From motion-enabled simulators to pro-level hardware, they’re bringing the most immersive racing in Northern California. Sign up on their site for updates, exclusive offers, and early access when the arcade opens.</p>
<p>Want the full story?</p>
<a href="/portfolio-item/from-concept-to-countdown-we-delivered-a-launch-ready-website-in-record-time/" class="vcex-button theme-button flat small align-left inline" title="Redline Racing Sims Website" rel="none"><span class="vcex-button-inner theme-button-inner wpex-flex wpex-flex-wrap wpex-items-center wpex-justify-center">View Project Details Here</span></a> 
<p>The post <a href="https://reachpointnow.com/redline-racing-sims-website-is-live/">Redline Racing Sims Website is Live</a> appeared first on <a href="https://reachpointnow.com">Reachpoint</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://reachpointnow.com/redline-racing-sims-website-is-live/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Website Went Down. We Knew Instantly.</title>
		<link>https://reachpointnow.com/website-went-down-we-knew-instantly/</link>
					<comments>https://reachpointnow.com/website-went-down-we-knew-instantly/#_comments</comments>
		
		<dc:creator><![CDATA[mswartz]]></dc:creator>
		<pubDate>Mon, 19 May 2025 21:51:14 +0000</pubDate>
				<category><![CDATA[Website Security]]></category>
		<guid isPermaLink="false">https://reachpointnow.com/?p=15437</guid>

					<description><![CDATA[<p>A client's website went down over the weekend, but we caught it and got them back online within minutes. Here’s how our WordPress maintenance plan helps you stay protected, updated, and stress-free.</p>
<p>The post <a href="https://reachpointnow.com/website-went-down-we-knew-instantly/">Website Went Down. We Knew Instantly.</a> appeared first on <a href="https://reachpointnow.com">Reachpoint</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="wpb-content-wrapper"><div class="vc_row wpb_row vc_row-fluid wpex-relative"><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner"><div class="wpb_wrapper">
	<div class="wpb_text_column wpb_content_element" >
		<div class="wpb_wrapper">
			<p><span style="font-size: 21px;"><strong>Client:</strong> “Thank you! The website is back up.”</span><br />
<span style="font-size: 21px;"><strong>Us:</strong> “You’re welcome. Our monitoring service caught that.”</span></p>
<p>Over the weekend, we received an alert that a client’s website wasn’t responding. We contacted them immediately, and they were able to get the site back online within minutes.</p>
<p>That kind of quick turnaround isn’t luck—it’s preparation.</p>
<p>If you’re not currently monitoring your website’s uptime—or relying on customers to tell you something’s broken—you could be losing business without even knowing it.</p>
<h1>Why WordPress Sites Need Ongoing Maintenance</h1>
<p>If your website runs on WordPress (like 40% of the internet), you’re using a powerful platform—but it needs regular care to stay secure and perform well.</p>
<p>Without consistent maintenance, your site is vulnerable to:</p>
<ul>
<li><strong>Security threats</strong></li>
<li>Plugin or theme conflicts</li>
<li><strong>Crashes and unexpected downtime</strong></li>
<li>Broken features or design issues</li>
<li><strong>Loss of SEO rankings and user trust</strong></li>
<li>WordPress is software—and like all software, <strong>it needs updates and oversight</strong>.</li>
</ul>
<h1 style="line-height: 1.25em;">What’s Included in Our WordPress Security &amp; Maintenance Service</h1>
<p>Our <span class="text-highlight">monthly <strong>WordPress protection plan</strong></span> is designed to give business owners peace of mind. We handle the technical upkeep behind the scenes, so your site stays secure, stable, and fast.</p>
<p>Every month, we:</p>

		</div>
	</div>
<style>.vcex-bullets.vcex_6a1aef4907cb0 .vcex-bullets-icon{color:#65c603;}</style><div class="vcex-module vcex-bullets vcex-bullets--vertical wpex-gap-5 custom-icon wpex-mb-10 wpex-p-15 vc_custom_1747690592643 vcex_6a1aef4907cb0">
<ul role="list">
<li><div class="vcex-bullets-ci-wrap wpex-inline-flex"><span class="vcex-bullets-icon-wrap vcex-icon-wrap wpex-mr-10"><span class="vcex-bullets-icon vcex-icon wpex-icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM337 209L209 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L303 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"/></svg></span></span><div class="vcex-content wpex-flex-grow">Perform a <strong>full backup</strong> of your website and database</div></div></li>
<li><div class="vcex-bullets-ci-wrap wpex-inline-flex"><span class="vcex-bullets-icon-wrap vcex-icon-wrap wpex-mr-10"><span class="vcex-bullets-icon vcex-icon wpex-icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM337 209L209 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L303 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"/></svg></span></span><div class="vcex-content wpex-flex-grow"><strong>Update</strong> WordPress core, theme, and plugins</div></div></li>
<li><div class="vcex-bullets-ci-wrap wpex-inline-flex"><span class="vcex-bullets-icon-wrap vcex-icon-wrap wpex-mr-10"><span class="vcex-bullets-icon vcex-icon wpex-icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM337 209L209 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L303 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"/></svg></span></span><div class="vcex-content wpex-flex-grow"><strong>Test and verify</strong> all updates were successful</div></div></li>
<li><div class="vcex-bullets-ci-wrap wpex-inline-flex"><span class="vcex-bullets-icon-wrap vcex-icon-wrap wpex-mr-10"><span class="vcex-bullets-icon vcex-icon wpex-icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM337 209L209 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L303 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"/></svg></span></span><div class="vcex-content wpex-flex-grow"><strong>Scan</strong> for malware and vulnerabilities</div></div></li>
<li><div class="vcex-bullets-ci-wrap wpex-inline-flex"><span class="vcex-bullets-icon-wrap vcex-icon-wrap wpex-mr-10"><span class="vcex-bullets-icon vcex-icon wpex-icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM337 209L209 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L303 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"/></svg></span></span><div class="vcex-content wpex-flex-grow"><strong>Monitor uptime and performance</strong> (we’re alerted if your site goes down)</div></div></li>
<li><div class="vcex-bullets-ci-wrap wpex-inline-flex"><span class="vcex-bullets-icon-wrap vcex-icon-wrap wpex-mr-10"><span class="vcex-bullets-icon vcex-icon wpex-icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM337 209L209 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L303 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"/></svg></span></span><div class="vcex-content wpex-flex-grow">Submit a detailed <strong>monthly report</strong> (includes a Google Analytics snapshot)</div></div></li>
</ul>
</div>
	<div class="wpb_text_column wpb_content_element" >
		<div class="wpb_wrapper">
			<p><span style="font-size: 18px;"><strong>Cost:</strong> Starting at <span class="text-highlight">$45/month — <em>First month is free</em></span></span></p>
<h1>What Makes Us Different</h1>
<ol>
<li style="padding-bottom: 10px;"><strong>We don’t test on your live site—ever.</strong><br />
Before updating anything, we first apply changes to a private test version of your site (called a “staging environment”). This allows us to <strong>catch potential issues before they affect your real site</strong>—avoiding downtime, broken features, or embarrassing errors.</li>
<li style="padding-bottom: 10px;"><strong>Human oversight—not just automation.</strong><br />
Many providers rely solely on automated tools. We use automation where it makes sense, but we also personally check your site after each update to ensure everything looks and works as expected. You’re not just getting software—you’re getting <strong>hands-on care</strong>.</li>
<li style="padding-bottom: 10px;"><strong>We&#8217;re here when you need us.</strong><br />
When something goes wrong, we don&#8217;t send you to a support queue or chatbot. You’ll hear directly from us. In fact, we often notify our clients of an issue <strong>before they notice it—and often before their customers ever do</strong>.</li>
</ol>
<h1>Ready to Protect Your Website?</h1>
<p>Whether you run a business, nonprofit, or online store, your website deserves ongoing care. With our <strong>WordPress maintenance and monitoring service</strong>, you can trust that your site is in good hands.</p>
<p>Have questions or want to get started? <a href="/contact/">Contact us</a> — we’re happy to help.</p>

		</div>
	</div>
<style>.vcex-button.vcex_6a1aef490882b{margin-block-start:25px;}.vcex-button.vcex_6a1aef490882b:hover{background:#2d81da!important;}</style><a href="#" class="vcex-button theme-button medium inline vcex_6a1aef490882b"><span class="vcex-button-inner theme-button-inner wpex-flex wpex-flex-wrap wpex-items-center wpex-justify-center">Start Now &#8211; First Month Free</span></a> </div></div></div></div>
</div><p>The post <a href="https://reachpointnow.com/website-went-down-we-knew-instantly/">Website Went Down. We Knew Instantly.</a> appeared first on <a href="https://reachpointnow.com">Reachpoint</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://reachpointnow.com/website-went-down-we-knew-instantly/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>The Most Important Part of Your Website: How the Top Section Drives Engagement &#038; Sales</title>
		<link>https://reachpointnow.com/the-most-important-part-of-your-website-how-the-top-section-drives-engagement-sales/</link>
					<comments>https://reachpointnow.com/the-most-important-part-of-your-website-how-the-top-section-drives-engagement-sales/#_comments</comments>
		
		<dc:creator><![CDATA[mswartz]]></dc:creator>
		<pubDate>Wed, 19 Mar 2025 21:08:21 +0000</pubDate>
				<category><![CDATA[Web Design]]></category>
		<guid isPermaLink="false">https://reachpointnow.com/?p=15244</guid>

					<description><![CDATA[<p>Discover why the top section of your website matters most, and how optimizing this critical area can boost visitor engagement and conversions.</p>
<p>The post <a href="https://reachpointnow.com/the-most-important-part-of-your-website-how-the-top-section-drives-engagement-sales/">The Most Important Part of Your Website: How the Top Section Drives Engagement &#038; Sales</a> appeared first on <a href="https://reachpointnow.com">Reachpoint</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="wpb-content-wrapper"><div class="vc_row wpb_row vc_row-fluid wpex-relative"><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner"><div class="wpb_wrapper">
	<div class="wpb_text_column wpb_content_element" >
		<div class="wpb_wrapper">
			<h2 style="color: #333; margin-top: 0px;"><strong>Your website has less than 5 seconds to impress a visitor—are you making them count?</strong></h2>
<p>The top of your website—also known as the <strong>Hero section</strong>—is your best chance to immediately capture visitors&#8217; attention and clearly communicate what you&#8217;re all about. This <strong>critical section determines visitors first impression</strong> and whether they stick around or leave immediately.</p>
<h3 style="color: #333;"><strong>What Makes a Great First Impression (Hero Section)?</strong></h3>

		</div>
	</div>
<div class="vcex-spacing wpex-w-100 wpex-clear" style="height:20px;"></div><style>.vcex-image.vcex_6a1aef4909b15 .vcex-image-img{border-color:#dddddd;}</style><figure class="vcex-image vcex-module vcex_6a1aef4909b15"><div class="vcex-image-inner wpex-relative wpex-inline-block"><a href="http://reachpointnow.com/wp-content/uploads/2025/03/Website-Hero-Section-Example-With-Callouts.png" class="wpex-lightbox" data-alt="Website Hero Section Example with Callouts"><img width="1364" height="921" src="https://reachpointnow.com/wp-content/uploads/2025/03/Website-Hero-Section-Example-With-Callouts.png" class="vcex-image-img wpex-align-middle wpex-border wpex-border-solid" alt="Website Hero Section Example with Callouts" loading="lazy" decoding="async" srcset="https://reachpointnow.com/wp-content/uploads/2025/03/Website-Hero-Section-Example-With-Callouts.png 1364w, https://reachpointnow.com/wp-content/uploads/2025/03/Website-Hero-Section-Example-With-Callouts-300x203.png 300w, https://reachpointnow.com/wp-content/uploads/2025/03/Website-Hero-Section-Example-With-Callouts-768x519.png 768w" sizes="auto, (max-width: 1364px) 100vw, 1364px" /></a></div></figure></div></div></div></div><div class="vc_row wpb_row vc_row-fluid wpex-relative"><div class="wpb_column vc_column_container vc_col-sm-10"><div class="vc_column-inner"><div class="wpb_wrapper">
	<div class="wpb_text_column wpb_content_element" >
		<div class="wpb_wrapper">
			<ol>
<li style="padding-bottom: 10px;"><strong>Rich, Keyword-Focused Heading</strong><br />
This is usually your service offering. It tells Google and your website visitor immediately what you do or who you serve.</li>
<li style="padding-bottom: 10px;"><strong>Main Heading That Explains &#8220;Why&#8221;</strong><br />
Emphasize value, result or transformation visitors can expect.</li>
<li style="padding-bottom: 10px;"><strong>Clear Sub-heading Explaining &#8220;How&#8221;</strong><br />
Quickly communicate the specific service or product you offer to achieve those results.</li>
<li style="padding-bottom: 10px;"><strong>Strong Call to Action (CTA)</strong><br />
Clearly guide visitors toward the next step—contacting you, scheduling an appointment, or requesting more information.</li>
<li style="padding-bottom: 10px;"><strong>Social Proof</strong><br />
Reinforce credibility with testimonials, guarantees, reviews (e.g., Yelp, Google), certifications, or trust seals.</li>
<li style="padding-bottom: 10px;"><strong>Compelling Visuals</strong><br />
An engaging image or illustration—ideally, a real customer who&#8217;s benefited from your product or service.</li>
</ol>
<p>Need inspiration? Check out these great examples:</p>

		</div>
	</div>
</div></div></div><div class="wpb_column vc_column_container vc_col-sm-2"><div class="vc_column-inner"><div class="wpb_wrapper"></div></div></div></div><div class="vc_row wpb_row vc_row-fluid wpex-relative"><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner"><div class="wpb_wrapper"><div class="vcex-image-grid-wrap"><div class="vcex-module vcex-image-grid grid-style-default wpex-row wpex-clr wpex-lightbox-group"><div class="id-15251 vcex-image-grid-entry vcex-grid-item wpex-text-center span_1_of_2 col col-1"><figure class="vcex-image-grid-entry-figure wpex-last-mb-0 wpex-clr"><div class="vcex-image-grid-entry-img entry-media wpex-relative wpex-mb-20"><a href="https://reachpointnow.com/wp-content/uploads/2025/03/memorisely-hero-lrg.jpg" class="vcex-image-grid-entry-link wpex-lightbox-group-item" data-title="Memorisely Website Hero Section"><img width="800" height="528" src="https://reachpointnow.com/wp-content/uploads/2025/03/memorisely-hero-lrg.jpg" class="wpex-align-middle" alt="Memorisely Website Hero Section" loading="lazy" decoding="async" srcset="https://reachpointnow.com/wp-content/uploads/2025/03/memorisely-hero-lrg.jpg 800w, https://reachpointnow.com/wp-content/uploads/2025/03/memorisely-hero-lrg-300x198.jpg 300w, https://reachpointnow.com/wp-content/uploads/2025/03/memorisely-hero-lrg-768x507.jpg 768w" sizes="auto, (max-width: 800px) 100vw, 800px" /></a></div></figure></div><div class="id-15250 vcex-image-grid-entry vcex-grid-item wpex-text-center span_1_of_2 col col-2"><figure class="vcex-image-grid-entry-figure wpex-last-mb-0 wpex-clr"><div class="vcex-image-grid-entry-img entry-media wpex-relative wpex-mb-20"><a href="https://reachpointnow.com/wp-content/uploads/2025/03/freshdesk-hero-lrg.jpg" class="vcex-image-grid-entry-link wpex-lightbox-group-item" data-title="Freshworks Hero Section"><img width="800" height="528" src="https://reachpointnow.com/wp-content/uploads/2025/03/freshdesk-hero-lrg.jpg" class="wpex-align-middle" alt="Freshworks Hero Section" loading="lazy" decoding="async" srcset="https://reachpointnow.com/wp-content/uploads/2025/03/freshdesk-hero-lrg.jpg 800w, https://reachpointnow.com/wp-content/uploads/2025/03/freshdesk-hero-lrg-300x198.jpg 300w, https://reachpointnow.com/wp-content/uploads/2025/03/freshdesk-hero-lrg-768x507.jpg 768w" sizes="auto, (max-width: 800px) 100vw, 800px" /></a></div></figure></div><div class="id-15249 vcex-image-grid-entry vcex-grid-item wpex-text-center span_1_of_2 col col-1"><figure class="vcex-image-grid-entry-figure wpex-last-mb-0 wpex-clr"><div class="vcex-image-grid-entry-img entry-media wpex-relative wpex-mb-20"><a href="https://reachpointnow.com/wp-content/uploads/2025/03/contiant-hero-lrg.jpg" class="vcex-image-grid-entry-link wpex-lightbox-group-item" data-title="Contiant Hero Section"><img width="800" height="528" src="https://reachpointnow.com/wp-content/uploads/2025/03/contiant-hero-lrg.jpg" class="wpex-align-middle" alt="Contiant Hero Section" loading="lazy" decoding="async" srcset="https://reachpointnow.com/wp-content/uploads/2025/03/contiant-hero-lrg.jpg 800w, https://reachpointnow.com/wp-content/uploads/2025/03/contiant-hero-lrg-300x198.jpg 300w, https://reachpointnow.com/wp-content/uploads/2025/03/contiant-hero-lrg-768x507.jpg 768w" sizes="auto, (max-width: 800px) 100vw, 800px" /></a></div></figure></div><div class="id-15248 vcex-image-grid-entry vcex-grid-item wpex-text-center span_1_of_2 col col-2"><figure class="vcex-image-grid-entry-figure wpex-last-mb-0 wpex-clr"><div class="vcex-image-grid-entry-img entry-media wpex-relative wpex-mb-20"><a href="https://reachpointnow.com/wp-content/uploads/2025/03/stripe-hero-lrg.jpg" class="vcex-image-grid-entry-link wpex-lightbox-group-item" data-title="Stripe Hero Section"><img width="800" height="528" src="https://reachpointnow.com/wp-content/uploads/2025/03/stripe-hero-lrg.jpg" class="wpex-align-middle" alt="Stripe Hero Section" loading="lazy" decoding="async" srcset="https://reachpointnow.com/wp-content/uploads/2025/03/stripe-hero-lrg.jpg 800w, https://reachpointnow.com/wp-content/uploads/2025/03/stripe-hero-lrg-300x198.jpg 300w, https://reachpointnow.com/wp-content/uploads/2025/03/stripe-hero-lrg-768x507.jpg 768w" sizes="auto, (max-width: 800px) 100vw, 800px" /></a></div></figure></div></div></div>
	<div class="wpb_text_column wpb_content_element" >
		<div class="wpb_wrapper">
			<p><strong>Your website’s first impression is everything.</strong><br />
Get the top section right, and visitors will stay longer, engage more, and convert.</p>
<p><strong>Do you need help</strong> creating that first impression? <a href="https://reachpointnow.com/contact/"><strong>Reach out</strong></a>—we’d love to help!</p>

		</div>
	</div>
</div></div></div></div>
</div><p>The post <a href="https://reachpointnow.com/the-most-important-part-of-your-website-how-the-top-section-drives-engagement-sales/">The Most Important Part of Your Website: How the Top Section Drives Engagement &#038; Sales</a> appeared first on <a href="https://reachpointnow.com">Reachpoint</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://reachpointnow.com/the-most-important-part-of-your-website-how-the-top-section-drives-engagement-sales/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Why New Year&#8217;s Resolutions Fail and What We Do Instead</title>
		<link>https://reachpointnow.com/why-new-years-resolutions-fail-and-what-we-do-instead/</link>
					<comments>https://reachpointnow.com/why-new-years-resolutions-fail-and-what-we-do-instead/#_comments</comments>
		
		<dc:creator><![CDATA[mswartz]]></dc:creator>
		<pubDate>Fri, 24 Jan 2025 17:15:10 +0000</pubDate>
				<category><![CDATA[Business]]></category>
		<guid isPermaLink="false">https://reachpointnow.com/?p=15103</guid>

					<description><![CDATA[<p>Resolutions rarely work, but there’s a better way to set and achieve your goals. Here’s the simple process we use to stay focused and successful.</p>
<p>The post <a href="https://reachpointnow.com/why-new-years-resolutions-fail-and-what-we-do-instead/">Why New Year&#8217;s Resolutions Fail and What We Do Instead</a> appeared first on <a href="https://reachpointnow.com">Reachpoint</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><strong>Happy New Year!</strong></p>
<p>Is it too late to say that? I hope not.</p>
<p>Did you set any resolutions for the new year? If so, are you still with it?</p>
<p>If not, I understand. Resolutions rarely work. That’s why they even have a day called Quitters Day…January 10 when many of us ‘quit’ on our resolutions.</p>
<p><strong>This year, instead of New Year resolutions, I worked on goal setting and wanted to share my process.</strong> (So far, it’s working).</p>
<p>My process is based on the <a href="https://www.eosworldwide.com/what-is-eos" target="_blank" rel="noopener">EOS system</a> from <a href="https://amzn.to/40V6Rkd" target="_blank" rel="noopener">the book Traction</a> which I highly recommend reading.</p>
<p>Before goals are set, start by<strong> reflecting on the past year, present and future</strong>. Answer the questions:</p>
<ul>
<li><strong>Past:</strong> What are you most proud of?</li>
<li><strong>Present:</strong> What are you most confident about?</li>
<li><strong>Future:</strong> What are you most excited about?</li>
</ul>
<p>Your answers will help get you in a peak state.</p>
<p>Afterwards, while in peak state, rate, 1-5, how successful you were in each of the 4 business growth categories:</p>
<ul>
<li>Attracting Leads</li>
<li>Winning Deals</li>
<li>Delighting Clients</li>
<li>Growing Freedom</li>
</ul>
<p>Next, <strong>choose the lowest rated category. That is the one you’ll focus on for the next 90 days.</strong></p>
<p>My lowest rated category was ‘Attract Leads’. I could do a lot more in reaching out to my target audience.</p>
<p>Now, within your chosen category, <strong>brainstorm</strong> (write down):</p>
<ul>
<li>What’s Working?</li>
<li>What’s Not Working?</li>
<li>And 5+ Ideas to Fix (write as many as you can think of)</li>
</ul>
<p>From there, <strong>choose 3 tasks/projects</strong> (he calls them Rocks in the <a href="https://amzn.to/40V6Rkd" target="_blank" rel="noopener">Traction book</a>) you’ll work on for the next 90 days to achieve your goal.</p>
<p>I chose ‘Attract Leads’, so my 3 rocks for the next 90 days are focused on extending my network, with more in person events, more exposure on social media, and email.</p>
<p>You’ll probably have many great ideas but choose and <strong>focus on 3 that will move the needle</strong>.</p>
<p>You’ve chosen 3 tasks/project (rocks) to work on. <strong>How do you continue the momentum?</strong></p>
<ul>
<li><strong>Make sure your tasks/projects are directly in line</strong> with your company’s mission and vision, along with revenue and profit targets for the year.</li>
<li><strong>Make them S.M.A.R.T. goals</strong>: Specific, Measurable, Attainable, Relevant and Timely.</li>
<li><strong>Break down each task into mini tasks</strong>. Add the mini task to your calendar. If you schedule it, it becomes real.</li>
</ul>
<p>Good luck in the New Year.</p>
<p>I hope it is a very exciting and prosperous one for you.</p>
<p>The post <a href="https://reachpointnow.com/why-new-years-resolutions-fail-and-what-we-do-instead/">Why New Year&#8217;s Resolutions Fail and What We Do Instead</a> appeared first on <a href="https://reachpointnow.com">Reachpoint</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://reachpointnow.com/why-new-years-resolutions-fail-and-what-we-do-instead/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Step Inside: Tour the New Coastline Christian School Website</title>
		<link>https://reachpointnow.com/step-inside-tour-the-new-coastline-christian-school-website/</link>
					<comments>https://reachpointnow.com/step-inside-tour-the-new-coastline-christian-school-website/#_comments</comments>
		
		<dc:creator><![CDATA[mswartz]]></dc:creator>
		<pubDate>Sun, 22 Sep 2024 06:25:08 +0000</pubDate>
				<category><![CDATA[News]]></category>
		<guid isPermaLink="false">https://reachpointnow.com/?p=14794</guid>

					<description><![CDATA[<p>Reachpoint is thrilled to announce the launch of the newly revamped Coastline Christian School website</p>
<p>The post <a href="https://reachpointnow.com/step-inside-tour-the-new-coastline-christian-school-website/">Step Inside: Tour the New Coastline Christian School Website</a> appeared first on <a href="https://reachpointnow.com">Reachpoint</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="wpb-content-wrapper"><div class="vc_row wpb_row vc_row-fluid wpex-relative"><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner"><div class="wpb_wrapper">
	<div class="wpb_text_column wpb_content_element" >
		<div class="wpb_wrapper">
			<p>Reachpoint is thrilled to announce the launch of the <a href="https://coastlinechristian.org/" target="_blank" rel="noopener">newly revamped Coastline Christian School website</a>! Here are some of the exciting changes and improvements:</p>
<ul>
<li><strong>Full Control &amp; Flexibility:</strong> We migrated the website from Wix to a self-hosted WordPress platform. Coastline Christian School now has <strong>complete control</strong> over their website’s functionality, design, and content, allowing for more tailored updates and improvements.</li>
<li><span style="background-color: var(--wpex-surface-1); letter-spacing: 0.4px;"><strong>Mobile-First Strategy:</strong> After reviewing statistics from the old site, we recognized a significant portion of visitors accessed the site via mobile devices, so we <strong>redeveloped the homepage</strong> with a mobile-first approach rather than a desktop-first approach.</span></li>
<li><strong>Focused on New Visitors:</strong> The old website analytics also revealed that over 80% of visitors were new. With this insight, we designed the new homepage to be engaging and informative right from the start <strong>for parents looking for a quality school for their children</strong>.</li>
<li><strong>Advanced Customization:</strong> With a custom WordPress theme, the website now features a more sophisticated design, making it unique and <strong>specifically tailored</strong> to the school’s needs.</li>
</ul>
<p>We invite you to explore <a href="https://coastlinechristian.org/" target="_blank" rel="noopener">the new Coastline Christian School website</a> and experience these exciting improvements firsthand!</p>

		</div>
	</div>
<div class="vcex-spacing wpex-w-100 wpex-clear" style="height:20px;"></div><div class="vcex-multi-buttons wpex-flex wpex-flex-wrap wpex-items-center wpex-gap-10 vcex-small-screen-full-width"><a href="/portfolio-item/coastline-christian-school/" class="theme-button flat outline-transparent wpex-text-center vcex-count-1">Visit Our Portfolio for More Info</a><a href="https://coastlinechristian.org/" class="theme-button flat outline-transparent wpex-text-center vcex-count-2" target="_blank" rel="noopener noreferrer">Visit Coastline Christian School Website</a></div></div></div></div></div>
</div><p>The post <a href="https://reachpointnow.com/step-inside-tour-the-new-coastline-christian-school-website/">Step Inside: Tour the New Coastline Christian School Website</a> appeared first on <a href="https://reachpointnow.com">Reachpoint</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://reachpointnow.com/step-inside-tour-the-new-coastline-christian-school-website/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>New Healing Works Foundation Website by Reachpoint</title>
		<link>https://reachpointnow.com/new-healing-works-foundation-website-by-reachpoint/</link>
					<comments>https://reachpointnow.com/new-healing-works-foundation-website-by-reachpoint/#_comments</comments>
		
		<dc:creator><![CDATA[mswartz]]></dc:creator>
		<pubDate>Tue, 30 Apr 2024 18:47:15 +0000</pubDate>
				<category><![CDATA[News]]></category>
		<guid isPermaLink="false">https://reachpointnow.com/?p=14414</guid>

					<description><![CDATA[<p>The content rich website was redesigned with one goal and one target audience: Find resources quickly for Practitioners. </p>
<p>The post <a href="https://reachpointnow.com/new-healing-works-foundation-website-by-reachpoint/">New Healing Works Foundation Website by Reachpoint</a> appeared first on <a href="https://reachpointnow.com">Reachpoint</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>We are thrilled to announce the launch of the new <a href="https://healingworksfoundation.org/" target="_blank" rel="noopener">Healing Works Foundation website</a>.</p>
<p>The initial request was to apply a few color and text changes, but soon led to a full website redesign because we were only appealing to Practitioners, a completely different visitor than Patients, who were the previous target audience. The content layout needed to reflect that change.</p>
<p><a href="https://healingworksfoundation.org/" target="_blank" rel="noopener">The new site</a> includes a fully, indexed searchable Resources hub, an integrated multimedia section and new avenues or paths engaging and directing the visitor to important topics, courses and signups.</p>
<p><a href="https://healingworksfoundation.org/" target="_blank" rel="noopener">Check out the new site</a> and let us know your feedback or if you&#8217;d like to schedule a brief <a href="/website-solutions/non-profit-website-design/#schedule">15-minute call to discuss how we can do the same for your organization</a>.</p>
<p>For an in-depth analysis, <a href="/portfolio-item/healing-works-foundation/">visit the website redesign project portfolio page</a>.</p>
<p>The post <a href="https://reachpointnow.com/new-healing-works-foundation-website-by-reachpoint/">New Healing Works Foundation Website by Reachpoint</a> appeared first on <a href="https://reachpointnow.com">Reachpoint</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://reachpointnow.com/new-healing-works-foundation-website-by-reachpoint/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Fundraising Website Designed by Reachpoint Raises Over $120K in Donations</title>
		<link>https://reachpointnow.com/fundraising-website-designed-by-reachpoint-raises-over-120k-in-donations/</link>
					<comments>https://reachpointnow.com/fundraising-website-designed-by-reachpoint-raises-over-120k-in-donations/#_comments</comments>
		
		<dc:creator><![CDATA[mswartz]]></dc:creator>
		<pubDate>Thu, 11 May 2023 17:08:51 +0000</pubDate>
				<category><![CDATA[News]]></category>
		<guid isPermaLink="false">https://reachpointnow.com/?p=13874</guid>

					<description><![CDATA[<p>Donations surpassed goal of $70,000 by 70% reaching over $120,000.</p>
<p>The post <a href="https://reachpointnow.com/fundraising-website-designed-by-reachpoint-raises-over-120k-in-donations/">Fundraising Website Designed by Reachpoint Raises Over $120K in Donations</a> appeared first on <a href="https://reachpointnow.com">Reachpoint</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>We were just informed by our client that their fundraising website, designed by Reachpoint, <strong>surpassed their donation goal by 71%!</strong></p>
<p>Reachpoint recently launched <a href="https://bikeforcleanwater.org/" target="_blank" rel="noopener">Bike for Clean Water</a>, a one-page, fundraising website, to help our client raise money for clean water for kids in Kenya.</p>
<blockquote><p>Reachpoint quickly designed a very compelling and cost-effective website that helped us achieve our fundraising goal!<br />
<span style="font-size: 80%;">&#8211; Phil Holt</span></p></blockquote>
<p>Read more about the project in <a href="/portfolio-item/bike-for-clean-water/">our website design portfolio</a>.</p>
<p>The post <a href="https://reachpointnow.com/fundraising-website-designed-by-reachpoint-raises-over-120k-in-donations/">Fundraising Website Designed by Reachpoint Raises Over $120K in Donations</a> appeared first on <a href="https://reachpointnow.com">Reachpoint</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://reachpointnow.com/fundraising-website-designed-by-reachpoint-raises-over-120k-in-donations/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Website Enhancement(s) or Website Redesign: Fixing the Web Page Header</title>
		<link>https://reachpointnow.com/website-enhancements-or-website-redesign-fixing-the-web-page-header/</link>
					<comments>https://reachpointnow.com/website-enhancements-or-website-redesign-fixing-the-web-page-header/#_comments</comments>
		
		<dc:creator><![CDATA[mswartz]]></dc:creator>
		<pubDate>Tue, 28 Feb 2023 23:26:52 +0000</pubDate>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Usability]]></category>
		<guid isPermaLink="false">https://reachpointnow.com/?p=13674</guid>

					<description><![CDATA[<p>Is it worth making a few website improvements or completely redesigning the entire website? Depends...we chose website improvements.</p>
<p>The post <a href="https://reachpointnow.com/website-enhancements-or-website-redesign-fixing-the-web-page-header/">Website Enhancement(s) or Website Redesign: Fixing the Web Page Header</a> appeared first on <a href="https://reachpointnow.com">Reachpoint</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="wpb-content-wrapper"><div class="vc_row wpb_row vc_row-fluid wpex-relative"><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner"><div class="wpb_wrapper">
	<div class="wpb_text_column wpb_content_element" >
		<div class="wpb_wrapper">
			<p>We are working with <a href="https://sinterclad.com" target="_blank" rel="noopener" data-link-card="true">SinterClad</a>, a manufacturer of sintered porcelain stone surface solutions, on enhancing their website.</p>
<p>Prior to our agreement with SinterClad we discussed either a full website redesign or improve upon the current website. <strong>The decision was to enhance the current site</strong>.</p>
<p>Sometimes a tweak, small change or enhancement/improvement to a website may be all that is needed and may be <strong>more beneficial</strong> in terms of cost, time and payoff.</p>
<h2 data-block-id="block-1086c35e-5232-4d54-956d-ba2056ac7ac1">First: Fixing the Page Header</h2>
<p>One of the first items, and most important, was to improve the page header. <strong>The page header lacked</strong> some very important information:</p>
<ul>
<li>There <strong>wasn&#8217;t a phone number</strong> represented or immediate way to contact the company</li>
<li>We learned SinterClad had showrooms, but a <strong>physical location wasn&#8217;t represented</strong>.</li>
<li>There <strong>wasn&#8217;t any kind of CTA (Call to Action)</strong>, especially to get people to setup an appointment to view a showroom.</li>
<li>With an enormous product line, the <strong>only way to view</strong> products was to browse the entire product page(s).</li>
</ul>

		</div>
	</div>
<figure class="vcex-image vcex-module wpex-mb-20 wpex-text-center"><div class="vcex-image-inner wpex-relative wpex-inline-block vc_custom_1677626147757"><a href="http://reachpointnow.com/wp-content/uploads/2023/02/old-header.png" class="wpex-lightbox" data-alt="Old Sinterclad Header" title="Old SinterClad Header" data-title="Old SinterClad Header"><img width="1236" height="194" src="https://reachpointnow.com/wp-content/uploads/2023/02/old-header.png" class="vcex-image-img wpex-align-middle" alt="Old Sinterclad Header" loading="lazy" decoding="async" srcset="https://reachpointnow.com/wp-content/uploads/2023/02/old-header.png 1236w, https://reachpointnow.com/wp-content/uploads/2023/02/old-header-300x47.png 300w, https://reachpointnow.com/wp-content/uploads/2023/02/old-header-768x121.png 768w" sizes="auto, (max-width: 1236px) 100vw, 1236px" /></a></div><figcaption class="vcex-image-caption wpex-mt-10">Old Header (click to enlarge)</figcaption></figure>
	<div class="wpb_text_column wpb_content_element" >
		<div class="wpb_wrapper">
			<p><span style="color: #616161; font-size: 24px; font-weight: var(--wpex-heading-font-weight); letter-spacing: 0.4px;">Our Solution</span></p>
<p><strong>Before we started</strong> on a new header layout and not to arbitrarily or randomly put &#8216;stuff&#8217; in the header, we wanted to <strong>make sure it was the correct &#8216;stuff&#8217;, </strong>where <em>it</em> would live within the header, its priority, importance and style.</p>
<p>First, we <a class="wpex-lightbox" href="/wp-content/uploads/2023/02/Sinterclad-Header-Sketch.png">sketched</a> <span  style="color:#ed1c24;font-size:14px;" class="wpex-icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M352 0c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9L370.7 96 201.4 265.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L416 141.3l41.4 41.4c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6V32c0-17.7-14.3-32-32-32H352zM80 32C35.8 32 0 67.8 0 112V432c0 44.2 35.8 80 80 80H400c44.2 0 80-35.8 80-80V320c0-17.7-14.3-32-32-32s-32 14.3-32 32V432c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16H192c17.7 0 32-14.3 32-32s-14.3-32-32-32H80z"/></svg></span> out a few examples, and then provided SinterClad with a <a class="wpex-lightbox" href="/wp-content/uploads/2023/02/header-mockups.png">few design mockups</a> <span  style="color:#ed1c24;font-size:14px;" class="wpex-icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M352 0c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9L370.7 96 201.4 265.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L416 141.3l41.4 41.4c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6V32c0-17.7-14.3-32-32-32H352zM80 32C35.8 32 0 67.8 0 112V432c0 44.2 35.8 80 80 80H400c44.2 0 80-35.8 80-80V320c0-17.7-14.3-32-32-32s-32 14.3-32 32V432c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16H192c17.7 0 32-14.3 32-32s-14.3-32-32-32H80z"/></svg></span>, showing various placement of important features.  They chose the following (which we recommended):</p>

		</div>
	</div>
<figure class="vcex-image vcex-module wpex-mb-20 wpex-text-center"><div class="vcex-image-inner wpex-relative wpex-inline-block vc_custom_1677626152781"><a href="http://reachpointnow.com/wp-content/uploads/2023/02/new-header.png" class="wpex-lightbox" data-alt="New SinterClad Header" title="New &amp; Improved SinterClad Header" data-title="New &amp; Improved SinterClad Header"><img width="1236" height="191" src="https://reachpointnow.com/wp-content/uploads/2023/02/new-header.png" class="vcex-image-img wpex-align-middle" alt="New SinterClad Header" loading="lazy" decoding="async" srcset="https://reachpointnow.com/wp-content/uploads/2023/02/new-header.png 1236w, https://reachpointnow.com/wp-content/uploads/2023/02/new-header-300x46.png 300w, https://reachpointnow.com/wp-content/uploads/2023/02/new-header-768x119.png 768w" sizes="auto, (max-width: 1236px) 100vw, 1236px" /></a></div><figcaption class="vcex-image-caption wpex-mt-10">New and Improved Header (click to enlarge)</figcaption></figure>
	<div class="wpb_text_column wpb_content_element" >
		<div class="wpb_wrapper">
			<p>Notice the placement of each item, based on its importance, priority, given space and size.</p>
<ol>
<li><strong>Phone numbers were added</strong> so website visitors could <strong>immediately </strong>contact.</li>
<li><strong>Physical locations were added;</strong> indicating 2 locations if visitors didn&#8217;t know they existed, to show size of company, and potentially pay a visit.</li>
<li><strong>Email and social media channels were added</strong> for additional ways to contact.</li>
<li><strong>A &#8216;Book an Appointment&#8217; CTA (Call to Action) button was added</strong> to setup a showroom visit.</li>
<li><strong>A Search box was added</strong> so visitors could search for products rather than browse. <strong>EXTRA:</strong> The search data is connected to Google Analytics, so we can track what visitors are searching for; a great asset in learning how their target audience &#8216;speaks&#8217;.</li>
<li><strong>The main navigation</strong> was left justified to coexist and align directly with the logo, which visitors view first. Also, left justified to provide extra room for future tabs/links to the navigation.</li>
</ol>
<p>The header appears on all pages. Sometimes visitors may not visit your homepage; they may enter from an interior page, so you better be ready and have that <strong>important information located front and center</strong>.</p>
<p><strong>We&#8217;ll know more later</strong> on how well the new header is performing. We integrated Google Analytics and Sinterclad has boosted their advertising efforts. Stay tuned.</p>
<p><strong>Next in the Series &#8211; Part 2: One Page Enhancements</strong></p>

		</div>
	</div>
</div></div></div></div>
</div><p>The post <a href="https://reachpointnow.com/website-enhancements-or-website-redesign-fixing-the-web-page-header/">Website Enhancement(s) or Website Redesign: Fixing the Web Page Header</a> appeared first on <a href="https://reachpointnow.com">Reachpoint</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://reachpointnow.com/website-enhancements-or-website-redesign-fixing-the-web-page-header/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
