删除Wordpress Escapade主题的页面标题

时间:2019-05-07 02:28:08

标签: wordpress

1 个答案:

答案 0 :(得分:0)

如果不了解模板,您可以尝试将其隐藏在CSS中:

#masthead{
display:none !important;
visibility: hidden !important;
}

我会添加!important来覆盖常规CSS中的所有样式。

如果要缩小它,此代码将调整高度:

.blog .site-header, .page .site-header, .archive .site-header, .single .site-header {
    padding: 120px 0; // Adjust the 120px here
    position: relative;
}