This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.bottom-header-bar { | |
background-color: #ff0000; | |
text-align: right; | |
padding: 10px 0; | |
} | |
#menu-bottom { | |
margin: 0; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Add additional menus | |
*/ | |
function register_additional_menus() { | |
register_nav_menu( 'top-menu', __( 'Top Menu' ) ); | |
register_nav_menu( 'bottom-menu', __( 'Bottom Menu' ) ); | |
} | |
add_action( 'init', 'register_additional_menus' ); | |
/** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
document.addEventListener("DOMContentLoaded", checkPage); | |
function checkPage() { | |
document.getElementById("gform_submit_button_2").style.display = 'none'; | |
} | |
// first name | |
document.getElementById("input_2_1_3").addEventListener("change", checkFields); |
OlderNewer