• I’ve been making edits to get my theme looking how I want it. Now I’m simply trying to change the bulleted text from white to the grey on this page. It seems all bulleted text is bold and white.

    Link

    How and where would I change this? Thank you.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Line 630 in style.css – change the color to the grey code you want and font-weight (change to “normal”):

    .primary_content_wrap ul li {
        background: url("images/marker.png") no-repeat scroll 0 7px transparent;
        color: #FFFFFF;
        font-size: 12px;
        font-weight: bold;
        line-height: 19px;
        list-style: none outside none;
        margin: 0;
        padding: 0 0 17px 12px;
    }
    Thread Starter Alex

    (@alexsmoot)

    This worked. Thank you very much.

    Now I am trying to change the background color to the newsletter form on the lower section of the index. I am looking under css again. Do you know which line exactly it would be?

    Thank you.

    Not sure which background you want to change, but it is probably either:

    #commentform

    or

    #respond

    or some variation on those (i.e. you need to add additional selectors)

    For CSS questions like these, try using Firebug to identify the relevant CSS code that you need to change.

    Thread Starter Alex

    (@alexsmoot)

    Thanks!

    And thanks for suggestion for Firebug.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Difficulty changing font color’ is closed to new replies.