67a0a236 by Jeff Balicki

ee

1 parent f1208410
...@@ -17208,6 +17208,10 @@ ss3-force-full-width { ...@@ -17208,6 +17208,10 @@ ss3-force-full-width {
17208 margin-left: -15px; 17208 margin-left: -15px;
17209 } 17209 }
17210 17210
17211 .small-caps {
17212 font-size: 0.8rem;
17213 }
17214
17211 body { 17215 body {
17212 font-family: "Calibri"; 17216 font-family: "Calibri";
17213 } 17217 }
......
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
1 // Add your custom JS here. 1 // Add your custom JS here.
2 jQuery( document ).ready(function($) { 2 jQuery( document ).ready(function($) {
3
4 $("span, p").each(function() {
5 var text = $(this).html();
6 text = text.replace('Qualified Associate Financial Planner', 'Q<span class="small-caps">UALIFIED</span> A<span class="small-caps">SSOCIATE</span> F<span class="small-caps">INANCIAL</span> P<span class="small-caps">LANNER</span> ');
7 text = text.replace('Certified Financial Planner', 'C<span class="small-caps">ERTIFIED</span> F<span class="small-caps">INANCIAL</span> P<span class="small-caps">LANNER</span>');
8 $(this).html(text);
9 });
10
3 AOS.init({ 11 AOS.init({
4 // Global settings: 12 // Global settings:
5 disable: false, // accepts following values: 'phone', 'tablet', 'mobile', boolean, expression or function 13 disable: false, // accepts following values: 'phone', 'tablet', 'mobile', boolean, expression or function
...@@ -22,7 +30,8 @@ jQuery( document ).ready(function($) { ...@@ -22,7 +30,8 @@ jQuery( document ).ready(function($) {
22 anchorPlacement: 'top-bottom', // defines which position of the element regarding to window should trigger the animation 30 anchorPlacement: 'top-bottom', // defines which position of the element regarding to window should trigger the animation
23 31
24 }); 32 });
25 33
34
26 35
27 $('.wp-block-button__link').attr('tabindex', 0); 36 $('.wp-block-button__link').attr('tabindex', 0);
28 $('.cf7mls_btn').attr('tabindex', 0); 37 $('.cf7mls_btn').attr('tabindex', 0);
......
...@@ -691,4 +691,9 @@ height: 87vh; ...@@ -691,4 +691,9 @@ height: 87vh;
691 691
692 [name='contact-about-experience[]'] { 692 [name='contact-about-experience[]'] {
693 margin-left: -15px; 693 margin-left: -15px;
694 }
695
696
697 .small-caps{
698 font-size: 0.8rem;
694 } 699 }
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
5 Author: the Understrap Contributors 5 Author: the Understrap Contributors
6 Author URI: https://github.com/understrap/understrap-child/graphs/contributors 6 Author URI: https://github.com/understrap/understrap-child/graphs/contributors
7 Template: understrap 7 Template: understrap
8 Version: 1.1.30369 8 Version: 1.1.30370
9 License: GNU General Public License v2 or later 9 License: GNU General Public License v2 or later
10 License URI: http://www.gnu.org/licenses/gpl-2.0.html 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html
11 Text Domain: understrap-child 11 Text Domain: understrap-child
......