无法自定义下拉菜单

时间:2017-11-04 16:49:07

标签: html css wordpress

当您在移动视图上点击汉堡包时,会出现下拉菜单。但我无法使用Chrome DevTools找到它。 你能帮我找到吗?

网站 - > link(密码K1k0r1)

you can see the menu on this screenshot

但它在代码中的位置?

3 个答案:

答案 0 :(得分:0)

查看这个html代码段:enter image description here,其中显示了下拉列表中使用的html和css。

答案 1 :(得分:-1)

这是在代码中。它就在您的常规导航菜单下。你只会在手机上看到它或者你调整窗口大小。

<select class="selectnav" id="selectnav1">
<option value="http://dig.katherineblumkin.com/#about-kikori">ABOUT KIKORI</option>
<option value="http://dig.katherineblumkin.com/#kumamoto">- KUMAMOTO</option>
<option value="http://dig.katherineblumkin.com/#earth">- EARTH</option>
<option value="http://dig.katherineblumkin.com/#water">- WATER</option>
<option value="http://dig.katherineblumkin.com/#time">- TIME</option>
<option value="http://dig.katherineblumkin.com/#the-woodsman">- THE WOODSMAN</option>
<option value="http://dig.katherineblumkin.com/store-locator/">WHERE TO BUY</option>
<option value="http://dig.katherineblumkin.com/news-reviews/">NEWS</option>
<option value="http://dig.katherineblumkin.com/recipes/">RECIPES</option><option value="http://dig.katherineblumkin.com/tag/kikori-whiskey-review/">REVIEWS</option>
<option value="http://dig.katherineblumkin.com/contact/">CONTACT</option>
</select>

我认为那就是你要找的东西。

答案 2 :(得分:-1)

<select class="selectnav" id="selectnav1"><option value="http://dig.katherineblumkin.com/#about-kikori">About Kikori</option><option value="http://dig.katherineblumkin.com/#kumamoto">- KUMAMOTO</option><option value="http://dig.katherineblumkin.com/#earth">- EARTH</option><option value="http://dig.katherineblumkin.com/#water">- WATER</option><option value="http://dig.katherineblumkin.com/#time">- TIME</option><option value="http://dig.katherineblumkin.com/#the-woodsman">- THE WOODSMAN</option><option value="http://dig.katherineblumkin.com/store-locator/">Where to buy</option><option value="http://dig.katherineblumkin.com/news-reviews/" selected="">News</option><option value="http://dig.katherineblumkin.com/recipes/">Recipes</option><option value="http://dig.katherineblumkin.com/tag/kikori-whiskey-review/">Reviews</option><option value="http://dig.katherineblumkin.com/contact/">Contact</option></select>

enter image description here

相关问题