ba401c2b by Jeff Balicki

eee

1 parent 810f89b9
......@@ -16117,6 +16117,12 @@ h4, .h4 {
margin-top: 50px;
}
}
.wp-block-group.register .thank-you a {
color: #012169;
}
.wp-block-group.register .thank-you a {
text-decoration: underline;
}
.wp-block-group.register .wpcf7 form.sent .wpcf7-response-output {
border: 0px #fff solid;
}
......
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";
the_custom_logo();
}
?>
<!-- end custom logo -->
<!-- end custom logo
<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' ); ?>">
<span class="navbar-toggler-icon"></span>
</button>
<!-- The WordPress Menu goes here -->
The WordPress Menu goes here -->
<?php
wp_nav_menu(
array(
......
// Add your custom JS here.
jQuery( document ).ready(function($) {
$('.wp-block-button__link').attr('tabindex', 0);
$(document).on("click","#register-here",function() {
$('.wp-block-group.register').toggle();
......@@ -10,6 +11,17 @@ jQuery( document ).ready(function($) {
});
$( "#register-here" ).on( "keydown", function(event) {
if(event.which == 13){
$('.wp-block-group.register').toggle();
$('.numbers-second .wp-block-column:first-child a.wp-block-button__link').toggleClass('rotated');
$([document.documentElement, document.body]).animate({
scrollTop: $(".wp-block-group.register").offset().top
}, 500);
}
});
$('.wpcf7-form-control-wrap').each(function( index ) {
$(this).parent().addClass($(this).attr('class').split(' ')[1]);
});
......
......@@ -450,6 +450,12 @@
@media (min-width: 800px) and (max-width: 900px) {
margin-top: 50px;
}
a{
color:#012169;
}
a{
text-decoration: underline;
}
}
.wpcf7 form.sent .wpcf7-response-output {
border: 0px #fff solid;
......
......@@ -5,7 +5,7 @@
Author: the Understrap Contributors
Author URI: https://github.com/understrap/understrap-child/graphs/contributors
Template: understrap
Version: 1.1.21
Version: 1.1.22
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: understrap-child
......