Wordpress主题风格不会覆盖

时间:2016-01-11 20:22:16

标签: css

我想覆盖以下

@media screen and (max-width: 830px)
.masthead .top-bar, .masthead .hide-on-mobile {
    display: none !important;
}

我在Wordpress的style.css中编写以下内容来覆盖上面的内容,

@media screen and (max-width: 830px)
body #page .masthead .top-bar {
   visibility : visible;
   display: inline !important;
}

我不明白为什么它不会覆盖主题的风格

1 个答案:

答案 0 :(得分:0)

你忘记了媒体查询声明中的paranthesis。

@media screen and (max-width: 830px){
   body #page .masthead .top-bar {
     visibility : visible;
     display: inline !important;
   }
}