I'm using a bootstrap and style css sets with a standard navbar for a menu structure.
When these conditions exist, everything works great.
css are in a folder called "css".
javascripts are all in a folder called "js".
html are all in the root.
When i add a folder to the root called "projects" to further organize the html files and i change all links to js and css in the files in that folder to have "../" in front. Everything works great except the sub-menus in the NavBar do not work at all.
again everything (format wise and java script wise) works great except the sub-menu drop down items when the html file is in a separate folder in the site root.
Simplified code:
Code:
<div class="navbar">
<ul class="nav sf-menu">
<li class="sub-menu"><a href="A.html">A</a>
<ul>
<li><a href="1.html">1</a></li>
<li><a href="2.html">2</a></li>
<li><a href="3.html">3</a></li>
<li><a href="4.html">4</a></li>
<li><a href="5.html">5</a></li>
</ul>
</li>
</ul>
</div>
any ideas?