Bullet and numbering

Home Forums Legacy Support 4.0 Bugs & Issues Bullet and numbering

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #350160
    edner
    Spectator
    Hello, Could you please check what happen with bullet and numbering? As you can see bullet and numbering are set in background https://prnt.sc/111wq45. Originally from frontend (vibe editor) but not visible by student taking course https://prnt.sc/111wtw7 I followed this topic and put the code in custom css but not work for me
    #350286
    Diana
    Participant
    Use this custom css
    
    .vibe_editor_rich_text > ul li{
        list-style-type:disc !important;
    }
    
    .vibe_editor_rich_text > ol li{
        list-style-type:decimal !important;
    }
    
    And add in wp-admin > appearance > customize > custom css And if not working there then add in wp-admin > WPLMS > footer > google Analytics Code > within style tag
    
    <style></style>
    #350351
    edner
    Spectator
    Hello Diana, Work but with no space https://prnt.sc/112efk4. Could you please read the follow topic to compare with your code and send me the final code to fix the numbering and bullet problem throughout the site? https://wplms.io/support/forums/topic/numbering-is-not-working-in-the-text-editor/
    #350352
    edner
    Spectator
    I edit the code like this for space https://prnt.sc/112erj5
    .vibe_editor_rich_text > ul li{
        list-style-type:disc !important;
        padding-left:14px !important;
        margin-left:28px !important; 
    }
    
    .vibe_editor_rich_text > ol li{
        list-style-type:decimal !important;
        padding-left:14px !important;
        margin-left:28px !important; 
    }
    But frontend editor for numbering not shown https://prnt.sc/112eqlf
    #350414
    Diana
    Participant
    Yes, I guess the library we are using for editor is changed, forwarding this to developer And I appreciate your efforts that you are able to modify the custom CSS according to your requirement :)
Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Bullet and numbering’ is closed to new replies.