• Resolved Hulbert Lee

    (@hulbert-lee)


    Hi, this is my website: https://frombottomup.com/

    On the right and on the bottom, I would like to change the blue font into black font. This would be the comments under popular posts as well as the previous entries phrase.

    Do you know how I can do this?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Change the .sidebar color style in layout.css

    .sidebar { color: #2361A1; }

    Change it to black

    .sidebar { color: #000; }

    For the sidebar text colour, this will be more specific, so as to target those links specifically..

    span.wpp-comments { color:black }

    For the prev/next links you can use..

    div.prev_next a { color:black }

    Place the new styles(above) at the bottom of the stylesheet (your theme’s style.css).

    NOTE: You can also use color: #000 in place of color: black (as suggested above), but they essentially mean the same thing.. ??

    Thread Starter Hulbert Lee

    (@hulbert-lee)

    Okay, I’ll try this out. Thanks guys.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Is there any possible way to do this?’ is closed to new replies.