我的网站上有两种博客类型(博客和更新)。我需要更改两个页面模板中的P标记字体大小。这些是显示帖子/文章列表的页面模板。博客页面(category.php)一次显示10篇文章,更新页面(index.php)一次显示10篇文章。
对于博客页面(category.php):我可以更改类别的字体大小。php页面模板使用
body.category p {
font-size: 20px !important;
}
对于更新页面(index.php):显示文章摘录的段落字符串
<?php the_excerpt(); ?>
位于由名为“.entry”的类设置样式的div内部。。。如果这有什么区别的话。我尝试了几种变体,但都没有奏效:
.page-template-index .entry p {
font-size: 16px !important;
}
body.index p {
font-size: 16px !important;
}
entry.index p {
font-size: 16px !important;
}
非常感谢您的帮助!