Change default pullquote color

Hello. I would like to change the default pullquote color to purple, leaving all other quotes (both default and short code) to slate gray. I tried this:

}

blockquote.x-blockquote {
color: purple;
}

blockquote {
color: darkslategray;
font-size: 17px;
}

pullquote.x-pullquote {
color: purple; !important;
}

No luck. Is it possible to change only the default color of the pullquote?

Many thanks

Hi There,

Please delete your custom CSS and try with this CSS instead:

blockquote {
    color: darkslategray;
    font-size: 17px;
}
blockquote.x-blockquote.x-pullquote {
    color: purple;
}

Hope it helps :slight_smile:

hi Thai, thank you so much! Yes, that worked. You are always so helpful. :sunglasses:

You’re welcome.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.