Even though you are making so many changes to the styles by using plugins, I think that if I were you, I would be inclined to create a child theme to get the navvbar to be fixed.
To create your child, your css file must start with something like this. The “template” part is essential.
/*
Theme Name: your theme name
Theme URI: your website
Description: child theme of twentythirteen
Author: you and/or WP:twentythirteen
Author URI: optional website address
Version: 1.0.0
Template: twentythirteen
*/
Note that the name beside “Template” must be exact. If you activate your child theme, you’ll see a note that the parent is twentythirteen.
Also, create a functions.php file (open a text editor like notepad) and copy and paste the following into it:
<?php
/*...............
replace import of parent's style on style.css
...............*/
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
function theme_enqueue_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'child-style',
get_stylesheet_directory_uri() . '/style.css',
array('parent-style')
);
}
?>
Make sure there are zero spaces or line breaks before the first <?php
and the last ?>
.
Save the file as functions.php and put it in your theme’s folder.
Most cosmetic changes can be made in the css…. Consult the parent css file to find the ids and classes. You only have to change the ids or classes that you want changed (ie: you don’t have to include the whole of the parent css file)
Now, in your child css file, below “Template: twentythirteen”, put the following (I’m not absolutely positive that this will work because of all the plugins you have installed)
#navvbar {
position:fixed;
top: 2px; /* this number can be changed*/
}
The 2px is just an arbitrary number that I threw in to make sure it worked on the test version of a vague mockup of your page I made.
For more on this, please see the following:
https://cssreset.com/creating-fixed-headers-with-css/
https://www.w3schools.com/css/css_positioning.asp
These are also very useful:
https://www.wpbeginner.com/beginners-guide/wordpress-child-theme-pros-cons/
https://www.wpbeginner.com/glossary/parent-theme/
https://codex.www.ads-software.com/Child_Themes