Reputation: 675
I'm building a post content page using elementor but then I realize my post element such as quotes and list in wordpress post editor doesn't work on elementor post content widget, I already try search for this problem but a lot of topic is not about post content instead of post blog list.
this is what I want to achieve in my elementor post content widget:
this is what I want to achieve
this is another example:
this is list what I want to get
the list doesn't work on elementor post content
can someone help me to solve this problem? I can't figure what I'm wrong in here
Upvotes: 0
Views: 2104
Reputation: 53
You can add custom CSS to solve this issue
.elementor-widget-container ul {
list-style: disc;
margin-left: 40px;}
You can adjust padding as per your requirement / design
Upvotes: 0
Reputation: 46
Also you can use „selector” to target the wrapper element (inside the Post Content custom CSS if you got the Pro version)
selector li{
list-style-type: disc;
margin-left: 20px;
margin-top: 5px;
}
Upvotes: 3
Reputation: 675
I solve this problem using a workround way, You can style this inside a custom CSS or your customize wordpress since the html itself still read the tag but not appear so you must declare it such as:
.your-class your-tag{
property: value;
}
the easiest example is like this:
.blog-class li{
list-style-type: disc;
margin-left: 15px;
margin-top: 5px;
}
Upvotes: 0