CSS不在菜单上工作

CSS不在菜单上工作,css,wordpress,Css,Wordpress,我正在Wordpress网站(使用VisualComposer的Pinboard子主题)中处理一个页面,无法使用CSS消除边框/阴影。在链接的页面上,菜单栏底部有一个阴影,边框我无法摆脱。有人知道怎么摆脱这个吗 我首先考虑了可能是菜单栏上的边框或阴影,然后认为可能是菜单正下方的透明图像。这些似乎都不起作用。任何帮助都将不胜感激 页面链接: 此页面的CSS: #container { margin: 0%; } #container text area { margin: 5%; } entr

我正在Wordpress网站(使用VisualComposer的Pinboard子主题)中处理一个页面,无法使用CSS消除边框/阴影。在链接的页面上,菜单栏底部有一个阴影,边框我无法摆脱。有人知道怎么摆脱这个吗

我首先考虑了可能是菜单栏上的边框或阴影,然后认为可能是菜单正下方的透明图像。这些似乎都不起作用。任何帮助都将不胜感激

页面链接:

此页面的CSS:

#container {
margin: 0%;
}

#container text area {
margin: 5%;
}

entry-header.style {
    position: absolute;
    left: -9999px;
}

.entry-title {
       display:none;
}

#attachment-nav a {
color: ##85531E;
}

.single .entry, .page .entry, .error404 .entry {
    margin-bottom: 5.1% !important;
    padding: 0;
}

.entry-content a img, #attachment-nav a img {
    background: none repeat scroll transparent;
    border: 0px solid #EEEEEE;
    box-shadow: 0 0 0px #EEEEEE;
    max-width: 98.5%;
    padding: 0%;
}

.entry-content a img, #attachment-nav a img {
border: 0px;
}

#access {
box-shadow: 0 0 0px rgba(0, 0, 0, 0);
}

#access {
border: 0px;
}

#access {
background-color: transparent;
}

access {
background: transparent repeat scroll 0 0;
}

#access {
position: relative;
z-index: 100;
}

#access a {
color: #85531E;
}

#access a {
border: none;
}

#access a {
border: 0px;
}

#site-title {
height:100%;
width:100%;
} 

#site-title, #site-description {
line-height: 100%;
}

#site-title {
margin: 0 0;
}

#site-title img {
 margin: 0;
}

#site-title img {
 padding: 0;
}

.cycloneslider-slide cycloneslider-slide-image cycle-slide img {
opacity:1.0;
filter:alpha(opacity=100); /* For IE8 and earlier */
}

.trailback {
height:100%;
width:100%;
}

.trailback {
background-size:cover;
}

.trailback {
position: relative;
margin-top:-51px;
}

.trailback {
border: 0px;
}

.trailbackb {
border: 0px;
}

.trailtitle {
position: relative;
margin-top: 30px;
}

h1 {
margin-left:0%;
padding:5px;
}

h1 {
margin-bottom:0.2%;
padding-right:2%;
}

h1 {
  font-size: 50.0vw;
}
h2 {
  font-size: 2.8vw;
}
h3 {
  font-size: 2.3vw;
}
h4 {
  font-size: 2.0vh;
}
h5 {
  font-size: 1.5vw;
}
h6 {
  font-size: 1.0vh;
}

p{
margin-left: 3%;
}

a:link {
color: #473E3F;
}

a:visited {
color: #a39a89;
}

a:hover {
color: #755521
}

你有什么问题?要添加框阴影还是删除框阴影?右键单击菜单栏并选择“Inspect Element”(检查元素),问题似乎出现在样式表的第801行。谢谢apaul34208解决了它!我试图覆盖任何原始css属性,如框阴影或边框,以便于访问,不知道为什么我的不起作用!阿德里安,这是为了去除盒子的阴影,而不是tks。