我试图使用此代码在Wordpress中仅显示特定的页面#content,但不起作用...

body.page-id-2 .masthead-fixed .site-main {
display: none;
}


这是网站:

http://avocat.dac-proiect.ro/wp/

我搜索了互联网,发现示例可以做到这一点,但我没有用

我在哪里错了?

提前致谢!

最佳答案

.page-id-2.masthead-fixed在html中处于同一级别,因此必须使它像这样:

body.page-id-2.masthead-fixed .site-main {
    display: none;
}


或完全删除.masthead-fixed选择器:

body.page-id-2 .site-main {
    display: none;
}

10-06 04:21