• Resolved robbenbj

    (@robbenbj)


    Hi, I received help before to edit the color of my heading and body text to black font, but I want the bullet points, numbered lists, and everything else to be in black font color too.

    In Edit CSS, it currently has:

    h1, h2, p {
    color: #000;
    }

    So, I’m looking for the additional symbols for bullets and numbered lists.
    My website is takeyoursuccess.com

    Thanks in advance!

Viewing 6 replies - 1 through 6 (of 6 total)
  • Hello,

    The typical tags for lists in HTML are

      or
      and

    1. . Do you have a particular list on your site your looking to change? You may have to get more specific with the CSS selector because just entering the HTML tags for lists in the current CSS would also change the navigation menu text.

    Andrew

    Thread Starter robbenbj

    (@robbenbj)

    Is there an html tag for bullet points and numbers or numbered lists? The original font is gray, but I changed the headings and paragraph text font to black in my child theme. So I was looking for a way to have every single kind of text go to black.

    Hello,

    I forgot what entering html tags does in these posts. Typical list tags are ul, ol, and li for list items.

    Andrew

    To change all of the text to black throughout the entire site, try this:

    body {
    color: #000;
    }

    With this, you shouldn’t need the previous CSS. Let me know if this helps.

    Andrew

    Thread Starter robbenbj

    (@robbenbj)

    Yes, that worked! Thanks. I’ll mark as resolved.

    Great, glad I could help! Take care

    Andrew

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘How to edit the color of bullet points, numbered lists, etc.’ is closed to new replies.