css media query question

时间:2018-08-25 作者:Alexander F

我想这是一个新手问题,但在这里。

我一直在编辑一个子主题CSS,并试图更改此特定代码

@media (min-width: 769px)
    #carousel-hestia-generic span.sub-title {
        font-size: 24px; 
    }
这是我从铬合金中看到的。当我把它添加到我的风格中时。css在我的孩子的主题,使字体大小,让我们说36px,它不会改变。实际上,Chrome显示了删除线。。。

the element I want to changehttps://snag.gy/izc10u.jpg

the CSS file in my child themehttps://snag.gy/GVfDs9.jpg

1 个回复
最合适的回答,由SO网友:Castiblanco 整理而成

你必须这样说:

@media only screen and (min-width: 769px) {
    #carousel-hestia-generic span.sub-title {
        font-size: 24px; 
    }
}
注意如何@media 有一个块{} 其中包含要使用的CSS选择器。

结束