Okay
  Public Ticket #2280493
Guest posts - closed quotation marks
Closed

Comments

  • Rachael Bradley started the conversation

    Hi there,

    Please could you tell me if it is possible to close the quotation marks on the preview scroller of the guest posts on the homepage. I have tried adding them in the copy but they are a different style/size to the one in the theme. 

    Thanks

    Rachael


  •  234
    Elena replied

    Hello Rachel,

    That is by design, but you can add closing quotes with some additional CSS (in the Customizer):

    .block-guestpost .guest-post .guest-quote p:last-of-type:after {
        content: '\201D';
        font-size: 3rem;
        right: -1rem;
        position: relative;
        top: 0.75rem;
        line-height: 0;
    }

    Cheers, P.