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 #1437773
Blockquote in center
Closed

Comments

  • manonvanos started the conversation

    Hi,

    On my about page (https://www.flipflopwanderers.com/about) I am using a block quote. As you can see, I put the text in the center, but now the " icon is still on the left. How can I move everything from the block quote the center, so including the " icon?

    Thanks

    Kind regards,
    Manon van Os

  •  2,697
    PenciDesign replied

    Hi,

    This issue caused by your blockquote is too short.

    Please try add more this code to Customize > Custom CSS to make it center for this page only:

    body.page-id-4148 .wpb_text_column blockquote:before { content: none; }
    body.page-id-4148 .wpb_text_column blockquote p span{ display: inline-block; }
    body.page-id-4148 .wpb_text_column blockquote p span:before {
        color: #00a9d8;
        content: '“';
        font-family: 'Playfair Display SC',serif;
        font-size: 64px;
        font-weight: 900;
        line-height: 1;
        font-style: normal;
        position: absolute;
        top: -4px;
        left: 0;
    }
    

    Best Regards,

    PenciDesign

  • manonvanos replied

    Hi,

    I tried using that code, but the " icon of the quote is still not centered!


  •  2,697
    PenciDesign replied

    Hi,

    Very sorry, I'm missing a line, please replace the codes I sent to this code:

    body.page-id-4148 .wpb_text_column blockquote{ padding-left: 0; }
    body.page-id-4148 .wpb_text_column blockquote:before { content: none; }
    body.page-id-4148 .wpb_text_column blockquote p span{ position: relative; padding-left: 33px; display: inline-block; }
    body.page-id-4148 .wpb_text_column blockquote p span:before { color: #00a9d8; content: '“'; font-family: 'Playfair Display SC',serif; font-size: 64px; font-weight: 900; line-height: 1; font-style: normal; position: absolute; top: -4px; left: 0; }


    Best Regards,

    PenciDesign

  • manonvanos replied

    Thank you so much, that code worked!