• How can you change the color of the text in a post.

    for example, I would like to change ‘quoted” text into a lighter shade of gray. How is this done.

    Thanks

Viewing 5 replies - 1 through 5 (of 5 total)
  • in the CSS file – look for something like:

    .blockquote

    and change the color property.

    Thread Starter dijhili

    (@dijhili)

    Thank you for your prompt reply

    Thread Starter dijhili

    (@dijhili)

    unfortunately it does it to many more areas as well….I just wwant the quotes in the post to change color. The 2 areas in the CSS file that have .blockquote also control other areas.

    Any other idea…like a different text editor that has a color selector ?

    You can separate the blockquote part from the rest.

    add this to the bottom of the styles file:

    .blockquote {
    color: #whatever;
    }

    That should override the previous specifications about what color the .blockquote is.

    Or you could duplicate the area that references .blockquote. In one remove the reference to the .blockquote, in the other remove the reference to everything else.

    Maybe it shouldn’t be
    .blockquote
    just
    blockquote?

    “blockquote” is NOT a class – it’s a html tag…

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘color posts’ is closed to new replies.