列表和引号不适用于 elementor post 内容小部件

List and quotes doesn't work with elementor post content widget

我正在使用 elementor 构建一个 post 内容页面,但后来我意识到我的 post 元素,例如 wordpress post 编辑器中的引号和列表,不适用于 elementor post 内容小部件,我已经尝试搜索此问题,但很多主题与 post 内容无关,而不是 post 博客列表。

这就是我想在我的 elementor post 内容小部件中实现的目标:

this is what I want to achieve

this is what I got now

这是另一个例子:

this is list what I want to get

the list doesn't work on elementor post content

有人可以帮我解决这个问题吗?我想不通我哪里错了

我使用变通方法解决了这个问题,您可以在自定义 CSS 或自定义 wordpress 中设置样式,因为 html 本身仍然读取标签但不会出现,因此您必须声明它如:

.your-class your-tag{
   property: value;
}

最简单的例子是这样的:

.blog-class li{
   list-style-type: disc;
   margin-left: 15px;
   margin-top: 5px;
}

您还可以使用“选择器”来定位包装器元素(在 Post 内容自定义 CSS 内,如果您有 Pro 版本)

selector li{
   list-style-type: disc;
   margin-left: 20px;
   margin-top: 5px;
}