-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htmlp=40044.html
839 lines (748 loc) · 98.7 KB
/
index.htmlp=40044.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
<!doctype html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<script>
if(!gform){document.addEventListener("gform_main_scripts_loaded",function(){gform.scriptsLoaded=!0}),window.addEventListener("DOMContentLoaded",function(){gform.domLoaded=!0});var gform={domLoaded:!1,scriptsLoaded:!1,initializeOnLoaded:function(o){gform.domLoaded&&gform.scriptsLoaded?o():!gform.domLoaded&&gform.scriptsLoaded?window.addEventListener("DOMContentLoaded",o):document.addEventListener("gform_main_scripts_loaded",o)},hooks:{action:{},filter:{}},addAction:function(o,n,r,t){gform.addHook("action",o,n,r,t)},addFilter:function(o,n,r,t){gform.addHook("filter",o,n,r,t)},doAction:function(o){gform.doHook("action",o,arguments)},applyFilters:function(o){return gform.doHook("filter",o,arguments)},removeAction:function(o,n){gform.removeHook("action",o,n)},removeFilter:function(o,n,r){gform.removeHook("filter",o,n,r)},addHook:function(o,n,r,t,i){null==gform.hooks[o][n]&&(gform.hooks[o][n]=[]);var e=gform.hooks[o][n];null==i&&(i=n+"_"+e.length),null==t&&(t=10),gform.hooks[o][n].push({tag:i,callable:r,priority:t})},doHook:function(o,n,r){if(r=Array.prototype.slice.call(r,1),null!=gform.hooks[o][n]){var t,i=gform.hooks[o][n];i.sort(function(o,n){return o.priority-n.priority});for(var e=0;e<i.length;e++)"function"!=typeof(t=i[e].callable)&&(t=window[t]),"action"==o?t.apply(null,r):r[0]=t.apply(null,r)}if("filter"==o)return r[0]},removeHook:function(o,n,r,t){if(null!=gform.hooks[o][n])for(var i=gform.hooks[o][n],e=i.length-1;0<=e;e--)null!=t&&t!=i[e].tag||null!=r&&r!=i[e].priority||i.splice(e,1)}}}
</script>
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
<link rel="profile" href="http://gmpg.org/xfn/11">
<meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
<!-- This site is optimized with the Yoast SEO plugin v16.8 - https://yoast.com/wordpress/plugins/seo/ -->
<title>Adapt Your Website Content to Meet Patients' Changing Needs</title>
<meta name="description" content="Right now, your website messaging is more important than ever. In this blog, learn how to adapt your website content to meet patients' needs and concerns." />
<link rel="canonical" href="http://www.roadsidedentalmarketing.com/blog/adapt-website-content/" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Adapt Your Website Content to Meet Patients' Changing Needs" />
<meta property="og:description" content="Right now, your website messaging is more important than ever. In this blog, learn how to adapt your website content to meet patients' needs and concerns." />
<meta property="og:url" content="http://www.roadsidedentalmarketing.com/blog/adapt-website-content/" />
<meta property="og:site_name" content="Roadside Dental Marketing" />
<meta property="article:published_time" content="2020-03-30T18:56:52+00:00" />
<meta property="article:modified_time" content="2020-05-25T15:52:57+00:00" />
<meta property="og:image" content="http://wordpress-523177-1667706.cloudwaysapps.com/wp-content/uploads/2020/03/adjust-website-messaging.png" />
<meta property="og:image:width" content="1585" />
<meta property="og:image:height" content="835" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:label1" content="Written by" />
<meta name="twitter:data1" content="Whitney Speir" />
<meta name="twitter:label2" content="Est. reading time" />
<meta name="twitter:data2" content="4 minutes" />
<script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"Organization","@id":"https://www.roadsidedentalmarketing.com/#organization","name":"Roadside Dental Marketing","url":"https://www.roadsidedentalmarketing.com/","sameAs":[],"logo":{"@type":"ImageObject","@id":"https://www.roadsidedentalmarketing.com/#logo","inLanguage":"en-US","url":"https://www.roadsidedentalmarketing.com/wp-content/uploads/2020/04/Roadside-Dental-Marketing-Logo-Horizontal.png","contentUrl":"https://www.roadsidedentalmarketing.com/wp-content/uploads/2020/04/Roadside-Dental-Marketing-Logo-Horizontal.png","width":1000,"height":102,"caption":"Roadside Dental Marketing"},"image":{"@id":"https://www.roadsidedentalmarketing.com/#logo"}},{"@type":"WebSite","@id":"https://www.roadsidedentalmarketing.com/#website","url":"https://www.roadsidedentalmarketing.com/","name":"Roadside Dental Marketing","description":"Dental Website Design and Marketing Solutions That Work.","publisher":{"@id":"https://www.roadsidedentalmarketing.com/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://www.roadsidedentalmarketing.com/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"ImageObject","@id":"http://www.roadsidedentalmarketing.com/blog/adapt-website-content/#primaryimage","inLanguage":"en-US","url":"https://www.roadsidedentalmarketing.com/wp-content/uploads/2020/03/adjust-website-messaging.png","contentUrl":"https://www.roadsidedentalmarketing.com/wp-content/uploads/2020/03/adjust-website-messaging.png","width":1585,"height":835,"caption":"A dental website's homepage highlighting emergency dentistry and virtual consultations"},{"@type":"WebPage","@id":"http://www.roadsidedentalmarketing.com/blog/adapt-website-content/#webpage","url":"http://www.roadsidedentalmarketing.com/blog/adapt-website-content/","name":"Adapt Your Website Content to Meet Patients' Changing Needs","isPartOf":{"@id":"https://www.roadsidedentalmarketing.com/#website"},"primaryImageOfPage":{"@id":"http://www.roadsidedentalmarketing.com/blog/adapt-website-content/#primaryimage"},"datePublished":"2020-03-30T18:56:52+00:00","dateModified":"2020-05-25T15:52:57+00:00","description":"Right now, your website messaging is more important than ever. In this blog, learn how to adapt your website content to meet patients' needs and concerns.","breadcrumb":{"@id":"http://www.roadsidedentalmarketing.com/blog/adapt-website-content/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http://www.roadsidedentalmarketing.com/blog/adapt-website-content/"]}]},{"@type":"BreadcrumbList","@id":"http://www.roadsidedentalmarketing.com/blog/adapt-website-content/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://www.roadsidedentalmarketing.com/"},{"@type":"ListItem","position":2,"name":"Blog","item":"https://www.roadsidedentalmarketing.com/blog/"},{"@type":"ListItem","position":3,"name":"Adapt Your Website Content to Meet Patients\u2019 Changing Needs"}]},{"@type":"Article","@id":"http://www.roadsidedentalmarketing.com/blog/adapt-website-content/#article","isPartOf":{"@id":"http://www.roadsidedentalmarketing.com/blog/adapt-website-content/#webpage"},"author":{"@id":"https://www.roadsidedentalmarketing.com/#/schema/person/bb04100cd78348aa17223bdc30b76ad7"},"headline":"Adapt Your Website Content to Meet Patients\u2019 Changing Needs","datePublished":"2020-03-30T18:56:52+00:00","dateModified":"2020-05-25T15:52:57+00:00","mainEntityOfPage":{"@id":"http://www.roadsidedentalmarketing.com/blog/adapt-website-content/#webpage"},"wordCount":811,"commentCount":0,"publisher":{"@id":"https://www.roadsidedentalmarketing.com/#organization"},"image":{"@id":"http://www.roadsidedentalmarketing.com/blog/adapt-website-content/#primaryimage"},"thumbnailUrl":"https://www.roadsidedentalmarketing.com/wp-content/uploads/2020/03/adjust-website-messaging.png","articleSection":["Dental Marketing Tips & Ideas"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["http://www.roadsidedentalmarketing.com/blog/adapt-website-content/#respond"]}]},{"@type":"Person","@id":"https://www.roadsidedentalmarketing.com/#/schema/person/bb04100cd78348aa17223bdc30b76ad7","name":"Whitney Speir","image":{"@type":"ImageObject","@id":"https://www.roadsidedentalmarketing.com/#personlogo","inLanguage":"en-US","url":"https://secure.gravatar.com/avatar/773b224517b4f9de12de8ec09e91a615?s=96&d=mm&r=g","contentUrl":"https://secure.gravatar.com/avatar/773b224517b4f9de12de8ec09e91a615?s=96&d=mm&r=g","caption":"Whitney Speir"},"description":"With more than 15 years in marketing and design, Whitney Speir is the Marketing Director for Roadside and LOVES helping practices nationwide learn how to implement simple marketing strategies that get BIG results. In addition to authoring articles, ebooks, and blog posts, Whitney speaks nationwide, teaching in-person marketing workshops and hosting online webinars and e-learning courses. A self-described \u201cmarketing nerd\u201d (glasses and all), Whitney is passionate about helping dental teams discover real-world strategies that can help grow their referrals, reviews, rankings, and overall revenue. Random fun facts about Whitney: \u2022 She\u2019s obsessed with cookbooks and loves trying new recipes \u2022 As she works, she\u2019s usually accompanied by her cat Pixel \u2022 Whitney owns an award-winning design studio with her husband and has had her work featured in magazines, books, blogs, and even on television \u2022 If she\u2019s not in her hometown of Chicago, you can find Whitney reading a book on a sunny beach in a tropical destination or visiting her second home, Seattle","url":"https://www.roadsidedentalmarketing.com/blog/author/whitneyspeir/"}]}</script>
<!-- / Yoast SEO plugin. -->
<link rel='dns-prefetch' href='//fonts.googleapis.com' />
<link rel='dns-prefetch' href='//s.w.org' />
<link rel='stylesheet' id='gtranslate-style-css' href='https://www.roadsidedentalmarketing.com/wp-content/plugins/gtranslate/gtranslate-style24.css?ver=5.7.3' media='all' />
<link rel='stylesheet' id='simple-sitemap-css-css' href='https://www.roadsidedentalmarketing.com/wp-content/plugins/simple-sitemap-pro/modules/css/simple-sitemap.css?ver=5.7.3' media='all' />
<link rel='stylesheet' id='birdeye-integration-css' href='https://www.roadsidedentalmarketing.com/wp-content/plugins/birdeye-integration/public/css/birdeye-integration-public.css?ver=0.4.0' media='all' />
<link rel='stylesheet' id='Slick-css-css' href='https://www.roadsidedentalmarketing.com/wp-content/plugins/dcf-2-0/css/slick.min.css?ver=5.7.3' media='all' />
<link rel='stylesheet' id='Slick-Theme-css-css' href='https://www.roadsidedentalmarketing.com/wp-content/plugins/dcf-2-0/css/slicktheme.min.css?ver=5.7.3' media='all' />
<link rel='stylesheet' id='primary-button-css-css' href='https://www.roadsidedentalmarketing.com/wp-content/plugins/dcf-2-0/modules-less/primary-button.css?ver=1' media='all' />
<link rel='stylesheet' id='ppress-frontend-css' href='https://www.roadsidedentalmarketing.com/wp-content/plugins/wp-user-avatar/assets/css/frontend.min.css?ver=3.1.15' media='all' />
<link rel='stylesheet' id='ppress-flatpickr-css' href='https://www.roadsidedentalmarketing.com/wp-content/plugins/wp-user-avatar/assets/flatpickr/flatpickr.min.css?ver=3.1.15' media='all' />
<link rel='stylesheet' id='ppress-select2-css' href='https://www.roadsidedentalmarketing.com/wp-content/plugins/wp-user-avatar/assets/select2/select2.min.css?ver=5.7.3' media='all' />
<link rel='stylesheet' id='styles-css' href='https://www.roadsidedentalmarketing.com/wp-content/themes/mydivi-light/css/global.css?ver=1624281056' media='all' />
<link rel='stylesheet' id='Customizer-CSS-css' href='https://www.roadsidedentalmarketing.com/wp-content/uploads/customizer-less/customizer-less.css?ver=1' media='all' />
<link rel='stylesheet' id='font-one-css' href='https://fonts.googleapis.com/css2?family=Montserrat%3Aital%2Cwght%400%2C300%3B0%2C400%3B0%2C700%3B1%2C400&display=swap&ver=5.7.3' media='all' />
<link rel='stylesheet' id='font-two-css' href='https://fonts.googleapis.com/css2?family=Yellowtail&display=swap&ver=5.7.3' media='all' />
<link rel='stylesheet' id='et-builder-googlefonts-cached-css' href='https://fonts.googleapis.com/css?family=Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic|Arimo:regular,italic,700,700italic|Abel:regular|Yellowtail:regular&subset=cyrillic,cyrillic-ext,latin,latin-ext,vietnamese,greek,greek-ext,hebrew&display=swap' media='all' />
<link rel='stylesheet' id='magnific-popup-css' href='https://www.roadsidedentalmarketing.com/wp-content/plugins/divi-builder/includes/builder/styles/magnific_popup.css?ver=4.9.10' media='all' />
<link rel='stylesheet' id='builder-frontend-css' href='https://www.roadsidedentalmarketing.com/wp-content/plugins/dcf-2-0/css/frontend-builder.css?ver=1' media='all' />
<link rel='stylesheet' id='Card-Factory-CSS-css' href='https://www.roadsidedentalmarketing.com/wp-content/uploads/customizer-less/card-factory-less.css?ver=5.7.3' media='all' />
<script src='https://www.roadsidedentalmarketing.com/wp-includes/js/jquery/jquery.min.js?ver=3.5.1' id='jquery-core-js'></script>
<script src='https://www.roadsidedentalmarketing.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.3.2' id='jquery-migrate-js'></script>
<script src='https://www.roadsidedentalmarketing.com/wp-content/plugins/simple-sitemap-pro/modules/js/simple-sitemap.js?ver=5.7.3' id='simple-sitemap-js-js'></script>
<script src='https://www.roadsidedentalmarketing.com/wp-content/plugins/birdeye-integration/public/js/birdeye-integration-public.js?ver=0.4.0' id='birdeye-integration-js'></script>
<script src='https://www.roadsidedentalmarketing.com/wp-content/plugins/wp-user-avatar/assets/flatpickr/flatpickr.min.js?ver=5.7.3' id='ppress-flatpickr-js'></script>
<script src='https://www.roadsidedentalmarketing.com/wp-content/plugins/wp-user-avatar/assets/select2/select2.min.js?ver=5.7.3' id='ppress-select2-js'></script>
<script id='air_light_legacy-js-before'>
var supportsES6 = (function () {
try {
new Function("(a = 0) => a");
return true;
} catch (err) {
return false;
}
}());
var legacyScript ="https://www.roadsidedentalmarketing.com/wp-content/themes/mydivi-light/js/dist/legacy.js";
if (!supportsES6) {
var script = document.createElement("script");
script.src = legacyScript;
document.head.appendChild(script);
}
</script>
<link rel="https://api.w.org/" href="https://www.roadsidedentalmarketing.com/wp-json/" /><link rel="alternate" type="application/json" href="https://www.roadsidedentalmarketing.com/wp-json/wp/v2/posts/40044" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.roadsidedentalmarketing.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://www.roadsidedentalmarketing.com/wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 5.7.3" />
<link rel='shortlink' href='https://www.roadsidedentalmarketing.com/?p=40044' />
<link rel="alternate" type="application/json+oembed" href="https://www.roadsidedentalmarketing.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.roadsidedentalmarketing.com%2Fblog%2Fadapt-website-content%2F" />
<link rel="alternate" type="text/xml+oembed" href="https://www.roadsidedentalmarketing.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.roadsidedentalmarketing.com%2Fblog%2Fadapt-website-content%2F&format=xml" />
<link rel="preload" href="https://www.roadsidedentalmarketing.com/wp-content/plugins/divi-builder/core/admin/fonts/modules.ttf" as="font" crossorigin="anonymous"><script id='nitro-telemetry'>(function() {!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports):"function"==typeof define&&define.amd?define(["exports"],t):t((e="undefined"!=typeof globalThis?globalThis:e||self).webVitals={})}(this,(function(e){"use strict";var t,n,i,r,a=function(e,t){return{name:e,value:void 0===t?-1:t,delta:0,entries:[],id:"v2-".concat(Date.now(),"-").concat(Math.floor(8999999999999*Math.random())+1e12)}},o=function(e,t){try{if(PerformanceObserver.supportedEntryTypes.includes(e)){if("first-input"===e&&!("PerformanceEventTiming"in self))return;var n=new PerformanceObserver((function(e){return e.getEntries().map(t)}));return n.observe({type:e,buffered:!0}),n}}catch(e){}},u=function(e,t){var n=function n(i){"pagehide"!==i.type&&"hidden"!==document.visibilityState||(e(i),t&&(removeEventListener("visibilitychange",n,!0),removeEventListener("pagehide",n,!0)))};addEventListener("visibilitychange",n,!0),addEventListener("pagehide",n,!0)},c=function(e){addEventListener("pageshow",(function(t){t.persisted&&e(t)}),!0)},f=function(e,t,n){var i;return function(r){t.value>=0&&(r||n)&&(t.delta=t.value-(i||0),(t.delta||void 0===i)&&(i=t.value,e(t)))}},s=-1,m=function(){return"hidden"===document.visibilityState?0:1/0},d=function(){u((function(e){var t=e.timeStamp;s=t}),!0)},p=function(){return s<0&&(s=m(),d(),c((function(){setTimeout((function(){s=m(),d()}),0)}))),{get firstHiddenTime(){return s}}},v=function(e,t){var n,i=p(),r=a("FCP"),u=function(e){"first-contentful-paint"===e.name&&(m&&m.disconnect(),e.startTime<i.firstHiddenTime&&(r.value=e.startTime,r.entries.push(e),n(!0)))},s=window.performance&&performance.getEntriesByName&&performance.getEntriesByName("first-contentful-paint")[0],m=s?null:o("paint",u);(s||m)&&(n=f(e,r,t),s&&u(s),c((function(i){r=a("FCP"),n=f(e,r,t),requestAnimationFrame((function(){requestAnimationFrame((function(){r.value=performance.now()-i.timeStamp,n(!0)}))}))})))},l=!1,g=-1,h={passive:!0,capture:!0},y=new Date,T=function(e,r){t||(t=r,n=e,i=new Date,L(removeEventListener),E())},E=function(){if(n>=0&&n<i-y){var e={entryType:"first-input",name:t.type,target:t.target,cancelable:t.cancelable,startTime:t.timeStamp,processingStart:t.timeStamp+n};r.forEach((function(t){t(e)})),r=[]}},w=function(e){if(e.cancelable){var t=(e.timeStamp>1e12?new Date:performance.now())-e.timeStamp;"pointerdown"==e.type?function(e,t){var n=function(){T(e,t),r()},i=function(){r()},r=function(){removeEventListener("pointerup",n,h),removeEventListener("pointercancel",i,h)};addEventListener("pointerup",n,h),addEventListener("pointercancel",i,h)}(t,e):T(t,e)}},L=function(e){["mousedown","keydown","touchstart","pointerdown"].forEach((function(t){return e(t,w,h)}))},S={};e.getCLS=function(e,t){l||(v((function(e){g=e.value})),l=!0);var n,i=function(t){g>-1&&e(t)},r=a("CLS",0),s=0,m=[],d=function(e){if(!e.hadRecentInput){var t=m[0],i=m[m.length-1];s&&e.startTime-i.startTime<1e3&&e.startTime-t.startTime<5e3?(s+=e.value,m.push(e)):(s=e.value,m=[e]),s>r.value&&(r.value=s,r.entries=m,n())}},p=o("layout-shift",d);p&&(n=f(i,r,t),u((function(){p.takeRecords().map(d),n(!0)})),c((function(){s=0,g=-1,r=a("CLS",0),n=f(i,r,t)})))},e.getFCP=v,e.getFID=function(e,i){var s,m=p(),d=a("FID"),v=function(e){e.startTime<m.firstHiddenTime&&(d.value=e.processingStart-e.startTime,d.entries.push(e),s(!0))},l=o("first-input",v);s=f(e,d,i),l&&u((function(){l.takeRecords().map(v),l.disconnect()}),!0),l&&c((function(){var o;d=a("FID"),s=f(e,d,i),r=[],n=-1,t=null,L(addEventListener),o=v,r.push(o),E()}))},e.getLCP=function(e,t){var n,i=p(),r=a("LCP"),s=function(e){var t=e.startTime;t<i.firstHiddenTime&&(r.value=t,r.entries.push(e)),n()},m=o("largest-contentful-paint",s);if(m){n=f(e,r,t);var d=function(){S[r.id]||(m.takeRecords().map(s),m.disconnect(),S[r.id]=!0,n(!0))};["keydown","click"].forEach((function(e){addEventListener(e,d,{once:!0,capture:!0})})),u(d,!0),c((function(i){r=a("LCP"),n=f(e,r,t),requestAnimationFrame((function(){requestAnimationFrame((function(){r.value=performance.now()-i.timeStamp,S[r.id]=!0,n(!0)}))}))}))}},e.getTTFB=function(e){var t,n=a("TTFB");t=function(){try{var t=performance.getEntriesByType("navigation")[0]||function(){var e=performance.timing,t={entryType:"navigation",startTime:0};for(var n in e)"navigationStart"!==n&&"toJSON"!==n&&(t[n]=Math.max(e[n]-e.navigationStart,0));return t}();if(n.value=n.delta=t.responseStart,n.value<0||n.value>performance.now())return;n.entries=[t],e(n)}catch(e){}},"complete"===document.readyState?setTimeout(t,0):addEventListener("pageshow",t)},Object.defineProperty(e,"__esModule",{value:!0})}));
var nitroTelemetry=function(){let e=!!window.IS_NITROPACK;let t=true;let a=false;let n=null;let l=null;let i=null;let o=g();let r="https://to.getnitropack.com/";let u="QYJqmQONRkOlleaARwacmBSouNBhieSe";let f=typeof NPRL!="undefined";let s=f?"loadNitro":"load";let c;let d;let w;function g(){return"NPTelemetry:"+btoa(Date.now())+"_"+h()+(e?"_o":"_u")}function v(){return document.visibilityState==="visible"}function y(){t=true;o=g();c=null;d={crux:null};S()}function S(){w={sessionEntry:null,unknown:0,afterStyles:0,afterPageLoad:0,afterScroll:0,total:0}}function p(){let n=performance.getEntriesByType("navigation");let l={};for(let t in n){let e=n[t];l.ttfb=e.responseStart-e.requestStart}return l}function h(){if(navigator.connection){return navigator.connection.effectiveType}else{return"u"}}function L(){let e=o+":pageview";m(e,{pv:1})}function m(e,t){t.url=window.location.href.replace(window.location.hash,"");if(window.localStorage){localStorage.setItem(e,JSON.stringify(t))}else{D([t])}}function b(e){if(!window.localStorage)return;let n=null;let l={};let t=0;let i;let o;let r;do{n=localStorage.key(t);if(n&&n.indexOf("NPTelemetry:")===0){r=n.split(":")[1];i=JSON.parse(localStorage.getItem(n));if(!l[r])l[r]={};let t=l[r];for(let e in i){o=i[e];if(o!==null){if(e=="url"){t[e]=o}else if(k(o)){if(!t[e])t[e]=0;t[e]+=o}else if(E(o)){if(!t[e])t[e]={};if(!t[e][o])t[e][o]=0;t[e][o]++}}}localStorage.removeItem(n)}else{t++}}while(n!==null);if(Object.keys(l).length){D(l)}a=false}function k(e){return!isNaN(parseFloat(e))&&isFinite(e)}function E(e){return typeof e==="string"||e instanceof String}function D(e){let t=new FormData;t.append("key",u);if(Object.keys(e).length){t.append("props",JSON.stringify(e));navigator.sendBeacon&&navigator.sendBeacon(r,t)||fetch(r,{body:t,method:"POST",keepalive:true})}}function N(e){if(e===b){if(a){return}else{a=true}}if(window.requestIdleCallback){requestIdleCallback(e,{timeout:1e3})}else{setTimeout(e,1e3)}}function P(){let e=o+":cwv";let t={};if(d.crux){t["lcp:crux"]=Math.round(d.crux)}if(w.total!==null){let e=1e3;t["cls:total"]=Math.round(w.total*e);if(w.afterStyles){t["cls:afterStylesDelta"]=Math.round(w.afterStyles*e)}if(w.afterPageLoad){t["cls:afterPageLoadDelta"]=Math.round(w.afterPageLoad*e)}if(w.afterScroll){t["cls:afterScrollDelta"]=Math.round(w.afterScroll*e)}if(w.unknown){t["cls:unknownDelta"]=Math.round(w.unknown*e)}}else{t["cls:total"]=0}if(c){t["fid"]=Math.round(c)}if(Object.keys(t).length){m(e,t)}}function I(){n=Date.now();window.removeEventListener("NitroStylesLoaded",I,true)}function O(){l=Date.now();window.removeEventListener(s,O,true)}function M(){i=Date.now()}function T(e){return n&&Date.now()-n<e}function x(e){return l&&Date.now()-l<e}function C(e){return i&&Date.now()-i<e}y();window.addEventListener(s,O,true);document.addEventListener("scroll",M,{capture:true,passive:true});if(f){window.addEventListener("NitroStylesLoaded",I,true)}window.addEventListener("load",function(){let e=p();m(o+":net",{ttfb:Math.round(e.ttfb)})},true);window.addEventListener("pageshow",function(e){if(v()&&(t||e.persisted)){L();N(b);t=false}},true);window.addEventListener("pagehide",function(e){P();y();b()},true);document.addEventListener("visibilitychange",function(e){if(v()){if(t){L();N(b);t=false}}else{}},true);webVitals.getLCP(function(e){d.crux=e.value},true);webVitals.getCLS(function(e){if(e.entries[0]!==w.sessionEntry){S();w.sessionEntry=e.entries[0]}w.total=e.value;let t=250;let n=C(t)+x(t)+T(t);if(n==1){if(C(t)){w.afterScroll+=e.delta}if(x(t)){w.afterPageLoad+=e.delta}if(T(t)){w.afterStyles+=e.delta}}else{w.unknown+=e.delta}},true);webVitals.getFID(function(e){c=e.value});return{}}();;})();</script>
<!-- CJT Global Block (132) - GetEmails Supression Script - START -->
<script type="text/javascript">
!function(){var geq=window.geq=window.geq||[];if(geq.initialize) return;if (geq.invoked){if (window.console && console.error) {console.error("GE snippet included twice.");}return;}geq.invoked = true;geq.methods = ["page", "suppress", "trackOrder", "identify", "addToCart"];geq.factory = function(method){return function(){var args = Array.prototype.slice.call(arguments);args.unshift(method);geq.push(args);return geq;};};for (var i = 0; i < geq.methods.length; i++) {var key = geq.methods[i];geq[key] = geq.factory(key);}geq.load = function(key){var script = document.createElement("script");script.type = "text/javascript";script.async = true;if (location.href.includes("vge=true")) {script.src = "https://s3-us-west-2.amazonaws.com/jsstore/a/" + key + "/ge.js?v=" + Math.random();} else {script.src = "https://s3-us-west-2.amazonaws.com/jsstore/a/" + key + "/ge.js";}var first = document.getElementsByTagName("script")[0];first.parentNode.insertBefore(script, first);};geq.SNIPPET_VERSION = "1.5.1";
geq.load("2J0H5DY");}();
</script>
<script>geq.suppress()</script>
<!-- CJT Global Block (132) - GetEmails Supression Script - END -->
<!-- CJT Global Block (127) - Lucky Orange HeatMap - START -->
<script type='text/javascript'>
window.__lo_site_id = 305260;
(function() {
var wa = document.createElement('script'); wa.type = 'text/javascript'; wa.async = true;
wa.src = 'https://d10lpsik1i8c69.cloudfront.net/w.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(wa, s);
})();
</script>
<!-- CJT Global Block (127) - Lucky Orange HeatMap - END -->
<!-- CJT Global Block (89) - Google Tag Manager Header - START -->
<meta name="ahrefs-site-verification" content="d7052cdd00896baa1529252fd3822a6ba1f134a299778ff7e9bd4b9493eabc64">
<meta name="google-site-verification" content="Ive0TZUcqXSFxGpZ9ajZmGWmzUCurLdBy1goF8LA3qc" />
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-KN8N6W8');</script>
<!-- End Google Tag Manager -->
<!-- Hotjar Tracking Code for https://www.roadsidedentalmarketing.com -->
<script>
(function(h,o,t,j,a,r){
h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
h._hjSettings={hjid:2221609,hjsv:6};
a=o.getElementsByTagName('head')[0];
r=o.createElement('script');r.async=1;
r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
a.appendChild(r);
})(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');
</script>
<!-- CJT Global Block (89) - Google Tag Manager Header - END -->
<!-- CJT Global Block (28) - Gravity Form Scroll - START -->
<script>
jQuery(function($) {
function FormCompleteScroll(id){
id = id === "#" ? "#site" : id;
var itemOffset = $(id).offset().top;
var HeaderHeightFH = $(".fullheader").outerHeight();
var FullScroll = itemOffset-HeaderHeightFH;
$("html, body").bind("scroll mousedown DOMMouseScroll mousewheel keyup", function(){
$('html, body').stop();
});
$('html,body').animate({ scrollTop: FullScroll }, 400, function(){
$("html, body").unbind("scroll mousedown DOMMouseScroll mousewheel keyup");
});
}
jQuery(document).bind('gform_confirmation_loaded', function(event, formId){
if(formId == 11) {
if($("#FB-Form-Invisalign").length > 0) {
FormCompleteScroll("#FB-Form-Invisalign");
}
if($("#special-offer").length > 0) {
FormCompleteScroll("#special-offer");
}
}
});
});
</script>
<!-- CJT Global Block (28) - Gravity Form Scroll - END -->
<link rel="icon" href="https://www.roadsidedentalmarketing.com/wp-content/uploads/2019/10/rs-favicon.png" sizes="32x32" />
<link rel="icon" href="https://www.roadsidedentalmarketing.com/wp-content/uploads/2019/10/rs-favicon.png" sizes="192x192" />
<link rel="apple-touch-icon" href="https://www.roadsidedentalmarketing.com/wp-content/uploads/2019/10/rs-favicon.png" />
<meta name="msapplication-TileImage" content="https://www.roadsidedentalmarketing.com/wp-content/uploads/2019/10/rs-favicon.png" />
</head>
<body class="post-template-default single single-post postid-40044 single-format-standard no-js et_divi_builder et_bloom et-pb-theme-mydivi-light et-db">
<div id="page" class="site">
<a class="skip-link screen-reader-text" href="#content">Skip to content</a>
<header>
<div class="fullheader header">
<div class="mobile-footer">
<a href="tel:360-283-5001">
<i class="fa fa-phone" aria-hidden="true"></i>
<span>Call Us</span>
</a>
<a href="https://app.hubspot.com/meetings/angela330" target="_blank">
<i class="fa fa-calendar" aria-hidden="true"></i>
<span>Book a Call</span>
</a>
<a href="#gformpop18" class="popup-inline">
<i class="fa fa-envelope" aria-hidden="true"></i>
<span>Free Quote</span>
</a>
</div>
<div id="mobile-header">
<a id="responsive-menu-button" href="#sidr-main">
<i class="fa fa-bars" aria-hidden="true"></i>
<i class="fa fa-times" aria-hidden="true"></i>
<span class="sr-only">Open or Close Menu</span>
</a>
<a href="/" class="ga-logo">
<div class="rs-logo-svg">
<svg id="rsdm-logo" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 763.1 133.41">
<defs>
<linearGradient id="linear-gradient" x1="195.57" y1="87.62" x2="146.88" y2="164.85" gradientTransform="translate(-4 -55.7)" gradientUnits="userSpaceOnUse">
<stop offset="0.29" stop-color="#f26325"/>
<stop offset="1" stop-color="#ed2475"/>
</linearGradient>
</defs>
<path style="fill: #2F3646;" d="M78.3,142.7,49.6,94.2H26.8v48.6H4V12.7H61.2C87,12.7,104,29.3,104,53.5c0,23.1-15.2,35.7-31,38.2l32,51.2-26.7-.2Zm2.2-89.5c0-12.5-9.4-20.5-22.3-20.5H26.8V74H58.2c12.9.1,22.3-8.1,22.3-20.8" transform="translate(-4 -11.7)"/>
<path style="fill: #2F3646;" d="M289.3,142.7V132.4c-7,8.2-18.1,12.7-30.6,12.7-15.2,0-32.5-10.6-32.5-31.2C226.2,92,243.4,83,258.7,83c12.9,0,23.7,4.1,30.6,12.1v-14c0-10.9-9.2-17.6-22-17.6a37.46,37.46,0,0,0-27.9,12.1l-8.6-14.2a56,56,0,0,1,39.6-15.3c21.1,0,39.4,8.8,39.4,34v62.6Zm0-21.4V106.8c-4.9-6.4-13.6-9.7-22.5-9.7-11.5,0-20.3,6.9-20.3,17s8.8,17.1,20.4,17.1c8.8,0,17.5-3.3,22.5-9.7" transform="translate(-4 -11.7)"/>
<path style="fill: #2F3646;" d="M394.9,142.7V129.8a38.22,38.22,0,0,1-30.3,15.3c-23.9,0-41.7-18.4-41.7-49.6,0-30.4,17.5-49.3,41.7-49.3a36.8,36.8,0,0,1,30.3,15.4V12.7h20.5V142.9l-20.5-.2Zm0-28.4V77.1a30.6,30.6,0,0,0-24.2-12.7c-16.4,0-26.7,13.1-26.7,31.2S354.3,127,370.7,127a30.19,30.19,0,0,0,24.2-12.7" transform="translate(-4 -11.7)"/>
<path style="fill: #2F3646;" d="M430,130.3l9.4-14.6a48.55,48.55,0,0,0,31.8,13.1c12.3,0,18.6-5,18.6-12.5,0-18.6-57-5.3-57-41.5,0-15.4,13.3-28.5,37.2-28.5a53.6,53.6,0,0,1,36.5,13.1L498,73.7a38.34,38.34,0,0,0-27.9-11.3c-10.6,0-17.3,5-17.3,11.7,0,16.6,57,4.1,57,41.5,0,16.8-13.9,29.5-39.2,29.5-16.2.1-30.7-5.2-40.6-14.8" transform="translate(-4 -11.7)"/>
<path style="fill: #2F3646;" d="M523.8,24.4a12.7,12.7,0,1,1,25.4,0A12.48,12.48,0,0,1,536.6,37h-.1a12.76,12.76,0,0,1-12.7-12.6h0m2.4,24.2h20.5v94.3H526.2Z" transform="translate(-4 -11.7)"/>
<path style="fill: #2F3646;" d="M635.7,142.7V129.8a38.22,38.22,0,0,1-30.3,15.3c-23.9,0-41.8-18.4-41.8-49.6,0-30.4,17.6-49.3,41.8-49.3a36.93,36.93,0,0,1,30.3,15.4V12.7h20.5V142.9l-20.5-.2Zm0-28.4V77.1a30.6,30.6,0,0,0-24.2-12.7c-16.4,0-26.7,13.1-26.7,31.2S595.1,127,611.5,127a30,30,0,0,0,24.2-12.7" transform="translate(-4 -11.7)"/>
<path style="fill: #2F3646;" d="M673.1,95.6c0-27.3,19.9-49.3,47.8-49.3,28.3,0,46.2,21.5,46.2,51.2v5H694.4c1.6,14,12.1,25.9,29.9,25.9a39.89,39.89,0,0,0,27-10.6l9.4,13.4a56,56,0,0,1-38.2,13.9c-28.6,0-49.4-19.8-49.4-49.5m47.6-32.7c-17.3,0-25.6,13.4-26.4,24.8h53.1a25.38,25.38,0,0,0-26-24.8c-.2-.1-.3,0-.7,0" transform="translate(-4 -11.7)"/>
<g id="check-logo">
<circle id="circle" class="cls-2" cx="159.3" style="fill:url(#linear-gradient);" cy="83.1" r="50.3"></circle>
<path id="check" class="cls-3" d="M200.4,60.9l-36,35.6-16-16.3a5.44,5.44,0,0,0-7.5,0l-7.5,7.5a5.44,5.44,0,0,0,0,7.5L153.2,115l7.5,7.5a5.14,5.14,0,0,0,3.7,1.5,4.76,4.76,0,0,0,3.7-1.5l7.5-7.5,35.6-35.5C209.5,73.1,204.6,65.4,200.4,60.9Z" transform="translate(-4 -11.7)" style="fill: #fff;"></path>
</g>
</svg>
</div>
</a>
</div>
<div class="above-nav-wrap">
<a href="/" class="logo-link rsdm-logo">
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/88150/rsdm-logo_copy.svg" data-alt-src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/88150/rsdm-home-logo-animated-new.svg" loading="lazy">
</a>
<div class="cta-wrap">
<a href="tel:360-283-5001" onclick="gtag_report_conversion" class="nav-phone ga-phone-header" id="call-us-cta">
<svg version="1.1" id="phone-icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{display:none;}
.st1{display:inline;fill-rule:evenodd;clip-rule:evenodd;fill:none;stroke:#EB4053;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st2{display:inline;fill:none;stroke:#EB4053;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st3{fill:none;stroke:#EB4053;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
</style>
<g class="st0">
<path class="csvg st1" d="M67.6,25.5c-4.7-4.9-11.3-7.9-18.6-7.8c-6.5,0.1-12.3,2.6-16.7,6.6c-0.6,0.6-1.2,1.1-1.8,1.8
c-4.1,4.5-6.5,10.6-6.4,17.1c0,2.2,0.3,4.3,0.9,6.3c0.6,2.4,1.6,4.6,2.9,6.6c0,0,0,0,0,0c0,0,0,0,0,0c2.8,5.3,8.7,7.9,9.4,17.9
c0,0.3,0,0.5,0,0.8c0,0.3,0,0.6,0,0.9l0,0.3l12.3-0.2l12.3-0.2c0,0,0-1.3,0-1.8c0.5-10.1,6.3-12.8,9-18.2c0,0,0,0,0,0c0,0,0,0,0,0
c2.2-3.8,3.5-8.3,3.5-13.1C74.5,36,71.9,30,67.6,25.5z"/>
<path class="csvg st2" d="M37.5,75.8l0.1,7.5c0,1.9,1.6,3.4,3.4,3.3l17.8-0.2c1.9,0,3.4-1.6,3.4-3.4l-0.1-7.2"/>
<path class="csvg st1" d="M42.3,86.6c0.1,4.2,3.5,7.6,7.7,7.6c4.2-0.1,7.6-3.5,7.6-7.8"/>
<line class="csvg st2" x1="49" y1="10.9" x2="48.9" y2="5.9"/>
<line class="csvg st2" x1="33.1" y1="15.4" x2="30.6" y2="11.1"/>
<line class="csvg st2" x1="21.6" y1="27.2" x2="17.2" y2="24.7"/>
<line class="csvg st2" x1="17.6" y1="43.1" x2="12.5" y2="43.2"/>
<line class="csvg st2" x1="22" y1="59" x2="17.7" y2="61.6"/>
<line class="csvg st2" x1="64.9" y1="15" x2="67.4" y2="10.6"/>
<line class="csvg st2" x1="76.7" y1="26.5" x2="81" y2="23.9"/>
<line class="csvg st2" x1="81.2" y1="42.3" x2="86.2" y2="42.3"/>
<line class="csvg st2" x1="77.1" y1="58.3" x2="81.5" y2="60.7"/>
<line class="csvg st2" x1="49.2" y1="31.3" x2="49.3" y2="35.7"/>
<line class="csvg st2" x1="49.5" y1="54" x2="49.6" y2="58.4"/>
<path class="csvg st2" d="M55.4,40.6c0-1.9-1.1-4.9-6.2-4.9"/>
<path class="csvg st2" d="M49.3,35.7c-5,0.1-5.9,2.5-5.8,4.5c0.1,5.8,12.6,2.6,12.6,8.9c0,2-1.1,4.9-6.1,4.9"/>
<path class="csvg st2" d="M50,54c-5.4,0.1-7.2-3.7-7.2-5.6"/>
</g>
<g>
<g>
<path class="csvg st3" d="M31.5,32.9l5.4-2.6c2.3-1.1,3.3-3.9,2.3-6.2L32.3,8.8c-1.2-2.6-4.4-3.6-6.8-2.1C12.7,14.5,6.3,17.9,7.4,25.3
c2.5,16.9,9.5,31.5,22.7,44.7c0,0,0.1,0,0.1,0.1c0,0,0.1,0.1,0.1,0.1C43.5,83.4,58.1,90.4,75,92.9c7.4,1.1,10.8-5.3,18.7-18.1
c1.5-2.4,0.5-5.7-2.1-6.8l-15.3-6.8c-2.3-1-5.1,0-6.2,2.3l-2.6,5.4"/>
<path class="csvg st3" d="M54.9,65.3c-3.1-2.1-6.7-5-10.7-9c0,0-0.1-0.1-0.1-0.1c0,0-0.1,0-0.1-0.1c-5-5-8.3-9.4-10.5-13"/>
</g>
</g>
</svg>
<div class="cta-text">360.283.5001</div>
</a>
<a href="#gformpop18" id="free-quote-cta" class="popup-inline ga-raa-header">
<svg version="1.1" id="quote-icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="181px" height="181px" viewBox="524.25 59.5 181 181" enable-background="new 524.25 59.5 181 181" xml:space="preserve">
<g>
<path class="csvg" fill="none" stroke="#EB4053" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M650.258,102.235c-9.145-9.534-21.985-15.37-36.188-15.176c-12.646,0.194-23.931,5.059-32.491,12.841
c-1.168,1.167-2.336,2.141-3.503,3.502c-7.977,8.755-12.646,20.623-12.452,33.271c0,4.28,0.585,8.366,1.752,12.256
c1.167,4.67,3.112,8.95,5.642,12.842l0,0l0,0c5.449,10.312,16.927,15.37,18.289,34.826c0,0.583,0,0.972,0,1.557
c0,0.583,0,1.167,0,1.75v0.584l23.931-0.39l23.931-0.388c0,0,0-2.53,0-3.503c0.974-19.651,12.258-24.904,17.512-35.41l0,0l0,0
c4.279-7.394,6.809-16.148,6.809-25.487C663.682,122.665,658.623,110.991,650.258,102.235z"/>
<path class="csvg" fill="none" stroke="#EB4053" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M591.695,200.099l0.194,14.593c0,3.696,3.113,6.614,6.614,6.42l34.632-0.388c3.697,0,6.615-3.113,6.615-6.616l-0.194-14.009"/>
<path class="csvg" fill="none" stroke="#EB4053" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M601.034,221.111c0.193,8.172,6.81,14.787,14.98,14.787c8.171-0.194,14.787-6.811,14.787-15.175"/>
<line class="csvg" fill="none" stroke="#EB4053" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="614.069" y1="73.83" x2="613.875" y2="64.102"/>
<line class="csvg" fill="none" stroke="#EB4053" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="583.134" y1="82.585" x2="578.27" y2="74.218"/>
<line class="csvg" fill="none" stroke="#EB4053" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="560.76" y1="105.543" x2="552.199" y2="100.679"/>
<line class="csvg" fill="none" stroke="#EB4053" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="552.977" y1="136.478" x2="543.055" y2="136.673"/>
<line class="csvg" fill="none" stroke="#EB4053" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="561.538" y1="167.413" x2="553.172" y2="172.473"/>
<line class="csvg" fill="none" stroke="#EB4053" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="645.004" y1="81.806" x2="649.868" y2="73.246"/>
<line class="csvg" fill="none" stroke="#EB4053" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="667.962" y1="104.182" x2="676.329" y2="99.122"/>
<line class="csvg" fill="none" stroke="#EB4053" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="676.717" y1="134.921" x2="686.445" y2="134.921"/>
<line class="csvg" fill="none" stroke="#EB4053" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="668.74" y1="166.052" x2="677.302" y2="170.721"/>
<line class="csvg" fill="none" stroke="#EB4053" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="614.458" y1="113.52" x2="614.653" y2="122.081"/>
<line class="csvg" fill="none" stroke="#EB4053" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="615.041" y1="157.685" x2="615.236" y2="166.247"/>
<path class="csvg" fill="none" stroke="#EB4053" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M626.521,131.614c0-3.696-2.141-9.533-12.063-9.533"/>
<path class="csvg" fill="none" stroke="#EB4053" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M614.653,122.081c-9.729,0.194-11.479,4.864-11.285,8.755c0.194,11.285,24.515,5.059,24.515,17.316
c0,3.891-2.141,9.533-11.868,9.533"/>
<path class="csvg" fill="none" stroke="#EB4053" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M616.015,157.685c-10.506,0.195-14.008-7.198-14.008-10.894"/>
</g>
<g display="none">
<g display="inline">
<path class="csvg" fill="none" stroke="#EB4053" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M394.5,98.7l16.2-7.8c6.899-3.3,9.899-11.7,6.899-18.6L396.9,26.4c-3.601-7.8-13.2-10.8-20.4-6.3c-38.4,23.4-57.6,33.6-54.3,55.8
c7.5,50.7,28.5,94.5,68.1,134.1c0,0,0.3,0,0.3,0.3l0.3,0.3C430.5,250.2,474.3,271.2,525,278.7c22.2,3.3,32.4-15.9,56.1-54.3
c4.5-7.2,1.5-17.101-6.3-20.4L528.9,183.6c-6.9-3-15.301,0-18.601,6.9l-7.8,16.2"/>
<path class="csvg" fill="none" stroke="#EB4053" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M464.7,195.9c-9.3-6.301-20.101-15-32.101-27l-0.3-0.301c0,0-0.3,0-0.3-0.3c-15-15-24.9-28.2-31.5-39"/>
</g>
</g>
</svg>
<div class="cta-text">FREE QUOTE</div>
</a>
<a href="#" onclick="gtag_report_conversion" class="nav-login" id="login-us-cta" data-title="Client Login">
<svg id="avatar-icon" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 91.84 83.87"><defs><style>.cls-1{fill:#eb4053;stroke:#eb4053;stroke-miterlimit:10;stroke-width:0.75px;}</style></defs><title>phone</title><path class="cls-1" d="M67.44,51.06a25.2,25.2,0,1,0-35.73,0C7,53.57,4,73.8,4,89.25a2,2,0,0,0,4,0C8,72.32,11.44,55,36.59,54.82a25.08,25.08,0,0,0,26,0c25.15.2,28.57,17.5,28.57,34.43a2,2,0,0,0,4,0C95.12,73.8,92.12,53.57,67.44,51.06Zm-39-17.75A21.13,21.13,0,1,1,49.57,54.44,21.15,21.15,0,0,1,28.44,33.31Z" transform="translate(-3.65 -7.75)"/><path class="cls-1" d="M26.44,91.25a2,2,0,0,1-2-2V80.09a2,2,0,0,1,4,0v9.16A2,2,0,0,1,26.44,91.25Z" transform="translate(-3.65 -7.75)"/><path class="cls-1" d="M72.7,91.25a2,2,0,0,1-2-2V80.09a2,2,0,0,1,4,0v9.16A2,2,0,0,1,72.7,91.25Z" transform="translate(-3.65 -7.75)"/></svg>
<span class="sr-only">Client Login</span>
</a>
</div>
</div>
<div class="header-wrap">
<a href="/" class="ga-logo">
<div class="rs-logo-svg">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="287.36" height="75.59" viewBox="0 0 287.36 75.59">
<path id="logo-tag-line" d="M281.37,75.59a5.6,5.6,0,0,0,4.15-1.77V70.08H281v1.21h3.13v2a4,4,0,0,1-2.71,1,4,4,0,1,1,2.95-6.7l1.13-.75a5.35,5.35,0,1,0-4.08,8.72m-9-.22V65.23H271V73L265,65.23h-1.51V75.37H265V67.48l6,7.89ZM258.36,65.23h-1.45V75.37h1.45Zm-8.49,10.14V66.5H253V65.23h-7.73V66.5h3.16v8.87Zm-8.43,0V74.1h-5.59V70.81h5.5V69.54h-5.5v-3h5.59V65.23h-7V75.37Zm-10.71,0L225.9,70l4.46-4.81h-1.81L224,70.3V65.23h-1.46V75.37H224V72l1-1.07,4,4.48Zm-16.06-5.2H211.9V66.5h2.77a1.84,1.84,0,1,1,0,3.67m3.61,5.2-2.87-4.06a2.82,2.82,0,0,0,2.74-3,3,3,0,0,0-3.35-3.1h-4.35V75.37h1.45v-4h2l2.66,4Zm-14.36-3.49h-4.3l2.16-5.14Zm-3-6.65-4.29,10.14h1.62l.94-2.21h5.18l.94,2.21h1.61l-4.28-10.14Zm-7.46,10.14V65.23h-2L188.19,73l-3.26-7.72h-2V75.37h1.45V67.18l3.49,8.19h.62L192,67.18v8.19Zm-21.41,0V74.1h-4.9V65.23h-1.46V75.37Zm-12.89-3.49h-4.29L157,66.74Zm-3-6.65-4.3,10.14h1.63l.94-2.21h5.18l.94,2.21h1.6l-4.28-10.14Zm-10.9,10.36a4.83,4.83,0,0,0,4-2.08l-1.18-.65a3.46,3.46,0,0,1-2.86,1.46,4,4,0,0,1,0-8,3.46,3.46,0,0,1,2.86,1.46l1.16-.65a4.72,4.72,0,0,0-4-2.08,5.29,5.29,0,1,0,0,10.58m-9.7-10.36H134.1V75.37h1.45ZM124.42,74.1h-2.23V66.5h2.23a3.8,3.8,0,1,1,0,7.6m0,1.27c3.32,0,5.4-2.18,5.4-5.05s-2.08-5.09-5.4-5.09h-3.69V75.37Zm-8.06,0V74.1h-5.58V70.81h5.49V69.54h-5.49v-3h5.58V65.23h-7V75.37Zm-11.84,0V65.23h-2L99.27,73,96,65.23H94V75.37h1.46V67.18L99,75.37h.62l3.49-8.19v8.19ZM78.59,67.7A1.38,1.38,0,0,1,80,66.26a1.07,1.07,0,0,1,1.16,1.12c0,1-.89,1.5-1.94,2a3.62,3.62,0,0,1-.59-1.7m.62,6.93a1.87,1.87,0,0,1-2-1.89,2.46,2.46,0,0,1,1.46-2.12,16.54,16.54,0,0,0,1.22,1.56c.28.34.8.89,1.36,1.48a2.83,2.83,0,0,1-2.05,1m5.31.74c-.72-.66-1.32-1.25-1.91-1.86A13,13,0,0,0,84,71L83,70.56A10.13,10.13,0,0,1,82,72.81c-.39-.41-.77-.84-1.16-1.31s-.76-.87-1.15-1.4c1.25-.65,2.5-1.29,2.5-2.76a2,2,0,0,0-2.21-1.93,2.32,2.32,0,0,0-2.47,2.26,4.59,4.59,0,0,0,.75,2.21c-1.13.62-2.16,1.4-2.16,2.93,0,1.81,1.37,2.73,3,2.73a3.86,3.86,0,0,0,2.83-1.2c.39.4.78.78,1.07,1Zm-17.81,0V74.1H61.8V65.23H60.35V75.37ZM54.19,71.88h-4.3l2.16-5.14Zm-3-6.65-4.3,10.14h1.62l.94-2.21h5.18l.94,2.21h1.61L52.9,65.23Zm-9.3,10.14V66.5H45V65.23H37.3V66.5h3.15v8.87Zm-8.48,0V65.23H32V73L26,65.23H24.53V75.37H26V67.48l6,7.89Zm-13.25,0V74.1H14.57V70.81h5.49V69.54H14.57v-3h5.59V65.23h-7V75.37Zm-16-1.27H1.94V66.5H4.17a3.8,3.8,0,1,1,0,7.6m0,1.27c3.32,0,5.4-2.18,5.4-5.05s-2.08-5.09-5.4-5.09H.48V75.37Z" style="fill:#353535"/>
<path d="M28,49.37,17.19,31.08H8.6V49.37H0V.37H21.53c9.7,0,16.09,6.24,16.09,15.35,0,8.67-5.73,13.45-11.68,14.4L38,49.37Zm.81-33.72c0-4.7-3.53-7.71-8.38-7.71H8.6V23.51H20.42c4.85,0,8.38-3.08,8.38-7.86" style="fill:#363636"/>
<path d="M107.42,49.37V45.48c-2.64,3.09-6.83,4.78-11.54,4.78-5.73,0-12.26-4-12.26-11.76,0-8.23,6.46-11.61,12.26-11.61,4.85,0,8.9,1.54,11.54,4.56V26.16c0-4.12-3.45-6.62-8.3-6.62A14.2,14.2,0,0,0,88.61,24.1l-3.23-5.36A20.78,20.78,0,0,1,100.29,13c7.94,0,14.84,3.31,14.84,12.79V49.37Zm0-8.08V35.85c-1.84-2.42-5.14-3.67-8.45-3.67-4.33,0-7.64,2.57-7.64,6.39S94.64,45,99,45c3.31,0,6.61-1.24,8.45-3.67" style="fill:#363636"/>
<path d="M147.17,49.37V44.52a14.27,14.27,0,0,1-11.39,5.74c-9,0-15.72-6.91-15.72-18.67,0-11.46,6.61-18.59,15.72-18.59a13.85,13.85,0,0,1,11.39,5.81V.37h7.71v49Zm0-10.72v-14a11.52,11.52,0,0,0-9.11-4.77c-6.17,0-10.07,4.92-10.07,11.75s3.9,11.83,10.07,11.83a11.52,11.52,0,0,0,9.11-4.77" style="fill:#363636"/>
<path d="M160.39,44.67l3.53-5.51a18.24,18.24,0,0,0,12,4.92c4.63,0,7-1.91,7-4.7,0-7-21.45-2-21.45-15.65,0-5.8,5-10.73,14-10.73a20.3,20.3,0,0,1,13.74,4.93L186,23.36a14.46,14.46,0,0,0-10.5-4.26c-4,0-6.54,1.91-6.54,4.41,0,6.25,21.45,1.54,21.45,15.65,0,6.32-5.22,11.1-14.77,11.1-6.09,0-11.53-2-15.21-5.59" style="fill:#363636"/>
<path d="M195.74,4.78a4.78,4.78,0,1,1,4.77,4.77,4.77,4.77,0,0,1-4.77-4.77m.88,9.11h7.71V49.37h-7.71Z" style="fill:#363636"/>
<path d="M237.84,49.37V44.52a14.27,14.27,0,0,1-11.39,5.74c-9,0-15.73-6.91-15.73-18.67,0-11.46,6.62-18.59,15.73-18.59a13.86,13.86,0,0,1,11.39,5.81V.37h7.71v49Zm0-10.72v-14a11.54,11.54,0,0,0-9.12-4.77c-6.17,0-10.06,4.92-10.06,11.75s3.89,11.83,10.06,11.83a11.54,11.54,0,0,0,9.12-4.77" style="fill:#363636"/>
<path d="M251.94,31.59c0-10.28,7.5-18.59,18-18.59,10.66,0,17.42,8.09,17.42,19.25v1.91H260c.58,5.3,4.55,9.78,11.24,9.78a15,15,0,0,0,10.14-4L284.93,45a21,21,0,0,1-14.4,5.22c-10.72,0-18.59-7.43-18.59-18.67m17.93-12.27c-6.54,0-9.62,5.07-9.92,9.33h20a9.56,9.56,0,0,0-10.07-9.33" style="fill:#363636"/>
<path d="M64.24,39.93l-2.8,2.81a2,2,0,0,1-1.41.57,2,2,0,0,1-1.4-.57l-2.8-2.81-7.46-7.46a2,2,0,0,1,0-2.8l2.8-2.8a2,2,0,0,1,2.8,0L60,33,73.64,19.49a18.06,18.06,0,0,0-14-6C48.06,13.49,41,22.06,41,32.5s7.06,19.09,18.64,19.09S78.27,42.87,78.27,32.5a21.6,21.6,0,0,0-.78-5.8Z" class="check"/>
</svg>
</div>
</a>
<div class="nav-wrap">
<a href="/" class="check-logo">
<svg version="1.1" id="svg-logo-scroll-wrap" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="41.176px" height="42.103px" viewBox="281.275 14.395 41.176 42.103" enable-background="new 281.275 14.395 41.176 42.103" xml:space="preserve">
<defs>
<linearGradient id="logo-scroll-gradient" gradientUnits="userSpaceOnUse" x1="-1323.5376" y1="1676.0269" x2="-1322.5383" y2="1676.0269" gradientTransform="matrix(69.3694 -25.9362 -25.9362 -69.3694 135552.7031 81984.8359)">
<stop offset="0" style="stop-color:#EC2475"></stop>
<stop offset="1" style="stop-color:#F16522"></stop>
</linearGradient>
</defs>
<path id="svg-logo-scroll" d="M281.275,35.4c0,11.465,7.799,21.098,20.588,21.098c12.79,0,20.588-9.633,20.588-21.098 c0-2.163-0.289-4.314-0.858-6.402L306.941,43.65l-3.099,3.055c-0.852,0.853-2.232,0.853-3.084,0l-3.099-3.055l-8.25-8.279 c-0.853-0.856-0.853-2.242,0-3.099l3.099-3.099c0.857-0.854,2.242-0.854,3.099,0l6.693,6.722l15.03-14.87 c-3.927-4.379-9.587-6.802-15.467-6.621C289.074,14.404,281.275,23.862,281.275,35.4" fill="url(#logo-scroll-gradient)"></path>
</svg>
</a>
<ul id="menu-primary-1" class="rs-nav"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-44249"><a href="https://www.roadsidedentalmarketing.com/services/websites/" class="menu-image-title-after"><span class="menu-image-title">Websites</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-40642"><a href="https://www.roadsidedentalmarketing.com/services/websites/dental/" class="menu-image-title-after"><div data-bg='https://www.roadsidedentalmarketing.com/wp-content/uploads/2020/03/website-icon.svg' class='lazy menu-image menu-image-title-after' ></div><span class="menu-image-title">Dental Websites</span></a></li>
<li id="menu-item-52489" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-52489"><a href="https://www.roadsidedentalmarketing.com/services/websites/medical/" class="menu-image-title-after"><div data-bg='https://www.roadsidedentalmarketing.com/wp-content/uploads/2020/03/website-icon.svg' class='lazy menu-image menu-image-title-after' ></div><span class="menu-image-title">Medical Websites</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42104"><a href="https://www.roadsidedentalmarketing.com/portfolio/case-studies/" class="menu-image-title-after"><div data-bg='https://www.roadsidedentalmarketing.com/wp-content/uploads/2020/04/case-studies-icon.svg' class='lazy menu-image menu-image-title-after' ></div><span class="menu-image-title">Case Studies</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-44255"><a href="https://www.roadsidedentalmarketing.com/website-pricing/" class="menu-image-title-after"><div data-bg='https://www.roadsidedentalmarketing.com/wp-content/uploads/2020/04/dental-website-pricing-icon.svg' class='lazy menu-image menu-image-title-after' ></div><span class="menu-image-title">Website Pricing Options</span></a></li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41546"><a href="https://www.roadsidedentalmarketing.com/portfolio/" class="menu-image-title-after"><span class="menu-image-title">Portfolio</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-40588"><a href="https://www.roadsidedentalmarketing.com/services/marketing/" class="menu-image-title-after"><span class="menu-image-title">Marketing</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31786"><a href="https://www.roadsidedentalmarketing.com/meet-the-team/" class="menu-image-title-after"><span class="menu-image-title">Meet Us</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page current_page_parent menu-item-4886"><a href="https://www.roadsidedentalmarketing.com/blog/" class="menu-image-title-after"><span class="menu-image-title">Blog</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-17143"><a href="https://www.roadsidedentalmarketing.com/contact/" class="menu-image-title-after"><span class="menu-image-title">Contact</span></a></li>
<li class="pink-text menu-item menu-item-type-post_type menu-item-object-page menu-item-51369"><a target="_blank" rel="noopener" href="https://www.roadsidedentalmarketing.com/services/marketing/weekly-coach/" class="menu-image-title-after"><span class="menu-image-title">Weekly Coach</span></a></li>
</ul>
</div>
</div>
</div>
<div class="header-spacer"></div>
<div class="inline-text-popup et_pb_inline_text_popup_0 mfp-hide" id="covid-19-resources">
<div class="popup-heading">COVID-19 Resources</div>
<p>Our entire team is sending positivity your way and a virtual hug (or elbow bump!) during these uncertain and stressful times.</p>
<p>As a small business ourselves, we want to do all we can to support other businesses that will be affected in the days ahead.</p>
<p>We’ve put together tips, ideas, and resources to help your business create positivity, reassurance, and value for your communities.</p>
<p><strong>First and above all, we want to help you help others.</strong>❤️</p>
<p>Check back regularly, as we’re updating our resources frequently.</p>
<ul>
<li><a href="https://www.roadsidedentalmarketing.com/blog/covid-resources-for-dental/" rel="nofollow noreferrer noopener">Roadside COVID-19 Resources</a></li>
<li><a href="https://www.roadsidedentalmarketing.com/blog/thrive-after-reopening/" rel="nofollow noreferrer noopener">Helping Your Dental Practice Thrive Before + After Reopening [VIDEO]</a></li>
<li><a href="https://www.roadsidedentalmarketing.com/blog/adapt-website-content/" rel="nofollow noreferrer noopener">Adapt Your Website Content to Meet Patients’ Changing Needs</a></li>
<li><a href="https://www.roadsidedentalmarketing.com/promo/teledentistry/" rel="nofollow noreferrer noopener">Teledentistry / Virtual Consultations</a></li>
</ul>
</div> </header> <!-- .nav-container -->
<div class="site-content">
<section class="block block-hero block-post" style="background-image: url('https://www.roadsidedentalmarketing.com/wp-content/uploads/2020/03/adjust-website-messaging.png');">
<div class="shade" aria-hidden="true"></div>
</section>
<div class="content-area">
<main id="main" class="site-main">
<section class="block band-light">
<div class="post-content">
<div class="cat-time-wrap">
<a href="https://www.roadsidedentalmarketing.com/dental-marketing/" class="cat-link">Dental Marketing Tips & Ideas</a> <span class="cat-time-divider">|</span>4 min read
</div>
<h1 class="single-post-title">Adapt Your Website Content to Meet Patients’ Changing Needs</h1> <div class="author-meta-wrap">
<div class="author"><a href="https://www.roadsidedentalmarketing.com/blog/author/whitneyspeir/"><img alt='Avatar for Whitney Speir' title='Gravatar for Whitney Speir' src='https://secure.gravatar.com/avatar/773b224517b4f9de12de8ec09e91a615?s=96&d=mm&r=g' srcset='https://secure.gravatar.com/avatar/773b224517b4f9de12de8ec09e91a615?s=192&d=mm&r=g 2x' class='avatar avatar-96 photo' height='96' width='96' loading='lazy'/></a> by <a href="https://www.roadsidedentalmarketing.com/blog/author/whitneyspeir/">Whitney Speir</a></div>
<div class="meta"><time class="sr-only entry-date published" datetime="2020-03-30T11:56:52+00:00">published March 30, 2020</time><time datetime="2020-05-25T15:52:57+00:00">Last updated May 25, 2020</time> <span class="readtime"></span></div>
</div>
<p>The Coronavirus COVID-19 pandemic has affected businesses around the world, and the dental industry is no exception. Many practices are closed or seeing significantly reduced numbers of patients. As a result, this is a time of uncertainty for many.</p>
<p>Right now, your website messaging is more important than ever. <strong>Does your website address the changing needs and concerns of new and potential patients?</strong></p>
<p>If not, it’s time to adjust and <a href="/services/marketing/content/">adapt your website content</a> to meet the needs of your community. In this article, we’ll share practical tips to help you achieve this.</p>
<p><a href="https://www.eastorlandodental.com/" target="_blank" rel="nofollow noopener noreferrer"><img loading="lazy" class="alignnone wp-image-40100 size-full" src="https://www.roadsidedentalmarketing.com/wp-content/uploads/2020/03/RDSM-BlogGraphic-02-2.png" alt="A dental website's homepage highlighting emergency dentistry and virtual consultations" width="1585" height="835" /></a></p>
<h2>Temporarily adjust your homepage during COVID-related closures</h2>
<p>If your practice is closed or you’re only seeing emergencies, it’s a good idea to temporarily adjust your homepage’s focus to make sure patients know, at a quick glance, how to get in touch with you if they have an emergency.</p>
<p>In addition to seeing emergencies, are you offering <a href="https://www.roadsidedentalmarketing.com/promo/teledentistry/" target="_blank" rel="noopener noreferrer">teledentistry or virtual consultations</a>? If so, that should be strategically featured front and center.</p>
<p><a href="https://www.impressivesmilesdental.com/" target="_blank" rel="nofollow noopener noreferrer"><img loading="lazy" class="alignnone wp-image-40048 size-full" src="https://www.roadsidedentalmarketing.com/wp-content/uploads/2020/03/COVID-website-updates-2.png" alt="A dental website featuring up-to-date COVID information" width="1584" height="834" /></a></p>
<p>Finally, it seems like the Coronavirus situation is changing almost daily in some areas. Consider adding a specific page on your site where you can keep your community updated. This is also an ideal location to reassure your patients of the incredibly high standards you already follow to prevent the spread of infectious disease as well as any additional measures you’re taking.</p>
<h2>Plan now to adjust your website content once your practice reopens</h2>
<p>The strategic website content updates mentioned above will obviously be temporary. What can you do to plan now to adjust your website messaging once your practice is able to reopen its doors and things are back to “business as usual”?</p>
<h3>Address patients’ financial concerns</h3>
<p>We may not yet fully be aware of the impact this pandemic will have on the economy, but it’s reasonable to conclude there will be patients in your community who have lost their dental benefits and/or their jobs. Here are a few suggestions to adapt your website content to meet their needs:</p>
<ul>
<li>Highlight financing options available so patients can continue with the treatment they need</li>
<li>Use patient-first language to help patients understand what you offer and how it benefits them</li>
<li>Feature your <a href="https://www.roadsidedentalmarketing.com/blog/covid-recovery-membership-plan/">membership plan</a> on the homepage and highlight cost savings and benefits front and center</li>
</ul>
<h3>Make it easy for patients to reach you</h3>
<p>Are you able to offer teledentistry or virtual consultations while your practice is closed? If so, make sure patients know how to schedule and the benefits of meeting with you remotely.</p>
<p>If you’re available for emergencies and/or phone appointments, ensure your website features your phone number and scheduling options in an easy-to-spot location. Can patients text you or ask questions via a chat function on your website? The easier you make it for patients to stay connected with you, the better.</p>
<h3>Highlight convenience</h3>
<p>If you’ve had to temporarily close, you’ll have a backlog of rescheduled patients to accommodate. Additionally, now is a great time to brainstorm what you can do to attract more new patients in the months ahead. Are you in a position to offer early morning, lunchtime, evening, or weekend appointments? If so, be sure to highlight this on your website.</p>
<h2>Additional marketing adjustments to consider</h2>
<p>In order to adapt to a changing economic landscape, now’s the time to rethink your marketing priorities for the upcoming year.</p>
<p>With that in mind, here are a few questions to consider:</p>
<ul>
<li>Think about the services that will continue to be absolutely essential and beneficial for patients. Does your website address the enormous value of these services for their costs? Do you need to shift focus to these services over others?</li>
<li>Is it a good time to breathe life into your referral program with new incentives or offers?</li>
<li>Are you featuring any money-saving special offers for new and current patients?</li>
<li>What are some things you can do to create stronger relationships with existing patients? (Remember, it’s most cost-effective to KEEP your existing patients and their referrals, especially in a downturn.)</li>
</ul>
<p><strong>Think carefully about which adjustments make the most sense for your practice for the upcoming year, and then you’ll have a roadmap to help determine the updates that will be best for your website and marketing efforts.</strong></p>
<p>Now more than ever is a time to adapt your website content and adjust your messaging to address patients’ pain points, show empathy, and build trust. Having an <a href="/services/websites/dental/">up-to-date dental website</a> that meets the needs of patients and the community will strengthen the perception of your brand over competitors who go radio silent during this situation.</p>
<p>We’ve been creating simple, straightforward, and successful <a href="/services/marketing/">online marketing solutions</a> since 1999. <a href="https://www.roadsidedentalmarketing.com/dental-marketing-company-contact/">Get in touch</a> to learn how we can help you adjust your website’s messaging through this ever-changing situation!</p>
<p> </p>
<p> </p>
<script type="text/javascript">
jQuery(document).ready(function($) {
$.post('https://www.roadsidedentalmarketing.com/wp-admin/admin-ajax.php', {action: 'wpt_view_count', id: '40044'});
});
</script>
<div class="related-posts">
<div class="related-posts-title">
Related Posts:
</div>
<ul class="related-posts-items">
<li>
<a class="linkpost" title="All-In-One Dental Marketing Post-Pandemic" href="https://www.roadsidedentalmarketing.com/blog/digital-marketing-for-dentists/"><img width="300" height="158" src="https://www.roadsidedentalmarketing.com/wp-content/uploads/digital-marketing-for-dentists-300x158.png" class="attachment-medium size-medium wp-post-image" alt="Text: 1 in 3 patients believe dentists need Facebook marketing to be successful." loading="lazy" /> <span>All-In-One Dental Marketing Post-Pandemic</span></a> </li>
<li>
<a class="linkpost" title="Roadside Live: Bridging the Gap Between Online and Internal Marketing" href="https://www.roadsidedentalmarketing.com/blog/bridging-the-gap-between-online-and-internal-marketing/"><img width="300" height="158" src="https://www.roadsidedentalmarketing.com/wp-content/uploads/RS-Live-Sarah-Sherry-Reverse-Marketing-300x158.png" class="attachment-medium size-medium wp-post-image" alt="Roadside Live!Bite-Sized Marketing Morsels Featuring Sarah Sherry BEST Practices DDS" loading="lazy" /> <span>Roadside Live: Bridging the Gap Between Online and Internal Marketing</span></a> </li>
<li>
<a class="linkpost" title="How To Create a Year-End Patient Recall System" href="https://www.roadsidedentalmarketing.com/blog/patient-recall/"><img width="300" height="158" src="https://www.roadsidedentalmarketing.com/wp-content/uploads/patient-recall-planning-300x158.png" class="attachment-medium size-medium wp-post-image" alt="Dental office manager planning out a year-end patient recall system" loading="lazy" /> <span>How To Create a Year-End Patient Recall System</span></a> </li>
</ul>
</div>
<div id="comments" class="comments-area">
<div id="respond" class="comment-respond">
<span id="reply-title" class="comment-reply-title">Leave a comment: <small><a rel="nofollow" id="cancel-comment-reply-link" href="/blog/adapt-website-content/#respond" style="display:none;">Cancel reply</a></small></span><form action="https://www.roadsidedentalmarketing.com/wp-comments-post.php" method="post" id="commentform" class="comment-form" novalidate><p class="comment-notes"><span id="email-notes">Your email address will not be published.</span> Required fields are marked <span class="required">*</span></p><p><label for="comment">Share your thoughts:</label><textarea id="comment" name="comment" cols="45" rows="8" aria-required="true"></textarea></p><p class="comment-form-author"><label for="author">Your Name</label> <span>*</span><input id="author" name="author" type="text" value="" size="30" /></p>
<p class="comment-form-email"><label for="email">Your Email</label> <span>*</span><input id="email" name="email" type="text" value="" size="30" /></p>
<p class="form-submit"><input name="submit" type="submit" id="submit" class="submit" value="Post Comment" /> <input type='hidden' name='comment_post_ID' value='40044' id='comment_post_ID' />
<input type='hidden' name='comment_parent' id='comment_parent' value='0' />
</p></form> </div><!-- #respond -->
</div><!-- #comments -->
</div>
</section>
</main><!-- #main -->
</div><!-- #primary -->
<script nitro-exclude>
var heartbeatData = new FormData(); heartbeatData.append('nitroHeartbeat', '1');
fetch(location.href, {method: 'POST', body: heartbeatData, credentials: 'omit'});
</script>
<script nitro-exclude>
if (!window.NITROPACK_STATE || window.NITROPACK_STATE != 'FRESH') {
var proxyPurgeOnly = 0;
if (typeof navigator.sendBeacon !== 'undefined') {
var nitroData = new FormData(); nitroData.append('nitroBeaconUrl', 'aHR0cHM6Ly93d3cucm9hZHNpZGVkZW50YWxtYXJrZXRpbmcuY29tL2Jsb2cvYWRhcHQtd2Vic2l0ZS1jb250ZW50Lw=='); nitroData.append('nitroBeaconCookies', 'W10='); nitroData.append('nitroBeaconHash', '6690d0120e0594ee40e8c0ebda9ecd7eb03f0103213452b649fe0d75a917f7725574c8167ef8fa4e3413238d802239e7f47bea467b7d7f56e66b3334247c47a9'); nitroData.append('proxyPurgeOnly', ''); nitroData.append('layout', 'post'); navigator.sendBeacon(location.href, nitroData);
} else {
var xhr = new XMLHttpRequest(); xhr.open('POST', location.href, true); xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); xhr.send('nitroBeaconUrl=aHR0cHM6Ly93d3cucm9hZHNpZGVkZW50YWxtYXJrZXRpbmcuY29tL2Jsb2cvYWRhcHQtd2Vic2l0ZS1jb250ZW50Lw==&nitroBeaconCookies=W10=&nitroBeaconHash=6690d0120e0594ee40e8c0ebda9ecd7eb03f0103213452b649fe0d75a917f7725574c8167ef8fa4e3413238d802239e7f47bea467b7d7f56e66b3334247c47a9&proxyPurgeOnly=&layout=post');
}
}
</script>
</div><!-- #content -->
<footer class="block block-footer site-footer">
<div class="footer-widgets w-quarter">
<div id="footer-col-1" class="widget-footer-col">
<section id="custom_html-5" class="widget_text widget widget_custom_html"><div class="widget-title">Our Location</div><div class="textwidget custom-html-widget">Roadside Dental Marketing<br>
1721 Hewitt Ave, Suite 501<br>
Everett,
WA
98201
<br>
Phone: <a href="tel:360.283.5001">360.283.5001</a><br>
Email: <a href="mailto:[email protected]">[email protected]</a>
</div></section><section id="gtranslate-3" class="widget widget_gtranslate"><div class="widget-title">Choose a Language</div><!-- GTranslate: https://gtranslate.io/ -->
<select onchange="doGTranslate(this);" class="notranslate" id="gtranslate_selector" aria-label="Website Language Selector"><option value="">Select Language</option><option value="en|ar">Arabic</option><option value="en|zh-CN">Chinese (Simplified)</option><option value="en|nl">Dutch</option><option value="en|en">English</option><option value="en|fr">French</option><option value="en|de">German</option><option value="en|it">Italian</option><option value="en|pt">Portuguese</option><option value="en|ru">Russian</option><option value="en|es">Spanish</option></select><style>
#goog-gt-tt {display:none !important;}
.goog-te-banner-frame {display:none !important;}
.goog-te-menu-value:hover {text-decoration:none !important;}
.goog-text-highlight {background-color:transparent !important;box-shadow:none !important;}
body {top:0 !important;}
#google_translate_element2 {display:none!important;}
</style>
<div id="google_translate_element2"></div>
<script>
function googleTranslateElementInit2() {new google.translate.TranslateElement({pageLanguage: 'en',autoDisplay: false}, 'google_translate_element2');}
</script><script src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit2"></script>
<script>
function GTranslateGetCurrentLang() {var keyValue = document['cookie'].match('(^|;) ?googtrans=([^;]*)(;|$)');return keyValue ? keyValue[2].split('/')[2] : null;}
function GTranslateFireEvent(element,event){try{if(document.createEventObject){var evt=document.createEventObject();element.fireEvent('on'+event,evt)}else{var evt=document.createEvent('HTMLEvents');evt.initEvent(event,true,true);element.dispatchEvent(evt)}}catch(e){}}
function doGTranslate(lang_pair){if(lang_pair.value)lang_pair=lang_pair.value;if(lang_pair=='')return;var lang=lang_pair.split('|')[1];if(GTranslateGetCurrentLang() == null && lang == lang_pair.split('|')[0])return;var teCombo;var sel=document.getElementsByTagName('select');for(var i=0;i<sel.length;i++)if(sel[i].className.indexOf('goog-te-combo')!=-1){teCombo=sel[i];break;}if(document.getElementById('google_translate_element2')==null||document.getElementById('google_translate_element2').innerHTML.length==0||teCombo.length==0||teCombo.innerHTML.length==0){setTimeout(function(){doGTranslate(lang_pair)},500)}else{teCombo.value=lang;GTranslateFireEvent(teCombo,'change');GTranslateFireEvent(teCombo,'change')}}
</script>
</section> </div>
<div id="footer-col-2" class="widget-footer-col">
<section id="custom_html-6" class="widget_text widget widget_custom_html"><div class="widget-title">Our Hours</div><div class="textwidget custom-html-widget">Monday: 9:00am - 5:00pm<br>
Tuesday: 9:00am - 5:00pm<br>
Wednesday: 9:00am - 5:00pm<br>
Thursday: 9:00am - 5:00pm<br>
Friday: 9:00am - 5:00pm
</div></section> </div>
<div id="footer-col-3" class="widget-footer-col">
<section id="nav_menu-3" class="widget widget_nav_menu"><div class="widget-title">Links</div><div class="menu-footer-container"><ul id="menu-footer" class="menu"><li id="menu-item-43387" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-43387"><a href="https://www.roadsidedentalmarketing.com/portfolio/" class="menu-image-title-after"><span class="menu-image-title">Website Design Portfolio</span></a></li>
<li id="menu-item-43386" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-43386"><a href="https://www.roadsidedentalmarketing.com/services/marketing/" class="menu-image-title-after"><span class="menu-image-title">Services</span></a></li>
<li id="menu-item-43383" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-43383"><a href="https://www.roadsidedentalmarketing.com/meet-the-team/" class="menu-image-title-after"><span class="menu-image-title">Meet Us</span></a></li>
<li id="menu-item-17735" class="menu-item menu-item-type-post_type menu-item-object-page current_page_parent menu-item-17735"><a href="https://www.roadsidedentalmarketing.com/blog/" class="menu-image-title-after"><span class="menu-image-title">Blog</span></a></li>
<li id="menu-item-17731" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-17731"><a href="https://www.roadsidedentalmarketing.com/contact/" class="menu-image-title-after"><span class="menu-image-title">Contact</span></a></li>
</ul></div></section> </div>
<div id="footer-col-4" class="widget-footer-col">
<section id="divi_gform_widget-8" class="widget widget_divi_gform_widget"><div class="custom-form-popup-2-0 mfp-hide" id="gformpop1"></div></section><section id="divi_gform_widget-9" class="widget widget_divi_gform_widget"><div class="custom-form-popup-2-0 mfp-hide" id="gformpop18"><script type="text/javascript"></script>
<div class='gf_browser_unknown gform_wrapper gform_legacy_markup_wrapper' id='gform_wrapper_18' ><div id='gf_18' class='gform_anchor' tabindex='-1'></div>
<div class='gform_heading'>
<h3 class="gform_title">REQUEST A WEBSITE QUOTE</h3>
<span class='gform_description'></span>
</div><form method='post' enctype='multipart/form-data' target='gform_ajax_frame_18' id='gform_18' action='/blog/adapt-website-content/#gf_18' >
<div class='gform_body gform-body'><ul id='gform_fields_18' class='gform_fields top_label form_sublabel_below description_below'><li id="field_18_1" class="gfield gform_left gfield_contains_required field_sublabel_below field_description_below gfield_visibility_visible" ><label class='gfield_label' for='input_18_1' >Name<span class="gfield_required"><span class="gfield_required gfield_required_asterisk">*</span></span></label><div class='ginput_container ginput_container_text'><input name='input_1' id='input_18_1' type='text' value='' class='medium' aria-required="true" aria-invalid="false" /> </div></li><li id="field_18_10" class="gfield gfield--width-full gform_right field_sublabel_below field_description_below gfield_visibility_visible" ><label class='gfield_label' for='input_18_10' >Phone</label><div class='ginput_container ginput_container_text'><input name='input_10' id='input_18_10' type='text' value='' class='medium' aria-invalid="false" /> </div></li><li id="field_18_2" class="gfield gform_left gfield_contains_required field_sublabel_below field_description_below gfield_visibility_visible" ><label class='gfield_label' for='input_18_2' >Email<span class="gfield_required"><span class="gfield_required gfield_required_asterisk">*</span></span></label><div class='ginput_container ginput_container_email'>
<input name='input_2' id='input_18_2' type='text' value='' class='medium' aria-required="true" aria-invalid="false" />
</div></li><li id="field_18_8" class="gfield gform_right field_sublabel_below field_description_below gfield_visibility_visible" ><label class='gfield_label' for='input_18_8' >Website</label><div class='ginput_container ginput_container_text'><input name='input_8' id='input_18_8' type='text' value='' class='medium' aria-invalid="false" /> </div></li><li id="field_18_6" class="gfield field_sublabel_below field_description_below gfield_visibility_visible" ><label class='gfield_label' for='input_18_6' >Tell us your website goals:</label><div class='ginput_container ginput_container_textarea'><textarea name='input_6' id='input_18_6' class='textarea medium' aria-invalid="false" rows='10' cols='50'></textarea></div></li><li id="field_18_11" class="gfield gform_validation_container field_sublabel_below field_description_below gfield_visibility_visible" ><label class='gfield_label' for='input_18_11' >Comments</label><div class='ginput_container'><input name='input_11' id='input_18_11' type='text' value='' /></div><div class='gfield_description' id='gfield_description_18_11'>This field is for validation purposes and should be left unchanged.</div></li></ul></div>
<div class='gform_footer top_label'> <button type="submit" id="gform_submit_button_18" class="gform_button button" onclick='if(window["gf_submitting_18"]){return false;} window["gf_submitting_18"]=true; ' onkeypress='if( event.keyCode == 13 ){ if(window["gf_submitting_18"]){return false;} window["gf_submitting_18"]=true; jQuery("#gform_18").trigger("submit",[true]); }'><span>Request a Free Quote</span></button> <input type='hidden' name='gform_ajax' value='form_id=18&title=true&description=false&tabindex=0' />
<input type='hidden' class='gform_hidden' name='is_submit_18' value='1' />
<input type='hidden' class='gform_hidden' name='gform_submit' value='18' />
<input type='hidden' class='gform_hidden' name='gform_unique_id' value='' />
<input type='hidden' class='gform_hidden' name='state_18' value='WyJbXSIsImQ3ZDAyY2QxNzdhMTRlOGU2ODZjODU2Y2U4NTExZTYzIl0=' />
<input type='hidden' class='gform_hidden' name='gform_target_page_number_18' id='gform_target_page_number_18' value='0' />
<input type='hidden' class='gform_hidden' name='gform_source_page_number_18' id='gform_source_page_number_18' value='1' />
<input type='hidden' name='gform_field_values' value='' />
</div>
</form>
</div>
<iframe style='display:none;width:0px;height:0px;' src='about:blank' name='gform_ajax_frame_18' id='gform_ajax_frame_18' title='This iframe contains the logic required to handle Ajax powered Gravity Forms.'></iframe>
<script>
gform.initializeOnLoaded( function() {gformInitSpinner( 18, 'https://www.roadsidedentalmarketing.com/wp-content/plugins/gravityforms/images/spinner.svg' );jQuery('#gform_ajax_frame_18').on('load',function(){var contents = jQuery(this).contents().find('*').html();var is_postback = contents.indexOf('GF_AJAX_POSTBACK') >= 0;if(!is_postback){return;}var form_content = jQuery(this).contents().find('#gform_wrapper_18');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_18').length > 0;var is_redirect = contents.indexOf('gformRedirect(){') >= 0;var is_form = form_content.length > 0 && ! is_redirect && ! is_confirmation;var mt = parseInt(jQuery('html').css('margin-top'), 10) + parseInt(jQuery('body').css('margin-top'), 10) + 100;if(is_form){jQuery('#gform_wrapper_18').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_18').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_18').removeClass('gform_validation_error');}setTimeout( function() { /* delay the scroll by 50 milliseconds to fix a bug in chrome */ jQuery(document).scrollTop(jQuery('#gform_wrapper_18').offset().top - mt); }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_18').val();gformInitSpinner( 18, 'https://www.roadsidedentalmarketing.com/wp-content/plugins/gravityforms/images/spinner.svg' );jQuery(document).trigger('gform_page_loaded', [18, current_page]);window['gf_submitting_18'] = false;}else if(!is_redirect){var confirmation_content = jQuery(this).contents().find('.GF_AJAX_POSTBACK').html();if(!confirmation_content){confirmation_content = contents;}setTimeout(function(){jQuery('#gform_wrapper_18').replaceWith(confirmation_content);jQuery(document).scrollTop(jQuery('#gf_18').offset().top - mt);jQuery(document).trigger('gform_confirmation_loaded', [18]);window['gf_submitting_18'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_18').text());}, 50);}else{jQuery('#gform_18').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger('gform_post_render', [18, current_page]);} );} );
</script>
</div></section><section id="fsocial_widget-4" class="widget widget_fsocial_widget"><div class="widget-title">Stay Connected</div><div class="rsmm-socialbar-wrap"><div class="sb-links"><a href="https://www.facebook.com/roadsidedentalmktg/" class="sb-link" target="_blank"><i class="fab fa-facebook" aria-hidden="true"></i><span class="sr-only">Facebook Page (open in new window)</span></a><a href="https://www.linkedin.com/company/roadsidemktg" class="sb-link" target="_blank"><i class="fab fa-linkedin" aria-hidden="true"></i><span class="sr-only">Linkedin Page (open in new window)</span></a><a href="https://twitter.com/roadsidedental" class="sb-link" target="_blank"><i class="fab fa-twitter" aria-hidden="true"></i><span class="sr-only">Twitter Page (open in new window)</span></a><a href="https://www.youtube.com/roadsidemultimedia" class="sb-link" target="_blank"><i class="fab fa-youtube" aria-hidden="true"></i><span class="sr-only">YouTube Page (open in new window)</span></a><a href="https://www.pinterest.com/roadsidemktg/" class="sb-link" target="_blank"><i class="fab fa-pinterest" aria-hidden="true"></i><span class="sr-only">Pinterest Page (open in new window)</span></a><a href="https://www.instagram.com/roadsidedental_mktg/" class="sb-link" target="_blank"><i class="fab fa-instagram" aria-hidden="true"></i><span class="sr-only">Instagram Page (open in new window)</span></a></div></div></section><section id="custom_html-7" class="widget_text widget widget_custom_html"><div class="textwidget custom-html-widget"><div class="btn-content-standard">
<a class=" btn-standard medium solid-style-white solid-style-hv-tertiary " href="https://www.roadsidedentalmarketing.com/web-accessibility">Website Accessibility</a></div></div></section> </div>
</div>
<div class="bttm-footer-wrap">
<div class="bttm-footer">All rights reserved, Copyright 2020 Roadside Dental Marketing | <a href="//www.roadsidedentalmarketing.com/privacy-policy/">Privacy policy</a> | <a href="//www.roadsidedentalmarketing.com/sitemap/">Sitemap</a> | <a href="//www.roadsidedentalmarketing.com" target="_blank" rel="nofollow">Website Design</a> by Roadside Dental Marketing</div>
<p class="back-to-top"><a href="#page" class="js-trigger top no-text-link no-external-link-indicator" data-mt-duration="300"><span class="screen-reader-text"></span><svg xmlns="http://www.w3.org/2000/svg" viewBox="-5 -7.5 24 24" width="16" height="16" preserveAspectRatio="xMinYMin" class="jam jam-chevron-up" fill="currentColor"><path d="M7.071 2.828l-4.95 4.95A1 1 0 0 1 .707 6.364L6.364.707a1 1 0 0 1 1.414 0l5.657 5.657a1 1 0 0 1-1.414 1.414l-4.95-4.95z"/></svg>
</a></p>
</div>
</footer><!-- #colophon -->
</div><!-- #page -->
<link rel='stylesheet' id='gforms_reset_css-css' href='https://www.roadsidedentalmarketing.com/wp-content/plugins/gravityforms/legacy/css/formreset.min.css?ver=2.5.8' media='all' />
<link rel='stylesheet' id='gforms_formsmain_css-css' href='https://www.roadsidedentalmarketing.com/wp-content/plugins/gravityforms/legacy/css/formsmain.min.css?ver=2.5.8' media='all' />
<link rel='stylesheet' id='gforms_ready_class_css-css' href='https://www.roadsidedentalmarketing.com/wp-content/plugins/gravityforms/legacy/css/readyclass.min.css?ver=2.5.8' media='all' />
<link rel='stylesheet' id='gforms_browsers_css-css' href='https://www.roadsidedentalmarketing.com/wp-content/plugins/gravityforms/legacy/css/browsers.min.css?ver=2.5.8' media='all' />
<link rel='stylesheet' id='fsw-style-css' href='https://www.roadsidedentalmarketing.com/wp-content/plugins/rs-footer-social-widget/css/fsw-style.css?ver=5.7.3' media='all' />
<script id='et-builder-modules-global-functions-script-js-extra'>
var et_builder_utils_params = {"condition":{"diviTheme":false,"extraTheme":false},"scrollLocations":["app","top"],"builderScrollLocations":{"desktop":"app","tablet":"app","phone":"app"},"onloadScrollLocation":"app","builderType":"fe"};
</script>
<script src='https://www.roadsidedentalmarketing.com/wp-content/plugins/divi-builder/includes/builder/frontend-builder/build/frontend-builder-global-functions.js?ver=4.9.10' id='et-builder-modules-global-functions-script-js'></script>
<script src='https://www.roadsidedentalmarketing.com/wp-content/plugins/dcf-2-0/js/slick.min.js?ver=1.8.1' id='Slick-js-js'></script>
<script src='https://www.roadsidedentalmarketing.com/wp-content/plugins/dcf-2-0/js/jquery.cookie.min.js?ver=5.7.3' id='jquery-cookies-js'></script>
<script id='ppress-frontend-script-js-extra'>
var pp_ajax_form = {"ajaxurl":"https:\/\/www.roadsidedentalmarketing.com\/wp-admin\/admin-ajax.php","confirm_delete":"Are you sure?","deleting_text":"Deleting...","deleting_error":"An error occurred. Please try again.","nonce":"39bcf4fc15","disable_ajax_form":"false"};
</script>
<script src='https://www.roadsidedentalmarketing.com/wp-content/plugins/wp-user-avatar/assets/js/frontend.min.js?ver=3.1.15' id='ppress-frontend-script-js'></script>
<script src='https://www.roadsidedentalmarketing.com/wp-content/themes/mydivi-light/js/dist/front-end.js?ver=1624281056' id='front-end-scripts-js'></script>
<script src='https://www.roadsidedentalmarketing.com/wp-includes/js/comment-reply.min.js?ver=5.7.3' id='comment-reply-js'></script>
<script id='zerospam-davidwalsh-js-extra'>
var ZeroSpamDavidWalsh = {"key":"gDQ1i","selectors":""};
</script>
<script src='https://www.roadsidedentalmarketing.com/wp-content/plugins/zero-spam/modules/davidwalsh/assets/js/davidwalsh.js?ver=5.0.13' id='zerospam-davidwalsh-js'></script>
<script src='https://www.roadsidedentalmarketing.com/wp-content/plugins/divi-builder/includes/builder/scripts/ext/jquery.fitvids.js?ver=4.9.10' id='divi-fitvids-js'></script>
<script src='https://www.roadsidedentalmarketing.com/wp-content/plugins/divi-builder/includes/builder/scripts/ext/waypoints.min.js?ver=4.9.10' id='waypoints-js'></script>
<script src='https://www.roadsidedentalmarketing.com/wp-content/plugins/divi-builder/includes/builder/scripts/ext/jquery.magnific-popup.js?ver=4.9.10' id='magnific-popup-js'></script>
<script src='https://www.roadsidedentalmarketing.com/wp-content/plugins/divi-builder/includes/builder/scripts/ext/jquery.mobile.custom.min.js?ver=4.9.10' id='et-jquery-touch-mobile-js'></script>
<script id='et-builder-modules-script-js-extra'>
var et_frontend_scripts = {"builderCssContainerPrefix":"#et-boc","builderCssLayoutPrefix":"#et-boc .et-l"};
var et_pb_custom = {"ajaxurl":"https:\/\/www.roadsidedentalmarketing.com\/wp-admin\/admin-ajax.php","images_uri":"https:\/\/www.roadsidedentalmarketing.com\/wp-content\/themes\/mydivi-light\/images","builder_images_uri":"https:\/\/www.roadsidedentalmarketing.com\/wp-content\/plugins\/divi-builder\/includes\/builder\/images","et_frontend_nonce":"e8cb48b198","subscription_failed":"Please, check the fields below to make sure you entered the correct information.","et_ab_log_nonce":"79903229d4","fill_message":"Please, fill in the following fields:","contact_error_message":"Please, fix the following errors:","invalid":"Invalid email","captcha":"Captcha","prev":"Prev","previous":"Previous","next":"Next","wrong_captcha":"You entered the wrong number in captcha.","wrong_checkbox":"Checkbox","ignore_waypoints":"no","is_divi_theme_used":"","widget_search_selector":".widget_search","ab_tests":[],"is_ab_testing_active":"","page_id":"40044","unique_test_id":"","ab_bounce_rate":"5","is_cache_plugin_active":"no","is_shortcode_tracking":"","tinymce_uri":""};
var et_pb_box_shadow_elements = [];
var et_pb_motion_elements = {"desktop":[],"tablet":[],"phone":[]};
var et_pb_sticky_elements = [];
</script>
<script src='https://www.roadsidedentalmarketing.com/wp-content/plugins/divi-builder/includes/builder/frontend-builder/build/frontend-builder-scripts.js?ver=4.9.10' id='et-builder-modules-script-js'></script>
<script src='https://www.roadsidedentalmarketing.com/wp-content/plugins/divi-builder/core/admin/js/common.js?ver=4.9.10' id='et-core-common-js'></script>
<script src='https://www.roadsidedentalmarketing.com/wp-content/plugins/dcf-2-0/js/common.js?ver=1.0.0' id='dcf-common-js-js'></script>
<script src='https://www.roadsidedentalmarketing.com/wp-content/uploads/card-factory-js/card-factory-js.js?ver=1.0.0' id='Customizer-Card-JS-js'></script>
<script src='https://www.roadsidedentalmarketing.com/wp-content/plugins/dcf-2-0/js/mobile-script.js?ver=5.7.3' id='mobile-script-js'></script>
<script src='https://www.roadsidedentalmarketing.com/wp-includes/js/dist/vendor/wp-polyfill.min.js?ver=7.4.4' id='wp-polyfill-js'></script>
<script id='wp-polyfill-js-after'>
( 'fetch' in window ) || document.write( '<script src="https://www.roadsidedentalmarketing.com/wp-includes/js/dist/vendor/wp-polyfill-fetch.min.js?ver=3.0.0"></scr' + 'ipt>' );( document.contains ) || document.write( '<script src="https://www.roadsidedentalmarketing.com/wp-includes/js/dist/vendor/wp-polyfill-node-contains.min.js?ver=3.42.0"></scr' + 'ipt>' );( window.DOMRect ) || document.write( '<script src="https://www.roadsidedentalmarketing.com/wp-includes/js/dist/vendor/wp-polyfill-dom-rect.min.js?ver=3.42.0"></scr' + 'ipt>' );( window.URL && window.URL.prototype && window.URLSearchParams ) || document.write( '<script src="https://www.roadsidedentalmarketing.com/wp-includes/js/dist/vendor/wp-polyfill-url.min.js?ver=3.6.4"></scr' + 'ipt>' );( window.FormData && window.FormData.prototype.keys ) || document.write( '<script src="https://www.roadsidedentalmarketing.com/wp-includes/js/dist/vendor/wp-polyfill-formdata.min.js?ver=3.0.12"></scr' + 'ipt>' );( Element.prototype.matches && Element.prototype.closest ) || document.write( '<script src="https://www.roadsidedentalmarketing.com/wp-includes/js/dist/vendor/wp-polyfill-element-closest.min.js?ver=2.0.2"></scr' + 'ipt>' );( 'objectFit' in document.documentElement.style ) || document.write( '<script src="https://www.roadsidedentalmarketing.com/wp-includes/js/dist/vendor/wp-polyfill-object-fit.min.js?ver=2.3.4"></scr' + 'ipt>' );
</script>
<script src='https://www.roadsidedentalmarketing.com/wp-includes/js/dist/dom-ready.min.js?ver=93db39f6fe07a70cb9217310bec0a531' id='wp-dom-ready-js'></script>
<script src='https://www.roadsidedentalmarketing.com/wp-includes/js/dist/hooks.min.js?ver=d0188aa6c336f8bb426fe5318b7f5b72' id='wp-hooks-js'></script>
<script src='https://www.roadsidedentalmarketing.com/wp-includes/js/dist/i18n.min.js?ver=6ae7d829c963a7d8856558f3f9b32b43' id='wp-i18n-js'></script>
<script id='wp-i18n-js-after'>
wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } );
</script>
<script id='wp-a11y-js-translations'>
( function( domain, translations ) {
var localeData = translations.locale_data[ domain ] || translations.locale_data.messages;
localeData[""].domain = domain;
wp.i18n.setLocaleData( localeData, domain );
} )( "default", { "locale_data": { "messages": { "": {} } } } );
</script>
<script src='https://www.roadsidedentalmarketing.com/wp-includes/js/dist/a11y.min.js?ver=f38c4dee80fd4bb43131247e3175c99a' id='wp-a11y-js'></script>
<script defer='defer' src='https://www.roadsidedentalmarketing.com/wp-content/plugins/gravityforms/js/jquery.json.min.js?ver=2.5.8' id='gform_json-js'></script>
<script id='gform_gravityforms-js-extra'>
var gform_i18n = {"datepicker":{"days":{"monday":"Mon","tuesday":"Tue","wednesday":"Wed","thursday":"Thu","friday":"Fri","saturday":"Sat","sunday":"Sun"},"months":{"january":"January","february":"February","march":"March","april":"April","may":"May","june":"June","july":"July","august":"August","september":"September","october":"October","november":"November","december":"December"},"firstDay":1}};
var gf_global = {"gf_currency_config":{"name":"U.S. Dollar","symbol_left":"$","symbol_right":"","symbol_padding":"","thousand_separator":",","decimal_separator":".","decimals":2},"base_url":"https:\/\/www.roadsidedentalmarketing.com\/wp-content\/plugins\/gravityforms","number_formats":[],"spinnerUrl":"https:\/\/www.roadsidedentalmarketing.com\/wp-content\/plugins\/gravityforms\/images\/spinner.svg","strings":{"newRowAdded":"New row added.","rowRemoved":"Row removed","formSaved":"The form has been saved. The content contains the link to return and complete the form."}};
var gf_legacy_multi = {"18":"1"};
</script>
<script defer='defer' src='https://www.roadsidedentalmarketing.com/wp-content/plugins/gravityforms/js/gravityforms.min.js?ver=2.5.8' id='gform_gravityforms-js'></script>
<!-- CJT Global Block (140) - LinkedIn Pixel - START -->
<script type="text/javascript">
_linkedin_partner_id = "1697690";
window._linkedin_data_partner_ids = window._linkedin_data_partner_ids || [];
window._linkedin_data_partner_ids.push(_linkedin_partner_id);
</script><script type="text/javascript">
(function(l) {
if (!l){window.lintrk = function(a,b){window.lintrk.q.push([a,b])};
window.lintrk.q=[]}
var s = document.getElementsByTagName("script")[0];
var b = document.createElement("script");
b.type = "text/javascript";b.async = true;
b.src = "https://snap.licdn.com/li.lms-analytics/insight.min.js";
s.parentNode.insertBefore(b, s);})(window.lintrk);
</script>
<noscript>
<img height="1" width="1" style="display:none;" alt="" src="https://px.ads.linkedin.com/collect/?pid=1697690&fmt=gif" />
</noscript>
<!-- CJT Global Block (140) - LinkedIn Pixel - END -->
<!-- CJT Global Block (97) - Facebook Pixel - START -->
<!-- Facebook Pixel Code -->
<script>
!function(f,b,e,v,n,t,s)
{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t,s)}(window, document,'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '728145707266545');
fbq('track', 'PageView');
</script>
<noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=728145707266545&ev=PageView&noscript=1"/></noscript>
<!-- End Facebook Pixel Code -->
<div id="fb-root"></div>
<script async defer crossorigin="anonymous" src="https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v8.0&appId=208673282529989&autoLogAppEvents=1" nonce="bA1B40UQ"></script>
<!-- CJT Global Block (97) - Facebook Pixel - END -->
<!-- CJT Global Block (87) - Google Tag Manager Footer - START -->
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-KN8N6W8"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<!-- CJT Global Block (87) - Google Tag Manager Footer - END -->
<!-- CJT Global Block (85) - Sticky Social - START -->
<script>
jQuery(function($) {
if ( $( ".heateor_sss_horizontal_sharing" ).length ) {
//console.log("stick on page");
$.getScript( "https://cdnjs.cloudflare.com/ajax/libs/jquery.sticky/1.0.4/jquery.sticky.min.js" ).done(function( script, textStatus ) {
var Header = $("header").height();
var bottomSpacing = $(document).height() - $(".nav-single").offset().top;
//console.log("bottom: "+ bottomSpacing);
$(".heateor_sss_horizontal_sharing").sticky({
topSpacing:Header + 50,
bottomSpacing: bottomSpacing + 50
});
});
}
});
</script>
<!-- CJT Global Block (85) - Sticky Social - END -->
<!-- CJT Global Block (71) - dynamic popup-inline - START -->
<script>
jQuery(function($) {
$(document).on("click",'.popup-inline', function() {
$(this).magnificPopup({
type: 'inline',
midClick: true
}).magnificPopup('open');
});
$(document).on("click",'.popup-video, .video-link', function(e) {
e.preventDefault();
var $this = $(this);
var startT = $this.data('start');
var showCC = $this.data('cc');
if('' === startT) {
var startT = 0;
}
if('yes' === showCC) {
var videoCC = 1;
} else {
var videoCC = 0;
}
$this.magnificPopup({
type: 'iframe',
midClick: true,
iframe: {
patterns: {
youtube: {
src: '//www.youtube.com/embed/%id%?rel=0&autoplay=1&cc_load_policy='+videoCC+'&start=' + $this.data('start')
},
vimeo: {
src: '//player.vimeo.com/video/%id%?autoplay=1&rel=0&#t=' + $this.data('start')
}
}
}
}).magnificPopup('open');
});
});
</script>
<!-- CJT Global Block (71) - dynamic popup-inline - END -->
<!-- CJT Global Block (49) - Hero Overlay Scroll - START -->
<script>
jQuery(function($) {
if( $(".scroll-darken").length ) {
$(".scroll-darken").each(function() {
$(".scroll-darken").append("<div class='scroll-overlay pink-overlay'></div>");
var ScrollID = $(this).attr('class');
//console.log("Scroll Class: "+ScrollID.replace(/\s+/g, '.'));
$(window).scroll(function() {
var Scrolled = $(window).scrollTop();
var ThisPos = $("."+ScrollID.replace(/\s+/g, '.')).offset().top;
var ScrolledDiff = Scrolled-ThisPos;
if(Scrolled > ThisPos) {
//console.log("ScrolledDiff: "+ScrolledDiff);
var OpacityScroll = ScrolledDiff/400;
//console.log("Opacity Scroll: "+OpacityScroll);
if(parseFloat( OpacityScroll.toFixed(2) ) + 0 < .90) {
$(".scrollcount").html(parseFloat( OpacityScroll.toFixed(2) ) + 0);
$(".scroll-overlay").css("opacity",parseFloat( OpacityScroll.toFixed(2) ) + 0);
}
}
});
})
}
});
</script>
<!-- CJT Global Block (49) - Hero Overlay Scroll - END -->
<!-- CJT Global Block (93) - Hub Spot Code - START -->
<!-- Start of HubSpot Embed Code -->
<script type="text/javascript" id="hs-script-loader" async defer src="//js.hs-scripts.com/2215383.js"></script>
<!-- End of HubSpot Embed Code -->
<!-- CJT Global Block (93) - Hub Spot Code - END -->
<script>
gform.initializeOnLoaded( function() { jQuery(document).on('gform_post_render', function(event, formId, currentPage){if(formId == 18) {jQuery( document ).on( 'submit.gravityforms', '.gform_wrapper form', function( event ) {
jQuery( '<input>' ).attr( 'type', 'hidden' )
.attr( 'name', 'gf_zero_spam_key' )
.attr( 'value', '6WSvhG08GInu61yCMfv3KfQppjaxUemeKuIF9R1fYWdHyeD4o51FrddOoq10Khxw' )
.appendTo( jQuery( this ) );
} );} } );jQuery(document).bind('gform_post_conditional_logic', function(event, formId, fields, isInit){} ) } );
</script>
<script>
gform.initializeOnLoaded( function() { jQuery(document).trigger('gform_post_render', [18, 1]) } );
</script>
<script src="https://kit.fontawesome.com/bb638c2dc1.js" defer=""></script>
</body>
</html>