我在我的网站上使用了wordpress二十一主题。现在我想为我的网站创建一个下拉菜单。默认情况下,wordpress具有下拉菜单功能。现在当我悬停在主菜单上时,我得到了子菜单部分。例如: -
我有一个主菜单,如: - 主页|关于|接触
当我将鼠标悬停在about菜单上时,它会显示“about”菜单的子菜单,如
主页|关于|接触
Our Services
History
Our Staff
当我将鼠标悬停在历史记录菜单上时,它会显示历史记录菜单的子菜单,如下所示: -
主页|关于|接触
Our Services
History
History 1
History 2
History 3
Our Staff
但是当我将鼠标悬停在“关于”菜单上时,我希望显示“历史记录”的子菜单。如果我将鼠标悬停在“关于”菜单上,它应显示如下: -
主页|关于|接触
Our Services
History
History 1
History 2
History 3
Our Staff
请帮我在wordpress菜单中输出。
#access {
background: #00ADEE; /* Show a solid color for older browsers */
clear: both;
display: block;
width: 915px;
}
#access ul {
font-size: 11px;
list-style: none;
margin: 0;
padding: 0;
}
#access li {
float: left;
position: relative;
}
#access a {
color: #eee;
display: block;
line-height: 12px;
padding: 4px 9px;
text-decoration: none;
background: url(images/menu-border.png);
background-position: right 6px;
background-repeat: no-repeat;
text-transform: lowercase;
}
#access ul ul {
display: none;
float: left;
margin: 0;
position: absolute;
left: 11px;
width: 252px;
z-index: 99999;
background: #FFFFFF;
padding: 0 4px;
border: 1px solid #00AEEF;
}
#access ul ul li {
}
#access ul ul ul {
left: 23%;
top: 0;
border: none;
width: 150px;
}
#access ul ul ul li{
border: none;
width: 112px;
background:url(images/list.png);
background-position: 0 10px;
background-repeat: no-repeat;
background-color: #FFF;
width: 185px;
}
#access ul ul ul a{
border: none;
background: transparent;
}
.sub-menu .menu-item-object-custom a:hover{
height: 40px;
}
#access ul ul a {
border-bottom: 1px solid #BCBEC0;
color: #000;
font-size: 10px;
font-weight: normal;
height: auto;
line-height: 1.4em;
padding: 5px 7px;
width: 237px;
}
#access li:hover > a,
#access ul ul :hover > a,
#access a:focus {
color: #000;
}
#access ul ul > a {
color: #000;
}
#access li:hover > a,
#access a:focus {
color: #FFFFFF;
}
#access ul li:hover > ul {
display: block;
}
#access ul ul .current_page_item > a {
color: #00ADEE;
font-weight: bold;
}
#access .current-menu-item > a,
#access .current-menu-ancestor > a,
#access .current_page_item > a,
#access .current_page_ancestor > a {
color: #FFFFFF;
}
答案 0 :(得分:0)
基本上,您需要找到在li元素上定义了:hover的规则。它通常是这样的:
li:hover ul {
display: block;
}
要显示第二级菜单,您需要添加如下内容:
li:hover ul ul {
display: block;
}
理论上应该是这样,我需要看到描述菜单的CSS部分,以便我可以告诉你一个确切的变化。