Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #3404986
list view
Closed

Comments

  •  1
    Harsh started the conversation

    I created a list and added sub-points to the main points. On the wordpress editor, it is showing correctly but when we update that on the webpage the subpoints are also numbered and instead I want them to be unordered list or bullet poitns or dotted points. 

    The whole list is either being numbered list or whole list is being unordered.

    I just want the main points to be in numbered list and the sub-points to be unordered list or in bullet points. How do I do that?

    Please help!

    9514517041.jpg
    2042207248.jpg


    Attached files:  1.JPG
      2.JPG

  •  2,485
    PenciDesign replied

    Hi,

    In this case, please install the Gutenberg plugin at this link and check again: https://wordpress.org/plugins/gutenberg/

    Regards,
    PenciDesign.


  •  1
    Harsh replied

    I installed gutenberg plugin but nothing changed. It is still the same. 

    The sub-points are still the numbered. I want the sub-points to be in bullet points or unordered list just like it is visible in gutenberg editor.

    The problem is the whole list is either being numbered list or whole list is being unordered.

    I just want the main points to be in numbered list and the sub-points to be unordered list or in bullet points. How do I do that?

    Even after installing gutenberg; the sub-points are shown in bullet poitns or unordered list on the gutenberg editor just like in wordpress editor (as in screenshot 1) but when you publish the article and preview it on the website after publishing it; the sub-points are shown in numbered list. (As in screenshot 2)

    Please help!

    Attached files:  Capture.JPG
      2.JPG

  •  2,485
    PenciDesign replied

    Hi,

    For this case, please send me your WordPress admin account in a PRIVATE reply.
    I'll log in and try to help you check this problem.

    Regards,
    PenciDesign.



  •   Harsh replied privately
  •  2,485
    PenciDesign replied

    Hi,

    Please go to Appearance → Customize → Custom CSS then add the following custom CSS code:

    .post-entry ol ul li {
      list-style-type: square;
      font-size: 14px;
    }

    Some elements on the editor screen totally different from the live page view because the Soledad theme has re-reformat the post content.

    Regards,
    PenciDesign.



  •  1
    Harsh replied

    YES IT WORKED.

    THANK YOU!

    how can I change the square bullets into circle?

    Attached files:  Capture.JPG

  •  2,485
    PenciDesign replied

    Hi,

    Please modify the CSS code like the following below:

    .post-entry ol ul li {
      list-style-type: circle;
      font-size: 14px;
    }

    You can check more the list type at this link: https://developer.mozilla.org/en-US/docs/Web/CSS/list-style-type

    Regards,
    PenciDesign.


  •  1
    Harsh replied

    Thank you for the help!