eee
Showing
8 changed files
with
27 additions
and
3 deletions
| ... | @@ -16117,6 +16117,12 @@ h4, .h4 { | ... | @@ -16117,6 +16117,12 @@ h4, .h4 { |
| 16117 | margin-top: 50px; | 16117 | margin-top: 50px; |
| 16118 | } | 16118 | } |
| 16119 | } | 16119 | } |
| 16120 | .wp-block-group.register .thank-you a { | ||
| 16121 | color: #012169; | ||
| 16122 | } | ||
| 16123 | .wp-block-group.register .thank-you a { | ||
| 16124 | text-decoration: underline; | ||
| 16125 | } | ||
| 16120 | .wp-block-group.register .wpcf7 form.sent .wpcf7-response-output { | 16126 | .wp-block-group.register .wpcf7 form.sent .wpcf7-response-output { |
| 16121 | border: 0px #fff solid; | 16127 | border: 0px #fff solid; |
| 16122 | } | 16128 | } | ... | ... |
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.
| ... | @@ -39,13 +39,13 @@ $container = "cont"; | ... | @@ -39,13 +39,13 @@ $container = "cont"; |
| 39 | the_custom_logo(); | 39 | the_custom_logo(); |
| 40 | } | 40 | } |
| 41 | ?> | 41 | ?> |
| 42 | <!-- end custom logo --> | 42 | <!-- end custom logo |
| 43 | 43 | ||
| 44 | <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="<?php esc_attr_e( 'Toggle navigation', 'understrap' ); ?>"> | 44 | <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="<?php esc_attr_e( 'Toggle navigation', 'understrap' ); ?>"> |
| 45 | <span class="navbar-toggler-icon"></span> | 45 | <span class="navbar-toggler-icon"></span> |
| 46 | </button> | 46 | </button> |
| 47 | 47 | ||
| 48 | <!-- The WordPress Menu goes here --> | 48 | The WordPress Menu goes here --> |
| 49 | <?php | 49 | <?php |
| 50 | wp_nav_menu( | 50 | wp_nav_menu( |
| 51 | array( | 51 | array( | ... | ... |
| 1 | // Add your custom JS here. | 1 | // Add your custom JS here. |
| 2 | jQuery( document ).ready(function($) { | 2 | jQuery( document ).ready(function($) { |
| 3 | $('.wp-block-button__link').attr('tabindex', 0); | ||
| 3 | 4 | ||
| 4 | $(document).on("click","#register-here",function() { | 5 | $(document).on("click","#register-here",function() { |
| 5 | $('.wp-block-group.register').toggle(); | 6 | $('.wp-block-group.register').toggle(); |
| ... | @@ -10,6 +11,17 @@ jQuery( document ).ready(function($) { | ... | @@ -10,6 +11,17 @@ jQuery( document ).ready(function($) { |
| 10 | 11 | ||
| 11 | }); | 12 | }); |
| 12 | 13 | ||
| 14 | $( "#register-here" ).on( "keydown", function(event) { | ||
| 15 | if(event.which == 13){ | ||
| 16 | $('.wp-block-group.register').toggle(); | ||
| 17 | $('.numbers-second .wp-block-column:first-child a.wp-block-button__link').toggleClass('rotated'); | ||
| 18 | $([document.documentElement, document.body]).animate({ | ||
| 19 | scrollTop: $(".wp-block-group.register").offset().top | ||
| 20 | }, 500); | ||
| 21 | |||
| 22 | } | ||
| 23 | }); | ||
| 24 | |||
| 13 | $('.wpcf7-form-control-wrap').each(function( index ) { | 25 | $('.wpcf7-form-control-wrap').each(function( index ) { |
| 14 | $(this).parent().addClass($(this).attr('class').split(' ')[1]); | 26 | $(this).parent().addClass($(this).attr('class').split(' ')[1]); |
| 15 | }); | 27 | }); | ... | ... |
| ... | @@ -450,6 +450,12 @@ | ... | @@ -450,6 +450,12 @@ |
| 450 | @media (min-width: 800px) and (max-width: 900px) { | 450 | @media (min-width: 800px) and (max-width: 900px) { |
| 451 | margin-top: 50px; | 451 | margin-top: 50px; |
| 452 | } | 452 | } |
| 453 | a{ | ||
| 454 | color:#012169; | ||
| 455 | } | ||
| 456 | a{ | ||
| 457 | text-decoration: underline; | ||
| 458 | } | ||
| 453 | } | 459 | } |
| 454 | .wpcf7 form.sent .wpcf7-response-output { | 460 | .wpcf7 form.sent .wpcf7-response-output { |
| 455 | border: 0px #fff solid; | 461 | border: 0px #fff solid; | ... | ... |
| ... | @@ -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.21 | 8 | Version: 1.1.22 |
| 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 | ... | ... |
-
Please register or sign in to post a comment