• Hi!

    I have two lists in a page. One list is a subset of the other list.

    – dsfa
    -sdfas
    – asfddasf
    -asfdsdf
    -asdfdsasd

    What code can I use to have two distinct bullets for each list? What code do I use to control the indents of the lists?

    I am new to using code in wordpress – so far, I have just cut and pasted code that is supplied.

    You can see the issue at the bottom of this page – under PARTNERS social enterprise activities – https://www.partnerscreatingwealth.com/social-enterprise-services/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter T1000XR

    (@t1000xr)

    Need to sign up for the follow up posts – hope I’ll get some help here.. ??

    https://www.w3schools.com/css/css_list.asp

    example for two levels of unordered list in the content – overwriting the default list style:

    .entry-content ul { list-style-type: disc; }
    .entry-content ul ul { list-style-type: circle; }

    or

    #content ul { list-style-type: disc; }
    #content ul ul { list-style-type: circle; }

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘What is the code for different bullets & controlling the indent?’ is closed to new replies.