Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author Shaped Pixels

    (@shaped-pixels)

    This is the CSS that is adding uppercase (and the white caption text colour)

    .wp-caption-text {
        color: #fff;
        font-size: 0.813rem;
        line-height: 1.2;
        letter-spacing: 1px;
        text-align: center;
        text-transform: uppercase;
    }

    So you would create custom CSS like this example:

    .wp-caption-text {
        color: #000;
        text-transform: none;
        padding: 4px;
    }

    I also added a padding to it to give your caption some space around it, but you can remove it if you wish.

    Thread Starter cynthiab21

    (@cynthiab21)

    Great! This worked, thank you very much!!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Image caption color and text’ is closed to new replies.