撤消WordPress标题上的文本装饰大写(二十四主题)

时间:2018-09-24 05:52:59

标签: css wordpress

我使用自定义主题,它是二十四个孩子。
默认情况下,wordpress中的所有标题将变为大写。
我在/var/www/html/wp/wp-content/themes/twentyfourteen-child/style.css中添加了一个CSS。

h1.entry-title {
    text-transform: none !important;
}

完全没有效果!

cat /var/www/html/wp/wp-content/themes/twentyfourteen-child/style.css

*{
    font-family:"DejaVu Sans Mono" !important;
}
.site {
    max-width: 1920px;
}
.site::before{
    width:400px;
}
.site-header {
    max-width: 1920px;
}

.site-content header .entry-meta {
    max-width: 100%;
}
.site-content .entry-header,
.site-content .entry-content,
.site-content .entry-summary,
.site-content .entry-meta,
.site-content .navigation,
.comments-area,
.page-header,
.page-content {
    max-width: 70%;
}

article{
    margin-bottom:10px;
}

#secondary ul li{
    color:black;
    width:360px;
    font-size:16px;
}

.entry-meta  .cat-links{
    display:none;
}

pre{
    font-family:inherit;
    font-size:16px;
    border:1px solid red;
}


h1.entry-title {
    text-transform: none !important;
}

我的twentyfourteen-child主题已激活。 enter image description here

要通过检查检查标题。 enter image description here

为什么元素h1.entry-title没有被http://hwy.local/wp/wp_content/themes/twentyfourteen/style.css?ver=4.9.8:1112装饰, 代替/var/www/html/wp/wp-content/themes/twentyfourteen-child/style.css吗?

2 个答案:

答案 0 :(得分:1)

您可以使用:

.entry-title {text-transform: none!important;}

...或简单地:

h1.entry-title {text-transform: none;}

这两个解决方案都赢得了特异性战(您的代码也是如此)。您可能没有正确加载CSS。右键单击条目标题,查看其是否被应用和/或覆盖。

答案 1 :(得分:0)

要清除浏览器中的所有缓存,二十四个孩子的主题生效。