我的 opencart 站点中有一个左侧类别菜单。
一些代码是
<div id="menu_box">
<div class="box-heading">Categories</div>
<ul>
<li>
<a href="http://localhost/makeatech/index.php?route=product/category&path=224">Game Cd's</a>
<ul class="second-level" style="position: absolute; left: 166px; top: -2px; padding: 5px; margin: 0px; width: 350px; background-color: rgb(245, 245, 245); border: 1px solid rgb(236, 236, 236); z-index: 10; display: block;">
<li id="third-li">
<a href="http://localhost/makeatech/index.php?route=product/category&path=224_226"> SONY Playstations</a>
</li>
<li id="third-li">
<a href="http://localhost/makeatech/index.php?route=product/category&path=224_225"> Xbox</a>
</li>
</ul>
</li>
<li>.......</li>
</ul>
</div>
我有一个庞大的类别列表,其中包含 3 个级别的子类别。因此,以下类别将进入屏幕。
我知道问题出在fixed top css
. 有什么方法可以使用 jquery 在屏幕上显示我的所有类别,比如Flipkart.com
请给我你的建议。
谢谢。