Well, you have more than one issue there.
The background is missing because you need this code from the home page:
<script type="text/javascript">
jQuery(function($){
$.supersized({
slide_interval : 3000,
transition : 1,
transition_speed : 2000,
slide_links : 'blank',
slides : [{image : 'https://www.bockholtlandscapearchitecture.com/wp-content/uploads/2012/07/night-terrace-optimized1.jpg'},{image : 'https://www.bockholtlandscapearchitecture.com/wp-content/uploads/2012/07/colorful-park-with-flowers-optimized1.jpg'},{image : 'https://www.bockholtlandscapearchitecture.com/wp-content/uploads/2012/07/pergola-optimized.jpg'},{image : 'https://www.bockholtlandscapearchitecture.com/wp-content/uploads/2012/07/garden-house-optimized.jpg'},{image : 'https://www.bockholtlandscapearchitecture.com/wp-content/uploads/2012/07/Classicpergola-optimized.jpg'},{image : 'https://www.bockholtlandscapearchitecture.com/wp-content/uploads/2012/07/stone-patio-with-fire-pit-optimized.jpg'}]
});
});
</script>
<div id="progress-back" class="load-item">
<div id="progress-bar"></div>
</div>
<div class="pattern pattern-02"> </div>
on all the pages that you want that background effect to be visible. I’m not familiar with that theme, but ordinarily, that means page.php and single.php in addition to index.php, I think.
Your home page div with the class “content” also has a class called “transparent,” which you probably need to have on all the pages, too.
I do see the actual menu code on the individual blog pages when I look at the source code, the menus just don’t show up all the time. There is a “display: none” for the class “navigation” on line 61 of your style.css that may or may not be involved. I’d try commenting it out temporarily to see if it solves the problem, and leave it if not. Either way, it looks like the menus not showing up on the individual blog pages may be a CSS or javascript-triggered CSS issue. I say that because when I disable javascript the menu code is still there, but the menus aren’t visible on any page, including the home page. You may need to do some comparison between the pages where the menus do appear and those they do not to figure out the source. I’m not seeing any javascript errors.