Skip to content

Instantly share code, notes, and snippets.

@KaineLabs
Created March 8, 2022 00:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KaineLabs/47f8bf5c6519022202dbfa73d4a043d0 to your computer and use it in GitHub Desktop.
Save KaineLabs/47f8bf5c6519022202dbfa73d4a043d0 to your computer and use it in GitHub Desktop.
Alma Theme Fix
<?php
// Alma Theme Before Content Code
function yzc_alma_theme_before_content() {
if ( function_exists( 'alma_print_menu' ) ) {
alma_print_menu();
}
?>
<style type="text/css">
#main header {
position: relative;
}
</style>
<?php
}
add_action( 'youzify_before_youzify_template_content', 'yzc_alma_theme_before_content' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment