My website includes a menu and breadcrumbs. The menu consists of two submenus: Design Services, Design Portfolio, Design Fees, About Us, Contact Us, Design Resources, Design Vacancies, and Terms. Clicking on Design Services reveals Graphic Design, Logo Design, and Website Design options under a dropdown. Further clicking on Logo Design opens up Corporate Identity Design, Corporate Identity Guidelines, and Fixed Fee Logo Design.
When I click on the menu items, the breadcrumbs are supposed to shift down. However, they do not move as expected and end up overlapping with the menu items, causing display issues.
The HTML code for my navigation section is:
<!-- NAVIGATION SECTION -->
<div class="navigation-wrapper overlay-bg border-bottom-white padding-level-one">
<ul class="main-menu">
<!-- Menu items here -->
</ul>
<div class="clearboth"></div>
</div>
<!-- BREADCRUMBS SECTION -->
<div class="breadcrumbs-wrapper overlay-bg border-bottom-white padding-level-one">
<div class="breadcrumbs-inner-wrapper">
<!-- Breadcrumbs links here -->
<div class="clearboth"></div>
</div>
</div>
<!-- END BREADCRUMBS SECTION -->
I am also facing an issue with the second submenu functionality. The provided jQuery code seems to have resolved some problems, but there are still lingering issues that need fixing. Any assistance would be greatly appreciated.
To view the accompanying CSS code, please refer to the original post.