I have utilized bootstrap to create a dropdown menu. The primary item is a link that functions properly on the homepage, but not on the subpage.
Check out my code snippet here:
<li>
<a href="/preview/#design-centre" class="dropdown-toggle scroll"
data-toggle="dropdown" data-hover="dropdown">
Design Centre <i class="fa fa-angle-down"></i>
</a>
<ul class="menulist dropdown-menu">
<li><a href="/preview/#design-centre">Overview</a></li>
<li><a href="/preview/design-centre.php?action=video-testimonials">Video Testimonials</a></li>
<li><a href="/preview/design-centre.php?action=meet-the-team">Meet The Team</a></li>
<li><a href="/preview/design-centre.php?action=faq">FAQ</a></li>
<li><a href="/preview/design-centre.php?action=contact-us">Contact Us</a></li>
</ul>
</li>
Upon clicking on Design Centre, it does not respond on a subpage, however, it works fine on the homepage. All other links in the navigation menu function correctly except for the dropdown menus.