0

我不知道如何在这篇 WP 帖子的“教学点”部分增加我的字体大小http://www.test.foamped.com/2013/07/abdo-pain/

我希望它像其他的一样是 15 像素,但它只有 12 像素。

我不知道如何引用该部分。帮助!

4

6 回答 6

1

为您的元素添加一个 ID <ul>,即:teaching-points,因此您将拥有以下 UL 结构:

<ul id="teaching-points">

比在你的 CSS 文件中声明它的属性:

ul#teaching-points li { font-size: 15px; }

你已经完成了。

于 2013-07-09T09:23:35.857 回答
0

尝试

ul, ol 
{
  padding-left: 19px;
  font-size: 15px;
}

谢谢抗体

于 2013-07-09T09:25:05.887 回答
0

只需像这样添加字体大小的 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 中测试过了

快乐编码:)

于 2013-07-09T09:28:30.020 回答
0

在您的样式表中添加此样式。

.entry-content > ul > li {
    font-size: 15px;
}
于 2013-07-09T09:28:40.800 回答
0

试试这个 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;
 }
于 2013-07-09T09:30:05.630 回答
0

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

于 2013-07-09T09:32:59.140 回答