Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #3724061
Blockquote
Open

Comments

  • Akira McDonough-Sieben started the conversation

    How can I change the background color of the blockquote. I changed the setting in customize (see attachment) but it doesn't work.

    Attached files:  Screen Shot 2024-09-13 at 2.48.19 AM.png

  •  2,540
    PenciDesign replied

    Hi,

    Please go to Appearance → Customize → Custom CSS then add the following custom CSS code:

    .pcdark-mode .post-entry.blockquote-style-2 blockquote, .pcdark-mode .wp-block-quote.is-style-large, .pcdark-mode .wp-block-quote.is-large {
      background: #732893;
    }

    Regards,
    PenciDesign.

  • Akira McDonough-Sieben replied

    Great thank you for all your help so far! Here's another question: how do I change the blockquote font color? I tried to add "color: #ffffff;" to the CSS but to no avail. Thanks.

    Attached files:  Screen Shot 2024-09-13 at 11.43.06 PM.png

  •  2,540
    PenciDesign replied

    Hi,

    Please modify the CSS code:

    .pcdark-mode .post-entry.blockquote-style-2 blockquote, 
    .pcdark-mode .wp-block-quote.is-style-large,
    .pcdark-mode .wp-block-quote.is-large {
      background: #732893;
    color: #fff;
    }
    .pcdark-mode .post-entry.blockquote-style-2 blockquote *,
    .pcdark-mode .wp-block-quote.is-style-large *,
    .pcdark-mode .wp-block-quote.is-large *{
      color: inherit;
    }

    Regards,
    PenciDesign.