Hello again,
First of all, it’s not allowed to hire, pay, or ask for a job here.
Offering to Pay
If you really want to hire me or another developer to get the job done,
you can do it on WP Jobs.
All that said, I’m going to help you get the menu to work, nothing more.
You’ll have to style it as you feel and need, debug according to your theme if any bug/conflict…
1- Download FullscreenOverlayStyles, I named it fos.zip, extract it and place the fos folder at the root of your theme (at the same level as your main style.css file).
2- In your function.php file, place this code
function fos_scripts() {
wp_enqueue_style( 'fos-norm-style', get_template_directory_uri() . '/fos/css/normalize.css', array(), '' );
wp_enqueue_style( 'fos-style1-style', get_template_directory_uri() . '/fos/css/style1.css', array(), '' );
wp_enqueue_script( 'fos-classie-js', get_template_directory_uri() . '/fos/js/classie.js', array( 'jquery' ), '', true );
wp_enqueue_script( 'fos-demo1-js', get_template_directory_uri() . '/fos/js/demo1.js', array( 'jquery' ), '', true );
wp_enqueue_script( 'fos-modern-js', get_template_directory_uri() . '/fos/js/modernizr.custom.js', array( 'jquery' ), '', false );
}
add_action( 'wp_enqueue_scripts', 'fos_scripts' );
3- Since your using _s, go to header.php
line 43 remove class=”main-navigation”
line 45 replace the whole line by
<?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_id' => 'primary-menu', 'container' => '' ) ); ?>
4- You should wrap the <nav> with a <div class=”overlay overlay-hugeinc”> and add just before the <nav> the cross button to close the menu, your code should look something like
<div class="overlay overlay-hugeinc">
<button type="button" class="overlay-close">Close</button>
<nav id="site-navigation" role="navigation">
<?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_id' => 'primary-menu', 'container' => '' ) ); ?>
</nav>
5- Finally, you’ll have to put the trigger button at the place of your choice
<p><button id="trigger-overlay" type="button">Open Overlay</button></p>
Now, happy coding and styling.
SYA ??