我正在建立一个基于wordPress主题的网站。每当我访问任何页面时,它都会在当前页面给我红色下划线边框。从最近两天开始,我一直在尝试但不能删除该下划线。 我试过了 1.访问-> border-bottom-color, 2. target-> border-bottom-color, 3.当前->
但没有任何效果。我无法通过“检查”页面来获取修改的代码。 任何建议将不胜感激。
答案 0 :(得分:2)
尝试此CSS
ul.nav > li.current > a:before, .page ul.nav > li.current-menu-item >
a:before, .single-post ul.nav > li.current-menu-item > a:before, .archive
ul.nav > li.current-menu-item > a:before
{
display: block;
position: absolute;
z-index: 1;
bottom: 0;
left: 12.5%;
width: 75%;
height: 2px;
margin: auto;
background: transparent;
content: "";
}