skip to Main Content

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 what I got now

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

2

Answers


  1. Chosen as BEST ANSWER

    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;
    }
    

  2. 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;
    }
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search