请参阅此网站http://www.lovinmybags.co/ 主菜单具有此代码的全宽背景
#PrimaryMenu > ul > li.ActivePage > a {
color: #ffffff;
font: normal 0.80em Verdana, Verdana, Geneva, sans-serif;
background-color: #222222;
font-weight: bold;
}
但是当我为#FooterMenu使用相同的代码时,bacground相当小。产品页面的背景不活跃。可能有人帮我吗?
答案 0 :(得分:0)
添加到a
#FooterMenu
元素中的以下CSS规则:
#FooterMenu > ul > li.ActivePage > a {
padding: 13px;
margin: 0;
}
padding-top
值也可能是14px。你选择。
如果您想在访问“产品”页面时看到“产品”项处于活动状态,则只需将.ActivePage
添加到li
元素即可。请参阅以下代码:
<!-- The rest of your content -->
<li class="HasSubMenu ActivePage">
<a href="/categories.php"><span>Products</span></a>
<!-- The rest of your content -->
请注意,您必须将.ActivePage
课程添加到#FooterMenu元素内的li
!
干杯, 莱昂纳多
答案 1 :(得分:0)
#PrimaryMenu > ul > li.ActivePage > a:hover {
color: #ffffff;
font: normal 0.80em Verdana, Verdana, Geneva, sans-serif;
background-color: #222222;
font-weight: bold;
padding-bottom: 13px; /*New*/
}