我不知道如何在这篇 WP 帖子的“教学点”部分增加我的字体大小http://www.test.foamped.com/2013/07/abdo-pain/
我希望它像其他的一样是 15 像素,但它只有 12 像素。
我不知道如何引用该部分。帮助!
我不知道如何在这篇 WP 帖子的“教学点”部分增加我的字体大小http://www.test.foamped.com/2013/07/abdo-pain/
我希望它像其他的一样是 15 像素,但它只有 12 像素。
我不知道如何引用该部分。帮助!
为您的元素添加一个 ID <ul>
,即:teaching-points
,因此您将拥有以下 UL 结构:
<ul id="teaching-points">
比在你的 CSS 文件中声明它的属性:
ul#teaching-points li { font-size: 15px; }
你已经完成了。
尝试
ul, ol
{
padding-left: 19px;
font-size: 15px;
}
谢谢抗体
只需像这样添加字体大小的 CSS 样式
.entry-content ul li {
font-size: 15px; //newly added for li`s font size
line-height: 1.7;
}
供您参考,此 CSS 位于此位置
http://www.test.foamped.com/wp-content/themes/liquidfolio/css/typography.css
注意:这个已经在 Firefox v22.0 中测试过了
快乐编码:)
在您的样式表中添加此样式。
.entry-content > ul > li {
font-size: 15px;
}
试试这个 CSS
.entry-content ul {
font-size: 15px !important;
}
或者
.entry-content ul li {
font-size: 15px;
}
if it affects other "ul" then you need to add a class to the UL under teaching points. Like below:
.entry-content ul.teachingPoint {
font-size: 15px !important;
}
So as not to interfere with other aspects of the site, narrow the css to
div.entry-content > ul > li {
font-size: 15px;
}
You can place this in skin.css along with your other customizations