请告诉我如何删除或减小wordpress主题标题的大小
答案 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;
}