8c217988 by Jeff Balicki

gg

1 parent f9eeee3f
...@@ -16569,6 +16569,12 @@ ss3-force-full-width { ...@@ -16569,6 +16569,12 @@ ss3-force-full-width {
16569 position: absolute !important; 16569 position: absolute !important;
16570 } 16570 }
16571 16571
16572 @media (min-width: 600px) and (max-width: 781px) {
16573 .page-template-numbers-page .wp-block-columns.block-numbers-row:not(.is-not-stacked-on-mobile) > .wp-block-column:not(:first-child) {
16574 margin-left: 0px;
16575 flex-basis: 100% !important;
16576 }
16577 }
16572 @media (max-width: 768px) { 16578 @media (max-width: 768px) {
16573 .page-template-numbers-page .wrapper { 16579 .page-template-numbers-page .wrapper {
16574 top: 48px !important; 16580 top: 48px !important;
......
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.
...@@ -22,7 +22,7 @@ $container = "cont"; ...@@ -22,7 +22,7 @@ $container = "cont";
22 <div class="<?php echo esc_attr( $container ); ?>"> 22 <div class="<?php echo esc_attr( $container ); ?>">
23 23
24 24
25 <a href="http://fpcanada.test/" class="navbar-brand custom-logo-link find" rel="home" aria-current="page"> 25 <a href="/#time-to-find-your-number" class="navbar-brand custom-logo-link find" rel="home" aria-current="page">
26 find a professional planner 26 find a professional planner
27 </a> 27 </a>
28 28
......
...@@ -79,7 +79,7 @@ jQuery( document ).ready(function($) { ...@@ -79,7 +79,7 @@ jQuery( document ).ready(function($) {
79 function(){ 79 function(){
80 animateMe(element) 80 animateMe(element)
81 } 81 }
82 , i * 750); 82 , i * 900);
83 83
84 }); 84 });
85 85
...@@ -99,16 +99,16 @@ jQuery( document ).ready(function($) { ...@@ -99,16 +99,16 @@ jQuery( document ).ready(function($) {
99 updateContainer() 99 updateContainer()
100 100
101 function updateContainer() { 101 function updateContainer() {
102 var maxHeight = 0;
103 102
103 var maxHeight = 0;
104 $(".numbers-block").height('auto');
104 $(".numbers-block").each(function(index){ 105 $(".numbers-block").each(function(index){
105 if ($(window).width() > 1200) { 106 if ($(window).width() > 1200) {
106 delay = index * 200 + 300; 107 delay = index * 200 + 300;
107 $(this).attr('data-aos-delay', delay); 108 $(this).attr('data-aos-delay', delay);
108 } 109 }
109 if ($(this).height() > maxHeight) { maxHeight = $(this).height(); } 110 if ($(this).height() > maxHeight) { maxHeight = $(this).height();}
110 }); 111 });
111
112 $(".numbers-block").height(maxHeight); 112 $(".numbers-block").height(maxHeight);
113 113
114 } 114 }
......
...@@ -92,6 +92,14 @@ ss3-force-full-width{ ...@@ -92,6 +92,14 @@ ss3-force-full-width{
92 } 92 }
93 93
94 .page-template-numbers-page{ 94 .page-template-numbers-page{
95 @media (min-width: 600px) and (max-width: 781px){
96 .wp-block-columns.block-numbers-row:not(.is-not-stacked-on-mobile)>.wp-block-column:not(:first-child){
97 margin-left: 0px;
98 flex-basis: 100% !important;
99 }
100 }
101
102
95 .wrapper{ 103 .wrapper{
96 @media (max-width: 768px) { 104 @media (max-width: 768px) {
97 top: 48px!important; 105 top: 48px!important;
......
...@@ -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.3011 8 Version: 1.1.3012
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
......